Java Programming Concepts Challenge

Java Programming Concepts Challenge

University

29 Qs

quiz-placeholder

Similar activities

Intro to Python by AUG Problem solving module

Intro to Python by AUG Problem solving module

University - Professional Development

24 Qs

Go-Quizzy

Go-Quizzy

University

30 Qs

PLC HMI

PLC HMI

11th Grade - Professional Development

25 Qs

JavaScript

JavaScript

University

30 Qs

ThinkBots - Round 1

ThinkBots - Round 1

University

30 Qs

Arduino tinkercad

Arduino tinkercad

University

24 Qs

Modeule-I-C

Modeule-I-C

University

25 Qs

APTITUDE PRACTICE TEST MOCK-1 @ 14-7-2020

APTITUDE PRACTICE TEST MOCK-1 @ 14-7-2020

University

25 Qs

Java Programming Concepts Challenge

Java Programming Concepts Challenge

Assessment

Quiz

Other

University

Hard

Created by

Nabin Chaudhary

Used 1+ times

FREE Resource

29 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? for(int i=0; i<3; i++) { System.out.print(i); } A) 012 B) 123 C) 0 D) 321

0123

23

01

A) 012

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of this nested loop? for(int i=1; i<=2; i++) { for(int j=1; j<=2; j++) { System.out.print(i*j); } } A) 12 B) 1234 C) 111222 D) 1

1111

123

B) 1234

22

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet? int[] arr = {1, 2, 3, 4}; for(int i=0; i

123 4

A) 1234

12 34

1, 2, 3, 4

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed by the following code? for(int i=0; i<5; i++) { if(i == 3) break; System.out.print(i); } A) 012 B) 0123 C) 01234 D) 1234

123

0125

A) 012

34

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code? int sum = 0; for(int i=1; i<=5; i++) { sum += i; } System.out.print(sum); A) 10 B) 15 C) 20 D) 5

C) 20

A) 10

D) 5

B) 15

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? int[][] matrix = {{1, 2}, {3, 4}}; for(int i=0; i

12 34

A) 1234

1 4 2 3

34 12

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code? for(int i=1; i<=3; i++) { for(int j=1; j<=i; j++) { System.out.print(j); } } A) 123 B) 123123 C) 123 D) 1 12 123

B) 123123

12312

1234

1 2 3

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?