Time left:

[All Quizzes] → [Programming With Java] → [Language Fundamentals]


1. ► What would be output of following program?

1
2
3
4
5
6
7
8
9
10
class Solution {
    public static void main(String[]args) {
        int[] array = new int[101];
        for (int i = 0; i < array.length; i++)
             array[i] = i;
        int sum = 0;
        for (int x:array)
             sum += x;
         System.out.println(sum);
}}
A.
B.
C.
D.
E.

2. ► Java is strongly typed language, true or false?

A.
B.

3. ► Which statement is true about integer?

A.
B.
C.
D.
E.

4. ► Which of following is not of integer types?

A.
B.
C.
D.
E.

5. ► Which of following is/are java reserve keywords?

A.
B.
C.
D.
E.

6. ► Which statement is/are true about object?

A.
B.
C.
D.
E.

7. ► What would be output of following program?

1
2
3
4
5
6
public class FunDo {
    public static void main(String[]args) {
        int i = 2;
        int j = (i = 3) * i;
         System.out.println(j);
}}
A.
B.
C.
D.
E.

8. ► What will be hex value of integer value 2013?

A.
B.
C.
D.
E.

9. ► Which statements are true about following code?

1
2
3
4
5
Class A {
    int x;
} class B extends A {
    int y;
}
A.
B.
C.
D.
E.

10. ► Which of following statement is true about comments in java programming language?

/* text *///test
A.
B.
C.
D.
E.

11. ► Selects correct declaration of array variable?

A.
B.
C.
D.
E.

12. ► Select option(s) which represent output of following program.

1
2
3
4
5
6
7
8
9
10
11
public class SolArray {
    public static void main(String[]args) {
        int array1[] = { 1, 2 };

        int array2[] = array1;

        System.out.println(array1.getClass());
        System.out.println(array1.getClass().getSuperclass());

    }
}
A.
B.
C.
D.
E.

13. ► Which of following is not a legal identifier in java?

A.
B.
C.
D.
E.

14. ► Which statement(s) are true about following program?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class MyException extends Exception {
    MyException() {
    } MyException(String s) {
        super(s);
    }
}

public class FunDo {
    static void throwException() throws MyException {
        throw new MyException();
    } public static void main(String[]args) {
        try {
            throwException();
        } catch(RuntimeException r) {
            System.out.println("RuntimeException:" + r);
        } catch(MyException exp) {
            System.out.println("MyException");
        }
    }
}
A.
B.
C.
D.
E.

15. ► What would be output of following program

1
2
3
4
5
6
7
8
9
10
11
public class SolArray {
    public static void main(String[]args) {
        int array1[] = { 1, 2 };

        int array2[] = array1;

        System.out.print((array1 == array2) + " ");
        array1[1]++;
        System.out.println(array2[1]);
    }
}
A.
B.
C.
D.
E.

16. ► Select declaration where array objects are created?

A.
B.
C.
D.
E.

17. ► What would be output of following program?

1
2
3
4
5
6
7
public class FunOp {
    public static void main(String[]args) {
        int x = 3, y = 5;
        int a = x + y - x / y + 2;
        int b = (x + y) - x / (y + 2);
         System.out.println(a + b);
}}
A.
B.
C.
D.
E.

18. ► What will be the output of following program?

1
2
3
4
5
6
7
8
9
10
public class Fun {
    public static void main(String[]args) {
        int i = 0;
         System.out.print(i++ + " " + ++i);
         i = ++i;
         System.out.print(i);



}}
A.
B.
C.
D.
E.

19. ► Select the true statement about given code ?

1
2
3
4
5
6
class Solution {
    public static void main(String[]args) {
        for (int i = 0; i < args.length; i++)
            System.out.print(i == 0 ? args[i] : " " + args[i]);
        System.out.println();
}}
A.
B.
C.
D.
E.

20. ► You are writing a java class HelloWorld which prints "HelloWorld", what will be the file name of your program?

A.
B.
C.
D.
E.


© 2016 VirtuQ™ Education All right reserved. | Terms of Use | Privacy Policy