AP Computer Science A
AP Computer Science A
Here are the best resources to pass AP Computer Science A. Find AP Computer Science A study guides, notes, assignments, and much more.
Page 4 out of 40 results
Sort by:
-
Exam (elaborations)
AP Computer Science A Unit 2 Progress Check: MCQ Part A
-
---9January 20242023/2024A+
- AP Computer Science A Unit 2 Progress 
Check: MCQ Part A 
A student has created a Book class. The class contains variables to represent the following. 
An int variable called pages to represent the number of pages 
A boolean variable called isHardcover to indicate whether or not the book is hardcover 
The object story will be declared as type Book. 
Which of the following descriptions is accurate? - -C. An attribute of the story object is isHardcover. 
A school administrator has created a Stude...
-
$8.99 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A Unit 4 Study Guide/
-
---10January 20242023/2024A+
- AP Computer Science A Unit 4 Study 
Guide/ 
int a = 0; 
int b = 0; 
while (a < 5 && b < 3) 
{ 
Sln(a + " " + b);a++;b++; 
} 
What is output? - -0 0 
1 1 
2 2 
int n = 14; 
while (!(n % 3 == 0 && n % 5 == 0)) 
{ 
Sln(n); 
n += 2; 
} 
What is the last number printed by this code? - -28 
What is one potential problem with the following loop? 
S("Enter integers. Enter -1 to exit."); 
Sln(" Count of integers entered will be returned."); 
int n = 0; 
int c = 0 
;while (n != -1) 
{ 
n ...
-
$8.99 More Info
Terryl
-
Exam (elaborations)
Ap Computer Science A, Test 4A. Questions & Answers.
-
---8January 20242023/2024A+
- Ap Computer Science A, Test 4A. 
Questions & Answers. 
The behavior of an object is defined by the object's 
A) constructor 
B) instance data 
C) visibility modifiers 
D) methods 
E) all of the above - -D) 
The relationship between a class and an object is best described as 
A) classes are programs while objects are variables 
B) classes are instances of objects 
C) objects are the instance data of classes 
D) objects are instances of classes 
E) objects and classes are the same thing - -D) 
T...
-
$9.99 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A/ Exam Review Questions and answers, rated A+
-
---7January 20242023/2024A+
- AP Computer Science A/ Exam Review 
Questions and answers, rated A+ 
accessor method - -a method that accesses an object but does not change it 
actual parameter - the expression supplied for a formal parameter of a method by the caller 
address - -a location in memory at which a binary number (usually a byte, or value of 8 bits) is 
stored. The location in memory can itself be identified by a binary number - this number, the absolute or 
explicit address, gives the absolute location of the a...
-
$8.99 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A - Review 1, Exam Questions and answers. Graded A+
-
---5January 20242023/2024A+
- AP Computer Science A - Review 1, 
Exam Questions and answers. Graded 
A+ 
Inheritance defines a relationship between _______ that share characteristics - -objects 
Inheritance is when a new class (_______) is created from an existing class (_______) - -subclass, 
superclass 
The subclass _______ characteristics of its superclass - -inherits 
When methods of superclasses are overwritten by subclasses - -Method overriding 
If part of the original method implementation from the superclass is re...
-
$8.99 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A - Review 1, Exam Questions and answers. Graded A+
-
---5January 20242023/2024A+
- AP Computer Science A - Review 1, 
Exam Questions and answers. Graded 
A+ 
Inheritance defines a relationship between _______ that share characteristics - -objects 
Inheritance is when a new class (_______) is created from an existing class (_______) - -subclass, 
superclass 
The subclass _______ characteristics of its superclass - -inherits 
When methods of superclasses are overwritten by subclasses - -Method overriding 
If part of the original method implementation from the superclass is re...
-
$8.99 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A - Review 1. Exam Questions and answers, 100%/ latest 2024/25 exam prediction paper
-
---5February 20242023/2024A+
- AP Computer Science A - Review 1. 
Exam Questions and answers, 100% 
Accurate, VERIFIED. 
Inheritance defines a relationship between _______ that share characteristics - -objects 
Inheritance is when a new class (_______) is created from an existing class (_______) - -subclass, 
superclass 
The subclass _______ characteristics of its superclass - -inherits 
When methods of superclasses are overwritten by subclasses - -Method overriding 
If part of the original method implementation from the s...
-
$9.99 More Info
Terryl
-
Exam (elaborations)
AP COMPUTER SCIENCE A UNIT 1 EXAM Questions and answers. VERIFIED.
-
---4January 20242023/2024A+
- AP COMPUTER SCIENCE A UNIT 1 
EXAM Questions and answers. 
VERIFIED. 
Assuming that scan is a properly initialized Scanner variable, which of the following correctly inputs a 
String? - -String val = Line(); 
Consider the following code: 
int x = -3; 
x--; 
Sln(x); 
What is output? - --4 
Which of the following data types would be most appropriate to use when recording whether a switch is 
in the "on" or "off" position? - -boolean 
Which of the following is NOT a primitive data type? - -...
-
$8.49 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A: Unit 2 Exam Questions & Answers/
-
---5January 20242023/2024A+
- AP Computer Science A: Unit 2 Exam 
Questions & Answers/ 
Consider the following variable declarations. 
int a = 5; 
int b = 4; 
double x = 5; 
double y = 4; 
Which of the following expressions would evaluate to the number, 1? 
1. (int) x / y 
2. a / b 
3. a % b - -All of them. (1 , 2, and 3) 
Consider the following variable declarations. 
1. double x = (int) 3.4 
2. int y = (int) 5 / 2 , 5 
3. String z = new String(" ") - -1 and 3 
Consider String a below. Which of the following would create ...
-
$8.99 More Info
Terryl
-
Exam (elaborations)
AP Computer Science A - Review 1, Questions and answers, rated A+/ / latest Exam prediction paper 2024/25 APPROVED/
-
---5February 20242023/2024A+
- AP Computer Science A - Review 1, 
Questions and answers, rated A+ 
Inheritance defines a relationship between _______ that share characteristics - - 
objects 
Inheritance is when a new class (_______) is created from an existing class (_______) - 
-subclass, superclass 
The subclass _______ characteristics of its superclass - -inherits 
When methods of superclasses are overwritten by subclasses - -Method overriding 
If part of the original method implementation from the superclass is retained,...
-
$9.99 More Info
Terryl