Java - Chapter 7 - 8

Java - Chapter 7 - 8

9th - 12th Grade

90 Qs

quiz-placeholder

Similar activities

OCR H446 - 2.3 Algorithms - Algorithms and Programming  02

OCR H446 - 2.3 Algorithms - Algorithms and Programming 02

12th Grade

85 Qs

EverFi Ignition 1-2

EverFi Ignition 1-2

9th - 12th Grade

88 Qs

ASK ULANGKAJI

ASK ULANGKAJI

12th Grade

89 Qs

It essentials chapters 1-14

It essentials chapters 1-14

9th Grade - University

87 Qs

OCR J277 Computer Science Paper 1 Revision Test 1

OCR J277 Computer Science Paper 1 Revision Test 1

11th Grade

86 Qs

Adobe Illustrator Tools

Adobe Illustrator Tools

9th - 10th Grade

87 Qs

Ôn tập GKI Lớp 9

Ôn tập GKI Lớp 9

9th Grade

94 Qs

Computer Science - Paper 2

Computer Science - Paper 2

12th Grade

90 Qs

Java - Chapter 7 - 8

Java - Chapter 7 - 8

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Colleen Chattaway

Used 110+ times

FREE Resource

90 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The following logical expression illustrates what concept?
!( A || B) = !A && !B
DeMorgan's Theorem
Short-circuiting
Mathematical expression
flow control

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the difference between the "==" and "=" operators?
"==" tests for equality, "=" is an assignment
"=" tests for equality, "==" is an assignment
"==" is used on strings, while "=" is used on numbers

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following expressions is the most effective way to compare the contents of two strings in myString1 and myString2 variables?
myString1.equals(myString2)
myString1 == myString2
Both of these work equally well
Neither of these will work

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Using the rules of operator precedence, what is the result of the following equation?
int result = 2 + 4 / 1 * 3 - 1;
13
17
12
Impossible to tell without parentheses

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

If "A" is true, short-circuiting would prevent the "B" expression from being evaluated in this
overall expression: if ( A || B )
True
False

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the effect of using the equals operator == to compare two reference values?
You will find out if the two values refer to exactly the same object in memory
You will find out if the two objects contain essentially the same data
You will get a compile-time syntax error because you must always use the equals() method to compare
reference values
You may get a run-time exception if the two objects are not identical 0

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

When using an if() statement, what must go within the parentheses?
A logical expression
A mathematical expression
A mathematical expression
A string
An else clause

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?

Discover more resources for Computers