End-users use a ____________ installed on their own machine for standalone Java applications.
JRE
SDK
Both 1 & 2
None of the above
Java enabled portable server-side applications are
Web services
Enterprise JavaBeans
Java Servlets
All the above
What will be the output ?
Inside TRY Inside FINALLY
Inside TRY
Inside TRY Inside CATCH Inside FINALLY
Guess the output ?
6
33
123
Exception
Guess the output :
15
Can inner class have static members?
True
False
Which one is faster in java ?
No difference
1
2
Cannot be determined
The value of d is 65
The value of d is a
The value of d is A
Compilation Error
After the following code fragment, what is the value in a? String s; int a; s = "Foolish boy."; a = s.indexOf("fool");
-1
0
4
none
Given the following code fragment: int A[]; int i = 0; A = new int A[4]; while (i < 4) { A[i] = 10; i = i + 1; } What is the value of A[3]?
3
10
Compile Error