July 17, 2021 in C and CPP
What would be value of j after the following is executed?
1.1 What would be value of j after the following is executed?
k=17;
j=6;
if (k < 10)
j=8;
j=j+1;
j=j+2;
A) 8
B) 9
C) 7
D) 10
July 17, 2021 in C and CPP
1.1 What would be value of j after the following is executed?
k=17;
j=6;
if (k < 10)
j=8;
j=j+1;
j=j+2;
A) 8
B) 9
C) 7
D) 10
July 17, 2021 in C and CPP
b) What is Class diagram? Explain giving an example of class diagram with it properties.
July 17, 2021 in C and CPP
a) What do you mean by Physical Deployment model? Design and draw a view of deployment
model.
July 17, 2021 in C and CPP
b) Write an Applet program for displaying a pop-up window which displays “Hello World”.
July 17, 2021 in C and CPP
a) Explain each segment of the design concept MVC. How does MVC component work?
July 17, 2021 in C and CPP
c) How are streams represented in Java? Write the names of four streams for inputting the data and two interfaces for streaming object.
July 17, 2021 in C and CPP
b) What are the differences between Swing and AWT?
July 17, 2021 in C and CPP
a) What are the steps followed in a Java program to handle data from a database.
July 17, 2021 in C and CPP
b) What is user defined Exception? Give an example for demonstrating user defined Exception.
July 17, 2021 in C and CPP
a) i) What is the difference between Error and Exception?
ii) What is checked exception and unchecked exception?
iii) Give the keywords given in Java for handling exception?