Question 8
Which of the following is true regarding long polling?
Long polling opens multiple connections between the client and the server, and the server continuously sends updates to the client in real-time.
Long polling involves the client repeatedly sending requests at fixed intervals to the server to check for updates, regardless of whether new data is available.
Long polling allows the client to make a single request to the server, where the server holds the connection open until new data is available and then sends the response.
Long polling uses WebSockets to maintain a persistent, bidirectional connection between the client and the server.