Submitted by c-admin on Wed, 06/05/2019 - 05:14
Identify the Exceptions that SHOULD be thrown in the situations shown below.
Submitted by c-admin on Wed, 06/05/2019 - 04:45
Identify the exceptions that will be received when the code snippets on the left hand side are executed.
Submitted by c-admin on Wed, 06/05/2019 - 04:35
What will the following program print when run?
public class TestClass{
public static void main(String[] args){
try{
System.exit(0); }
finally{
System.out.println("finally is always executed!");
} } }
Select 1 option
A. It will print "finally is always executed!"
B. It will not compile as there is no catch block.
C. It will not print anything.
D. An exception will be thrown
E. None of the above.
Submitted by c-admin on Wed, 06/05/2019 - 04:27
What will the following code print when compiled and run?
abstract class Calculator{
abstract void calculate();
public static void main(String[] args){
System.out.println("calculating");
Calculator x = null;
x.calculate(); } }
Select 1 option
A. It will not compile.
B. It will not print anything and will throw NullPointerException
C. It will print calculating and then throw NullPointerException.
D. It will print calculating and will throw NoSuchMethodError
E. It will print calculating and will throw MethodNotImplementedException
Submitted by c-admin on Wed, 06/05/2019 - 04:25
Given the class
// Filename: Test.java
public class Test{
public static void main(String args[]){
for(int i = 0; i< args.length; i++){
System.out.print(" "+args[i]); } } }
Now consider the following 3 options for running the program:
a: java Test
b: java Test param1
c: java Test param1 param2
Which of the following statements are true?
Select 2 options
A. The program will throw java.lang.ArrayIndexOutofBoundsException on option a.
B. The program will throw java.lang.NullPointerException on option a.
C. The program will print Test param1 on option b.
D. It will print param1 param2 on option c.
E. It will not print anything on option a.
Pages