Mark each statement as TRUE or FALSE based on best practices…
Mark each statement as TRUE or FALSE based on best practices: – In a multi-threaded server, each client should have its own thread handling its requests.- The main thread should both accept connections AND handle client requests.- If two threads access different objects, synchronization is never needed.- `synchronized` methods prevent multiple threads from executing that method simultaneously on the same object.- A server with 100 connected clients needs exactly 100 threads.- When a thread calls `socket.close()`, other threads can still use that socket.