
AP CSA Unit 3

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
Similar Resources on Wayground
24 questions
AGAD: UNIT 4_C# & UNITY

Quiz
•
9th - 12th Grade
20 questions
Computer Application Practice Quiz Class 10

Quiz
•
10th Grade
20 questions
Variables and Loops Review

Quiz
•
9th - 12th Grade
15 questions
AP Computer Science A Review 1

Quiz
•
10th - 12th Grade
20 questions
Programming

Quiz
•
9th - 11th Grade
15 questions
Variables Java

Quiz
•
10th - 12th Grade
20 questions
Kuis Algoritma

Quiz
•
1st - 10th Grade
20 questions
Ôn tập Python (for, if)

Quiz
•
10th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
Proper Keyboarding Techniques

Interactive video
•
6th - 10th Grade
10 questions
Understanding Computers: Hardware, Software, and Operating Systems

Interactive video
•
7th - 12th Grade
29 questions
AP CSP Unit 2 Review (Code.org)

Quiz
•
10th - 12th Grade