Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/ * 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{
int serverListenPortNum = Integer.parseInt(args[0]);
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();
}
}
}
Type your own response below to each header (In this question: screenshots, file uploads, copied text from Stupidity-making platforms are not permitted):
A) Add the necessary missing Java code parts/statements.
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
------------------------
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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions