Java Quiz

Java Quiz

Professional Development

14 Qs

quiz-placeholder

Similar activities

Java Basics

Java Basics

12th Grade - Professional Development

15 Qs

Technophilia Quiz Competition Tybcs

Technophilia Quiz Competition Tybcs

University - Professional Development

15 Qs

Java Programming Quiz #1

Java Programming Quiz #1

Professional Development

10 Qs

Kotlin Quiz 4

Kotlin Quiz 4

Professional Development

12 Qs

Javaquiz

Javaquiz

Professional Development

15 Qs

JDBC_Objective_Exam_2

JDBC_Objective_Exam_2

Professional Development

15 Qs

Computación básica - Conceptos básicos

Computación básica - Conceptos básicos

Professional Development

15 Qs

Java OOP

Java OOP

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?