Java Quiz

Java Quiz

Professional Development

14 Qs

quiz-placeholder

Similar activities

JAVA QUIZ

JAVA QUIZ

Professional Development

11 Qs

JAVA - Arrays

JAVA - Arrays

University - Professional Development

15 Qs

Quiz 3

Quiz 3

Professional Development

19 Qs

Java SE: Programming I

Java SE: Programming I

Professional Development

10 Qs

for loops & while loops

for loops & while loops

University - Professional Development

10 Qs

Kotlin quiz 3

Kotlin quiz 3

Professional Development

19 Qs

Streams

Streams

Professional Development

10 Qs

java

java

Professional Development

10 Qs

Java Quiz

Java Quiz

Assessment

Quiz

Computers

Professional Development

Easy

Created by

Shabbeer Ahmed

Used 2+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

JVM is platform independent.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output of this code is:

        int a = 10, b = 017, c = 0X3A;

        System.out.println (a + "," + b +"," + c);

   

10, 15, 58

10, 17, 13

10, 17, 0

10, 017, 0X3A

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output of this code is:

        int x = 10;

        int y = 5;

        System.out.println(++x+(++y));

 

15

16

17

18

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output of this code is:

        int x = 7;

        int y = 7;

        int z = x & y;

        System.out.println("z = " + z);

   

14

0

1

7

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output of this code is:

class Sample1{

    public static void main(String [] args){

        System.out.println("Inside main method line1");

    }

    static {

        System.out.println("Inside class line1");

    }

}

Inside main method line1

Inside class line1

Inside main method line1

Inside class line1

Inside class line1

Inside main method line1

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output of this code is:

Sample s = new Sample();

System.out.println(s instanceof Sample);

True

False

Compile Error

Runtime Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In which of the cases, an object is eligible for Garbage Collection?

(a) Demo d;

(b) Demo d = new Demo();

(c) Demo d = new Demo(); d = null;

a , c

b

b,c

a,b,c

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?