No this is not multithreaded. You must create a new thread with a Runnable implementation, and start that thread. For example, after server.accept(), pass the obtained socket to a new class the...