Java

Java

Professional Development

25 Qs

quiz-placeholder

Similar activities

LPC 16 - AIO

LPC 16 - AIO

Professional Development

20 Qs

NM-BIG DATA Course

NM-BIG DATA Course

Professional Development

20 Qs

Technology

Technology

Professional Development

20 Qs

3D Objects - Terms & Transfomations

3D Objects - Terms & Transfomations

6th Grade - Professional Development

20 Qs

PC Tech Quiz 1

PC Tech Quiz 1

Professional Development

20 Qs

General test

General test

Professional Development

20 Qs

Diagnóstico DSWTL

Diagnóstico DSWTL

University - Professional Development

20 Qs

Quiz 3- Estruturas de Decisão

Quiz 3- Estruturas de Decisão

Professional Development

20 Qs

Java

Java

Assessment

Quiz

Computers

Professional Development

Medium

Created by

aaa rrrrrr

Used 5+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the best description of a "relational operator"?

Comparison symbols used in logical expressions

Mathematical symbols used to calculate numeric results

Links that control the relationships between objects

None of these are true

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the best description of a "relational operator"?

Comparison symbols used in logical expressions

Mathematical symbols used to calculate numeric results

Links that control the relationships between objects

None of these are true

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given two numbers A and B, which of the following expressions will be true when "A is less than B"?

A < B

A > B

A == B

A != B

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given two numbers A and B, which of the following expressions will be true when "A is equal to B"?

A != B

A == B

A = B

A.eq(B)

5.

MULTIPLE CHOICE QUESTION

1 min • 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

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will this code display?


int i = 0;

do { System.out.print (i + ", ");

} while (i < 5);

0, 0, 0, 0, 0, 0, 0, 0, (repeat forever)

0, 1, 2, 3, 4,

1, 2, 3, 4, 5,

Compile error

10,

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

True/False Do-while loops can be nested inside of other loops.

True

False

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?