AP CSA Unit 3

AP CSA Unit 3

10th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

UNIT 1.2 MEMORY

UNIT 1.2 MEMORY

10th Grade

19 Qs

Functions in C++

Functions in C++

11th Grade

20 Qs

B Words GCSE Computer Science

B Words GCSE Computer Science

1st - 10th Grade

15 Qs

computer Lab Manners

computer Lab Manners

5th - 10th Grade

19 Qs

Tin 10 - Bái 21 - 22 - 23

Tin 10 - Bái 21 - 22 - 23

10th Grade

16 Qs

Visual Basic Assessment

Visual Basic Assessment

11th - 12th Grade

21 Qs

PRUEBA CORTA I - SISTEMA E INSTALACIÓN DE SOFTWARE I - U4

PRUEBA CORTA I - SISTEMA E INSTALACIÓN DE SOFTWARE I - U4

9th - 12th Grade

15 Qs

Trắc nghiệm Tin 10-Chủ đề A

Trắc nghiệm Tin 10-Chủ đề A

10th - 11th Grade

20 Qs

AP CSA Unit 3

AP CSA Unit 3

Assessment

Quiz

Computers

10th - 12th Grade

Practice Problem

Medium

Used 34+ times

FREE Resource

AI

Enhance your content in a minute

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

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

Access all questions and much more by creating a free account

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

Already have an account?