Question: / * In the following code fragments: A ) Is the following code safe? Shortly explain your answer. B ) Add the necessary missing Java

/*
In the following code fragments:
A) Is the following code safe? Shortly explain your answer.
B) Add the necessary missing Java code parts/statements (write them in chronological order).
C) Rewrite the resulting code in part (A) using try-catch with resource.
*/
import -----------;
import -----------;
class ConnectionServer{
public static void main(String[] args){
int serverListenPortNum = Integer.parseInt(args[0]);
try{
ServerSocket connectionSocket = new ServerSocket(-------------------------);
Socket dataSocket =-------------------------;
BufferedReader br = new BufferedReader(new
InputStreamReader(---------------------------------------));
int num1= Integer.parseInt(br.readLine());
int num2= Integer.parseInt(br.readLine());
System.out.println(num1+"+"+num2+"="+(num1+num2));
dataSocket. -----------();
connectionSocket. -----------();
}
catch(----------------------){
}
catch(----------------------){
}
catch(Exception e)
{
e.printStackTrace();
}
}
}

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!