Given the code below, select the option that best explains the purpose of the X variable:
Socket socket = new Socket(protocol + "://" + host,80);
BufferedReader X = new BufferedReader(new InputStreamReader(socket.getInputStream()));
Receive input from the socket
Fulfill HTTP requests
Monitor the socket and shut down when it disconnects
Transmit output across the socket
Previous