Java - Chapter 7 - 8

Java - Chapter 7 - 8

9th - 12th Grade

90 Qs

quiz-placeholder

Similar activities

PBO DASAR

PBO DASAR

10th Grade

92 Qs

AI

AI

9th Grade

90 Qs

Computer Science - Paper 2

Computer Science - Paper 2

12th Grade

90 Qs

GCSE Computer Science - Paper 2 (Algorithms & Programming)

GCSE Computer Science - Paper 2 (Algorithms & Programming)

12th Grade

89 Qs

ASK ULANGKAJI

ASK ULANGKAJI

12th Grade

89 Qs

Computer final

Computer final

10th Grade

93 Qs

AP CSP 300PT Quizizz 12-6 - FRI SUB

AP CSP 300PT Quizizz 12-6 - FRI SUB

9th - 12th Grade

86 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
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?