Pregunta 1
Pregunta
Which of the following is illegal:
Respuesta
-
int i = 32;
-
float f = 45.0;
-
double d = 45.0;
Pregunta 2
Pregunta
public class Test {
static int age;
public static void main (String args []) {
age = age + 1;
System.out.println("The age is " + age);
}
}
Respuesta
-
Compiles and runs with no output
-
Compiles and runs printing out The age is 1
-
Compiles but generates a runtime error
-
Does not compile
-
Compiles but generates a compile time error
Pregunta 3
Pregunta
public static void main(String[] args) {
int age;
System.out.println(age+1);
}
Respuesta
-
Compiles and runs with no output
-
Compiles and runs printing out The age is 1
-
Compiles but generates a runtime error
-
Does not compile
-
Compiles but generates a compile time error
Pregunta 4
Pregunta
Which of the following return true?
Pregunta 5
Pregunta
Which of the following is correct:
Respuesta
-
String temp [] = new String {"j", "a", "z"};
-
String temp [] = {"a", "b", "c"};
-
String temp = {"a", "b", "c"};
-
String temp [] = new String [] {"j" "a" "z"};
-
String temp [] = new String[3] {"j" "a" "z"};
Pregunta 6
Pregunta
Compiler adds default constructor to class which hasn't got constructor with empty argument list. Is it true?
Pregunta 7
Pregunta
Which of the following are acceptable to the Java 7 compiler?
Respuesta
-
if (2 == 3) System.out.println("Ok");
-
if (false) System.out.println("Ok");
-
if (true) System.out.println("Ok");
-
boolean b = false; if (b = true) System.out.println("Ok");
Pregunta 8
Pregunta
Assuming a method contains code which may raise an Exception (but not a Runtime Exception), what is the correct way for a method to indicate that it expects the caller to handle that exception:
Pregunta 9
Pregunta
Czy w jednym konstruktorze można wywołać inny konstruktor z tej samej klasy i konstruktor z klasy bazowej jednocześnie?
Pregunta 10
Pregunta
Which variables can an inner class access from the class which encapsulates it?
Pregunta 11
Pregunta
In the following code, which is the earliest statement, where the object originally held in e, may be garbage collected:
1. public class Test {
2. public static void main (String args []) {
3. Employee e = new Employee("Bob", 48);
4. e.calculatePay();
5. System.out.println(e.printDetails());
6. e = null;
7. e = new Employee("Denise", 36);
8. e.calculatePay();
9. System.out.println(e.printDetails());
10. }
11. }
Respuesta
-
Line 7
-
Line 8
-
Line 10
-
Line 11
-
Never
-
At the end of function
Pregunta 12
Pregunta
Given the following code what is the effect of a being 5:
public class Test {
public void add(int a) {
loop: for (int i = 1; i < 3; i++){
for (int j = 1; j < 3; j++) {
if (a == 5) {
break loop;
}
System.out.println(i * j);
}
}
}
}
Respuesta
-
Generate a runtime error
-
Throw an ArrayIndexOutOfBoundsException
-
Print the values: 1, 2, 2, 4
-
Produces no output
Pregunta 13
Pregunta
What is the result of executing the following fragment of code:
boolean flag = false;
if (flag = true) {
System.out.println("true");
} else {
System.out.println("false");
}
}
Pregunta 14
Pregunta
What will be the output of the program?
public class Foo
{
public static void main(String[] args)
{
try
{
return;
}
finally
{
System.out.println( "Finally" );
}
}
}
Pregunta 15
Pregunta
Which of the following are correct. Select the one correct answer.
Respuesta
-
An import statement, if defined, must always be the first non-comment statement of the file.
-
private members are accessible to all classes in the same package.
-
An abstract class can be declared as final.
-
Local variables cannot be declared as static.
Pregunta 16
Pregunta
Select the one correct answer. Which method defined in Integer class can be used to convert an Integer object to primitive int type.
Respuesta
-
valueOf
-
intValue
-
getInt
-
getInteger
Pregunta 17
Pregunta
Which code determines the int value data closer to, but not greater than, a double value b?
Respuesta
-
Int data = (int) Math.floor(b);
-
Int data = (int) Math.abs(b);
-
Int data = (int) Math.ceil(b);
-
Int data = (int) Math.min(b);
Pregunta 18
Pregunta
Which statement is true for the Class java.util.HashSet?
Respuesta
-
The elements in the collection are unique.
-
The collection is guaranteed to be immutable
-
The elements in the collection are ordered.
-
The elements in the collection are synchronized.
Pregunta 19
Pregunta
What will be the output of the program?
public class X
{
public static void main(String [] args)
{
try
{
badMethod();
System.out.print("A");
}
catch (Exception ex)
{
System.out.print("B");
}
finally
{
System.out.print("C");
}
System.out.print("D");
}
public static void badMethod()
{
throw new Error(); /* Line 22 */
}
}
Pregunta 20
Pregunta
What is valid returnType for getData?
public Class returnData
{
<returnType> getData(byte a, double z)
{
return (short)a/z * 10;
}
}
Pregunta 21
Pregunta
What is the result?
int index = 1;
Boolean [] test = new Boolean[3];
Boolean data = test[index];
Respuesta
-
data has the value of true
-
The code will not compile.
-
data has the value of false
-
data has the value of null
Pregunta 22
Pregunta
What will be the output of the program?
class A
{
final public int GetResult(int a, int b) { return 0; }
}
class B extends A
{
public int GetResult(int a, int b) {return 1; }
}
public class Test
{
public static void main(String args[])
{
B b = new B();
System.out.println("x = " + b.GetResult(0, 1));
}
}
Pregunta 23
Pregunta
class SC2
{
public static void main(String [] args)
{
SC2 s = new SC2();
s.start();
}
void start()
{
int a = 3;
int b = 4;
System.out.print(" " + 7 + 2 + " ");
System.out.print(a + b);
System.out.print(" " + a + b + " ");
System.out.print(foo() + a + b + " ");
System.out.println(a + b + foo());
}
String foo()
{
return "foo";
}
}
Respuesta
-
9 7 7 foo 7 7foo
-
72 34 34 foo34 34foo
-
9 7 7 foo34 34foo
-
72 7 34 foo34 7foo
Pregunta 24
Pregunta
Float f = new Float("12");
switch (f)
{
case 12: System.out.println("Twelve");
case 0: System.out.println("Zero");
default: System.out.println("Default");
}
Respuesta
-
Zero
-
Twelve
-
Default
-
Compilation fails
Pregunta 25
Pregunta
Which statement is true for the class java.util.ArrayList?
Respuesta
-
The elements in the collection are ordered.
-
The collection is guaranteed to be immutable.
-
The elements in the collection are guaranteed to be unique.
-
The elements in the collection are accessed using a unique key.
Pregunta 26
Pregunta
public class Test
{
public void foo()
{
assert false; /* Line 5 */
assert false; /* Line 6 */
}
public void bar()
{
while(true)
{
assert false; /* Line 12 */
}
assert false; /* Line 14 */
}
}
Respuesta
-
Line 5
-
Line 6
-
Line 12
-
Line 14
Pregunta 27
Pregunta
What will be the output of the program?
public class Test138
{
public static void stringReplace (String text)
{
text = text.replace ('j' , 'c'); /* Line 5 */
}
public static void bufferReplace (StringBuffer text)
{
text = text.append ("c"); /* Line 9 */
}
public static void main (String args[])
{
String textString = new String ("java");
StringBuffer textBuffer = new StringBuffer ("java"); /* Line 14 */
stringReplace(textString);
bufferReplace(textBuffer);
System.out.println (textString + textBuffer);
}
}
Respuesta
-
java
-
javac
-
cavajavac
-
javajavac
-
Compile error
Pregunta 28
Pregunta
Which declaration of the main method below would allow a class to be started as a standalone program.
Respuesta
-
public static int main(char args[])
-
public static void main(String args[])
-
public static void main(String args)
-
public static void main(String... args)
Pregunta 29
Pregunta
Which of these are legal array declarations or definitions?
Respuesta
-
int[] []x[];
-
int x[5];
-
int *x;
-
None of above
Pregunta 30
Pregunta
Which of the following are keywords in Java.
Respuesta
-
implement
-
friend
-
NULL
-
synchronized
Pregunta 31
Pregunta
Which of these are legal identifiers.
Respuesta
-
number_1
-
number_a
-
$1234
-
-volatile
Pregunta 32
Pregunta
The class Hashtable is used to implement which collection interface.
Pregunta 33
Pregunta
TreeMap class is used to implement which collection interface. Select the one correct answer.
Respuesta
-
Set
-
SortedSet
-
Tree
-
SortedMap
Pregunta 34
Pregunta
What gets displayed on the screen when the following program is compiled and run.
protected class example {
public static void main(String args[]) {
String test = "abc";
test = test + test;
System.out.println(test);
}
}
Respuesta
-
The class does not compile because the top level class cannot be protected.
-
The program prints "abc"
-
The program prints "abcabc"
-
The program does not compile because statement "test = test + test" is illegal.
Pregunta 35
Pregunta
class xyz {
static int i;
public static void main(String args[]) {
while (i < 0) {
i--;
}
System.out.println(i);
}
}
Respuesta
-
The program does not compile as i is not initialized.
-
The program prints -1.
-
The program compiles but does not run.
-
The program compiles and runs but does not print anything.
-
The program prints 0.
Pregunta 36
Pregunta
What gets printed on the standard output when the class below is compiled and executed.
class A {
boolean b = true, f;
private void testujemy() {
int i = 0;
boolean t = true;
b = (t || ((i++) == 0));
b = (f || ((i+=2) > 0));
System.out.println(i);
}
}
Respuesta
-
0
-
1
-
2
-
3
-
4
-
Compilation error
-
Runtime exception.
Pregunta 37
Pregunta
A class can have many methods with the same name as long as the number of parameters or type of parameters is different. This OOP concept is known as
Respuesta
-
Method Invocating
-
Method Overriding
-
Method Labeling
-
Method Overloading
Pregunta 38
Pregunta
Using up to four characters what is the Java representation of the number 23 in hex?
Pregunta 39
Pregunta
What are the two parts of a value of type double?
Pregunta 40
Pregunta
Using up to four characters, write the Java representation of integer literal 3 in hexadecimal.
Pregunta 41
Pregunta
What gets printed when the following program is compiled and run. Select the one correct answer.
public class test {
public static void main(String args[]) {
byte x = 3;
x = (byte)~x;
System.out.println(x);
}
}
Pregunta 42
Pregunta
Java endianness is:
Respuesta
-
Java is big endian
-
Java is little endian
Pregunta 43
Pregunta
What gets displayed on the screen when the following program is compiled and run. Select the one correct answer.
public class test {
public static void main(String args[]) {
int x,y;
x = 3 & 5;
y = 3 | 5;
System.out.println(x + " " + y);
}
}
Pregunta 44
Pregunta
What will be the output of code:
switch(3) {
case 3: continue;
case 4: System.out.println("Case 3 and 4");
break;
case 5: System.out.println("Case 5");
}
Respuesta
-
Case 3 and 4
-
Case 3 and 4
Case 5
-
Runtime exception
-
Compilation error
Pregunta 45
Pregunta
In switch statement the default case must be at the end of switch body.
Pregunta 46
Pregunta
Given two non-negative integers a and b and a String str, what is the number of characters in the expression str.substring(a,b) . Select the one correct answer.
Respuesta
-
a - b
-
b - a
-
b - a - 1
-
a - b - 1
-
b - a + 1
Pregunta 47
Pregunta
All the wrapper classes (Integer, Boolean, Float, Short, Long, Double and Character) in java are
Respuesta
-
final
-
private
-
immutable
-
Serializable
Pregunta 48
Pregunta
Consider the following code snippet. What will be assigned to the variable fourthChar, if the code is executed?
String str = new String("Java");
char fourthChar = str.charAt(4);