I had following question on the exam:
"Let us assume that you want to use UDP for a client. Do you need to create a new socket for managing parallel connections in UDP? Why or why not? What happens if multiple clients connect to that socket?"
The question also referenced a Java class TCPServer.java, which creates ServerSocket and later on in a while(true) loop, it accepts connections and creates Sockets for incoming connection requests from users.
To my mind, TCP Server is only used for TCP connections, so it is not possible to use the same server side code for UDP client.