Can you please help me figure out these errors, it is a review of final. Can you
ID: 3548270 • Letter: C
Question
Can you please help me figure out these errors, it is a review of final.
Can you please explain any error that there is here even if you think it is simple.
Thanx.
1. Find the errors in the following network client program segment.
// declare the port and host
private Integernet port;
private Host host
/* set the port to 7777 and the host to the instructors computer in btc 204 at hvcc */
port = new port(77777);
host = Internet.get("btc216@hvcc.edu");
// create a socket object connected to your host and port
Socket client = host;
Socket client = port;
// create a PrintWriter object connected to your socket object
PrintWriter pw = new PrintWriter(Socket.getOutputStream(), flush());
// write a string message over the socket stream
write("Hello World!");
Explanation / Answer
In line 2 i.e private Host host ";" is missing at the end.