Question: / * In the following code fragments: A ) Add the necessary missing Java code parts / statements ( write them in chronological order )

/*
In the following code fragments:
A) Add the necessary missing Java code parts/statements (write them in chronological order).
B) Rewrite the resulting code in part (A) using try-catch with resource.
C) Is there a possibility to add 2 more specific Exception handling clauses? If yes, list them only!
*/
import -----------;
import -----------;
class ConnectionServer{
public static void main(String[] args){
try{
String message = args[0];
int serverPortNumber = Integer.parseInt(args[1]);
ServerSocket ---------------------------------;
Socket ---------------------------------;
PrintStream socketOut ---------------------------------;
socketOut.println(---------------------------------);
System.out.println(sent response to client...);
socketOut.flush();
-----------. close ();//Required but with no weight
-----------. close ();//Required but with no weight
}
catch(----------------------){
}
catch(----------------------){
}
catch(Exception e){
e.printStackTrace();
}
}
}
A) Add the necessary missing Java code parts/statements (write them in chronological order).
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
B) Rewrite the resulting code in part (A) using try-catch with resource.
C) Is there a possibility to add 2 more specific Exception handling clauses? If yes, list them only!

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!