ValueOne Java Questions: Bob Technologies Sample Paper 1 2003 Oct 14 Allahbad
Download PDF of This Page (Size: 114K) ↧
Examrace Placement Series prepares you for the toughest placement exams to top companies.
-
Which of the following lines will compile without warning or error.
-
float f = 1.3
-
char c = “a”
-
byte b = 257
-
boolean b = null
-
int i = 10
-
-
What will happen if you try to compile and run the following code? public class MyClass { public static void main (String arguments[]) { amethod (arguments); } public void amethod (String[] arguments) { System. Out. Println (arguments); System. Out. Println (arguments[1]); } } error Can't make static reference to void amethod. Error method main not correct
-
error array must include parameter
-
amethod must be declared with String
-
Which of the following will compile without error
-
import java. Awt. *; package Mypackage; class Myclass { }
-
package MyPackage; import java. Awt. *; class MyClass { }
-
/* This is a comment */
package MyPackage.
import java. Awt. *.
class MyClass { }
-
-
A byte can be of what size
-
-128 to 127
-
(-2 power 8) -1 to 2 power 8
-
-255 to 256
-
depends on the particular implementation of the Java Virtual machine
-
-
What will be printed out if this code is run with the following command line? java myprog good morning public class myprog { public static void main (String argv[]) { System. Out. Println (argv[2]); } }
-
myprog
-
good
-
morning
-
Exception raised:
“java. Lang. ArrayIndexOutOfBoundsException: 2”
-
-
Which of the following are keywords or reserved words in Java?
-
if
-
then
-
goto
-
while
-
case
-
-
Which of the following are legal identifiers
-
2variable
-
variable2
-
_whatavariable
-
_3_
-
$anothervar
-
#myvar
-
-
What will happen when you compile and run the following code? public class MyClass { static int i; public static void main (String argv[]) { System. Out. Println (i); } }
-
Error Variable i may not have been initialized
-
null
-
1
-
0
-
-
What will happen if you try to compile and run the following code? Pblic class Q { public static void main (String argv[]) { int anar[] = new int[] { 1, 2, 3}; System. Out. Println (anar[1]); } }
-
1
-
Error anar is referenced before it is initialized
-
2
-
Error: Size of array must be defined
-
-
What will happen if you try to compile and run the following code? public class Q { public static void main (String argv[]) { int anar[] = new int[5]; System. Out. Println (anar[0]); } }
-
Error: Anar is referenced before it is initialized
-
null
-
0
-
5
-
-
What will be the result of attempting to compile and run the following code? abstract class MineBase { abstract void amethod (); static int i; } public class Mine extends MineBase { public static void main (String argv[]) { int[] ar = new int[5]; for (i = 0; i < ar. Length; i + + ) System. Out. Println (ar[i]); } }
-
a sequence of 5 0's will be printed
-
Error: Ar is used before it is initialized
-
Error Mine must be declared abstract
-
IndexOutOfBoundes Error
-
-
What will be printed out if you attempt to compile and run the following code? int i = 1; switch (i) { case 0: System. Out. Println ( “zero” ); break; case 1: System. Out. Println ( “one” ); case 2: System. Out. Println ( “two” ); default: System. Out. Println ( “default” ); }
-
one
-
one, default
-
one, two, default
-
default
-
-
What will be printed out if you attempt to compile and run the following code?
int i = 9.
switch (i) { default: System. Out. Println ( “default” ); case 0: System. Out. Println ( “zero” ); }