OOPS Quiz 2

OOPS Quiz 2

University

29 Qs

quiz-placeholder

Similar activities

Jrb1 Quiz 5

Jrb1 Quiz 5

University

30 Qs

ict5_mt_w5-6_q2

ict5_mt_w5-6_q2

12th Grade - University

25 Qs

Tech Linguist E-Quiz JAVA

Tech Linguist E-Quiz JAVA

University

25 Qs

JAVA FUNDAMENTALS

JAVA FUNDAMENTALS

University

30 Qs

OOPS Live Quiz

OOPS Live Quiz

University

28 Qs

Post Test 2A (bag. 2) (Java)

Post Test 2A (bag. 2) (Java)

University

25 Qs

Computer Programming 2

Computer Programming 2

University

30 Qs

Java Test

Java Test

3rd Grade - University

30 Qs

OOPS Quiz 2

OOPS Quiz 2

Assessment

Quiz

Computers

University

Hard

Created by

Gnana Pragadeesh

Used 1+ times

FREE Resource

29 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following program?

class Test {

public

            static void main(String[] args)

            {

                        int x = 10;

                        if (++x < 10 && (x / 0 > 10)) {

                                    System.out.println("Bishal");

                        } else {

                                    System.out.println("HI");

                        }

            }

}

1.Compile time error

2. RuntimeException:ArithmeticException: / by zero

3. Bishal

4. HI

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these are selection statements test only for equality in Java?

a)If

b)switch

c)if & switch

d)None of the mentioned

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these are selection statements in Java?

a)if()

b)for()

c)continue

d)break

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these jump statements can skip processing remaining code in its body for a particular iteration?

a)break

b)return

c)exit

d)continue

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

__________ statement provides an easy way to dispatch execution to different parts of your code based on the value of an expression.

if-else

switch

if

while

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will the following code print "Welcome to Java"?

int count = 0;

while(count<10){

System.out.println("Welcome to Java");

count++;

}

8

9

10

0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

int x= 0;

while(x<4){

x=x+1;

}

System.out.println("x is"+x);

0

1

3

4

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?