Java quiz 3 summer internship

Java quiz 3 summer internship

University

10 Qs

quiz-placeholder

Similar activities

Golang Basics 2

Golang Basics 2

University

15 Qs

Techii Quizzz

Techii Quizzz

University

10 Qs

Java Lesson 7

Java Lesson 7

5th Grade - University

10 Qs

IEEE Coding Competition

IEEE Coding Competition

University

13 Qs

C PROGRAMMING

C PROGRAMMING

University

15 Qs

Tech quiz Round 1

Tech quiz Round 1

University

15 Qs

CSCI 1301 - Chapter 5 A

CSCI 1301 - Chapter 5 A

University

8 Qs

Java Lesson 4

Java Lesson 4

5th Grade - University

10 Qs

Java quiz 3 summer internship

Java quiz 3 summer internship

Assessment

Quiz

Other

University

Hard

Created by

Gnaneshwar Reddy

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

```

int x = 5;

int y = 8;

if (x > y) {

x++;

} else if (x < y) {

y++;

}

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

```

A. 58

B. 59

C. 68

D. 69

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will the following loop execute?

```

int i = 0;

while (i < 3) {

i++;

}

```

A. 2

B. 3

C. 4

D. Infinite

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

```

for (int i = 0; i < 5; i++) {

System.out.print(i + " ");

}

```

A. 0 1 2 3 4

B. 0 1 2 3 4 5

C. 1 2 3 4 5

D. None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the value of 'a' after the following code is executed?

```int a = 10;

for (int i = 0; i < 3; i++) {

a -= i;

}

```

A. 10

B. 7

C. 4

D. 6

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

```

int i = 1;

while (i <= 5) {

System.out.print(i + " ");

i += 2;

}

```

A. 1 3 5

B. 1 2 3 4 5

C. 1 3 5 7

D. 1 3 5 7 9

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

```

int x = 10;

if (x % 2 == 0) {

System.out.println("Even");

} else {

System.out.println("Odd");

}

```

A. Even

B. Odd

C. Compilation Error

D. None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will "Hello" be printed by the following code?

```

for (int i = 0; i < 4; i++) {

System.out.println("Hello");

}

```

A. 3

B. 4

C. 5

D. Infinite

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?