AP CSA Unit 3

AP CSA Unit 3

10th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Java, part I

Java, part I

11th Grade - University

20 Qs

Exam 4 Review

Exam 4 Review

9th - 12th Grade

20 Qs

Loops

Loops

5th - 12th Grade

16 Qs

Java Basics (Data Types and Variables)

Java Basics (Data Types and Variables)

6th - 10th Grade

16 Qs

Data Types

Data Types

9th - 12th Grade

20 Qs

C Programming Quiz

C Programming Quiz

12th Grade - University

20 Qs

Java Basic Data Structures

Java Basic Data Structures

6th - 10th Grade

15 Qs

CSA Unit 3 Review

CSA Unit 3 Review

10th - 12th Grade

16 Qs

AP CSA Unit 3

AP CSA Unit 3

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Used 34+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does short circuit evaluation mean in the following code?

i) if (a < b && c != d)

if a < b is false it evaluates c != d

if a < b is false it doesn't evaluate c != d

if c != d is false it evaluates a < b

f c != d is false it doesn't evaluate a < b

if a < b is true it doesn't evaluate c != d

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which if statement below tests if the variable letter holds the char value #?

if (letter == #)

if (letter == "#")

if (letter == '#')

if (letter >= '#')

if (letter = '#')

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code:

int a [] = {2, 6, 8, 10, 12, 14, 16, 18};

int sum = 0;

for (int i = 0; i < a.length; i++) {

if (a[i]%3 == 0)

sum += a[i];

}

System.out.println(sum);

What is output?

20

26

28

36

38

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output by the following code?

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

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

0 1 2 3 4 5

0 1 2 3 4

1 2 3 4

1 2 3 4 5

1 2 3 4 5 6

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following would print the numbers, 32 54 76 98?

I. for (int t = 32; t <= 100; t += 22)

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

II. int t = 10;

while (t < 90) {

t += 22;

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

}

III. int t = 32;

while (t < 100) {

t += 22;

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

I only

II only

III only

I and II only

I, II, and III

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Assume that x and y are boolean variables and have been properly initialized.

(x && y) && !(x || y)

Which of the following best describes the result of evaluating the expression above?

Always true

Always False

true only when x is true and y is true

true only when x and y have the same value

true only when x and y have different values

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following boolean statement:

!( x > y && w == z )

Which of the following will produce the same result?

x <= y && w == z

x >= y || w != z

x <= y || w != z

x <= y && w != z

x < y && w != z

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?