AP CSA Unit 2 Review

Flashcard
•
Computers
•
10th - 12th Grade
•
Hard
Wayground Content
FREE Resource
Student preview

30 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Consider the following code segment.
System.out.println("W");
System.out.println("X");
System.out.print("Y");
System.out.print("Z");
What is printed as a result of executing the code segment?
Back
W
X
YZ
2.
FLASHCARD QUESTION
Front
Consider the following code segment:
String str = "AP";
str += "CS " + 1 + 2;
System.out.println(str);
What is printed as a result of executing the code segment?
Back
APCS 12
3.
FLASHCARD QUESTION
Front
Consider the following code segment.
String one = "ABC123";
String two = "C";
String three = "3";
System.out.println(one.indexOf(two));
System.out.println(one.indexOf(three));
System.out.println(two.indexOf(one));
What is printed when the code segment is executed?
Back
2
5
-1
4.
FLASHCARD QUESTION
Front
What is printed when the following code segment is executed?
public double calculate(double x)
{
return x + 1.5;
}
Double d1 = new Double(7.5);
System.out.println(calculate(d1));
Back
9.0
5.
FLASHCARD QUESTION
Front
Consider the following code segment, which is intended to display 6.0.
double fact1 = 1 / 2;
double fact2 = 3 * 4;
double product = fact1 * fact2;
System.out.println(product);
Which of the following best describes the error, if any, in the code segment? Options:
There are no errors and the code works as intended.
Either the numerator or the denominator of the fraction 1 / 2 should be cast as double.
The expression fact1 * fact2 should be cast as double.
The expressions 1 / 2 and 3 * 4 should both be cast as double.
The variables fact1 and fact2 should both be declared as int.
Back
Either the numerator or the denominator of the fraction 1 / 2 should be cast as double.
6.
FLASHCARD QUESTION
Front
Java has 8 primitive data types, which of the following best describes the int datatype?
Back
An int can be stored with 32 bits of memory.
7.
FLASHCARD QUESTION
Front
Is the Main() method mandatory for a Java program?
Back
No, the Main() method is not mandatory for a Java program.
Create a free account and access millions of resources
Similar Resources on Wayground
23 questions
AP CSA unit 1 - 4 TEST

Flashcard
•
9th - 12th Grade
20 questions
Web- жобалау

Flashcard
•
11th Grade
29 questions
For loop & While loop in Java

Flashcard
•
10th - 12th Grade
19 questions
CE-LP5 Linguagens de Programação: C, Java, JavaScript e Python

Flashcard
•
KG - University
34 questions
AP CSA Semester 1 Review

Flashcard
•
9th - 12th Grade
25 questions
JavaScript Variables

Flashcard
•
10th - 12th Grade
18 questions
AP CSA Unit 1 Review

Flashcard
•
10th - 12th Grade
25 questions
JavaScript operators

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

Quiz
•
6th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
10 questions
UPDATED FOREST Kindness 9-22

Lesson
•
9th - 12th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
US Constitution Quiz

Quiz
•
11th 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
20 questions
Analog vs Digital

Quiz
•
9th - 12th Grade
10 questions
CTEA Computer Vocab Terms #1

Quiz
•
12th Grade
10 questions
Exploring Cybersecurity Techniques and Threats

Interactive video
•
6th - 10th Grade
10 questions
Understanding the Internet and Data Transmission

Interactive video
•
7th - 12th Grade