(Total 20 questions) (Time spent 0:0)
1. Given the following code in a stateful session bean business method;
try {
Socket skt = new Socket(x,y);
} catch (Exception ex) {
ex.printStackTrace();
}
assuming that x and y are the port and IP addresses respectively of a running service, which is running on the same server, which of the following is correct?
View Test Answer