All AP Computer Science A Resources
Example Questions
Example Question #11 : Program Implementation
What are the 3 different manners (in terms of accessibilitiy) in which you can declare a variable and what are the differences between the 3?
Public: accessible to everyone
Private: accessible to only members of the method
Protected: accessible to subclass
Public: accessible to that sole class
Private: accessible to the method or instance in which it was called
Protected: acts as the default setting
Public: accessible to everyone
Private: accessible to members of the class
Protected:accessible to classes in the same package and subclasses
Public: accessible to everyone
Private: accessible to members of the class
Protected:accessible to classes in the same package and subclasses
Public is accessible to everyone regardless if the two classes are in the same package or not.
Protected: Only allows access of those extended are packaging.
Private: Its meant to keep private in order for only members of that specific class to see it.
Example Question #171 : Computer Science
Which of these produce a typecasting error?
1) float f = double d;
2) double d = int i;
3) int i = byte b;
4) long l = short s;
long l = short s;
None of the answers are wrong.
int i = byte b;
double d = int i;
float f = double d;
float f = double d;
These problems all involve implicit type casting. For there to be an issue, you'd have to be converting a primitive that takes up more issue into one that requires less memory. The only one that fits that prerequisite is converting a double into a float. The primitive data chain is:
byte < short < int < long < float < double
Example Question #171 : Computer Science
Which of the following represents an acceptable definition of an interface?
public interface Rectangle {
private double length,width;
public Rectangle(double l,double w) {
length = l;
width = w;
}
public double getArea();
public double getPerimeter();
}
public interface Person {
private String fName;
private String lName;
public String toString() {
return fName + " " + lName;
}
}
public interface Person {
private String fName;
private String lName;
public String toString();
}
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
public class Rectangle {
private double length,width;
public Rectangle(double l,double w) {
length = l;
width = w;
}
public double getArea() {
return length * width;
};
public double getPerimeter() {
return 2 * length + 2 * width;
}
}
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
An interface cannot have any member data or implementations for its methods. It only defines a set of methods that are required by anything that implements that interface. Therefore, the only option that is valid is the interface defined as Shape2D
.
Example Question #172 : Computer Science
Which of the following represents a valid declaration of an interface and a class that implements that interface?
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
public class Circle implements Shape2D {
private int radius;
public Circle(int r) {
radius = r;
}
public int getArea() {
return Math.PI * radius * radius;
}
public int getPerimeter() {
return Math.PI * 2 * radius;
}
}
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
public class Circle implements Shape2D {
private double radius;
public Circle(double r) {
radius = r;
}
public double getArea() {
return Math.PI * radius * radius;
}
public double getCircumference() {
return Math.PI * 2 * radius;
}
}
public interface Shape2D {
public int getArea();
public int getPerimeter();
}
public class Circle implements Shape2D {
private double radius;
public Circle(double r) {
radius = r;
}
public double getArea() {
return Math.PI * radius * radius;
}
public double getPerimeter() {
return Math.PI * 2 * radius;
}
}
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
public class Circle implements Shape2D {
private double radius;
public Circle(double r) {
radius = r;
}
public double getArea() {
return Math.PI * radius * radius;
}
public double getPerimeter() {
return Math.PI * 2 * radius;
}
}
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
public class Circle extends Shape2D {
private double radius;
public Circle(double r) {
radius = r;
}
public double getArea() {
return Math.PI * radius * radius;
}
public double getPerimeter() {
return Math.PI * 2 * radius;
}
}
public interface Shape2D {
public double getArea();
public double getPerimeter();
}
public class Circle implements Shape2D {
private double radius;
public Circle(double r) {
radius = r;
}
public double getArea() {
return Math.PI * radius * radius;
}
public double getPerimeter() {
return Math.PI * 2 * radius;
}
}
In order to implement an interface, you must use the syntax "implements <interface name>". Therefore, for this question, you must choose an option that has implements Shape2D
. Also, you must make sure that all of your methods are defined in your class just as they are defined in the interface declaration. You will notice that a variety of the incorrect answers do not do this but instead have wrong types or names in various places.
Example Question #11 : Program Implementation
Consider the following code:
public static interface Shape2D {
public double getArea();
}
public static class Ellipse implements Shape2D {
private double r1,r2;
public Ellipse(double r1,double r2) {
this.r1 = r1;
this.r2 = r2;
}
public double getArea() {
return Math.PI * r1 * r2;
}
}
public static class Circle extends Ellipse {
private double radius;
public Circle(double r) {
super(r,r);
}
public double getArea() {
return super.getArea();
}
public double getCircumference() {
return Math.PI * 2 * radius;
}
}
public static void main(String[] args) {
Shape2D[] vals = {new Circle(5),new Ellipse(8,5)};
for(int i = 0; i < vals.length; i++) {
System.out.println("Area " + (i+1) + ": " + vals[i].getArea());
}
}
What is the output for this code?
Area 1: 78.53981633974483
Area 2: 78.53981633974483
The code will not compile.
Area 1: 78.53981633974483
Area 2: 125.66370614359172
Area 1: 31.41592653589793
Area 2: 201.061929829746752
Area 0: 78.53981633974483
Area 1: 201.061929829746752
Area 1: 78.53981633974483
Area 2: 125.66370614359172
We are dealing here both with the implementation of an interface as well as inheritance. Notice that the Circle
class has a getArea
method that uses the superclass's getArea
method. This equation is , but for the Circle , so the equation is the same as the standard . This loop will iterate through the objects, using the appropriate method in each case. Thus, you will get two values:
, which is relatively close to or .
, which is relatively close to or .
Those are close enough to help you estimate for the output.
(Notice that the line numbers need to be "1" and "2".)
Example Question #1 : Interface Declarations
Why is the "default" keyword used in a switch statement?
To catch any remaining possible values that may not be included in the case statements.
It makes the function default to a backup function if the case isn't present.
It defaults the case statement the case 1 if the function is stuck in an infinite loop.
It sets a variable to be a default value in case that value isn't defined in the case statement.
Default statements are unnecessary in case statements.
To catch any remaining possible values that may not be included in the case statements.
The default keyword is used to catch any remaining cases not specified. For example, if you only want to check for certain hour of the day, say 2,3, and 4 o'clock, the default case would catch all the other hours. You could then create a statement for what to do when those values are caught.
Example Question #2 : Interface Declarations
Which of the following declares an interface to be used for anything that can implement the actions of a sink?
public interface Sink {
public void Turn(int faucetNum) {
// Turn code... excerpted
}
public void Drain() {
// Drain code... excerpted
};
abstract public void Autoclean(int setting) {
// Auto-clean code... excerpted
}
}
public abstract class Sink {
abstract public void Turn(int faucetNum);
abstract public void Drain();
abstract public void Autoclean(int setting);
}
public abstract class Sink {
abstract public void Turn(int faucetNum);
public void Drain() {
// Drain code...
};
abstract public void Autoclean(int setting);
}
public interface Sink {
public void Turn(int faucetNum);
public void Drain() {
// Drain code...
};
public void Autoclean(int setting);
}
public interface Sink {
public void Turn(int faucetNum);
public void Drain();
public void Autoclean(int setting);
}
public interface Sink {
public void Turn(int faucetNum);
public void Drain();
public void Autoclean(int setting);
}
First of all, the question does ask for an interface. This is a type of declaration in Java, so you should use that for your answer. This allows you to eliminate two of the incorrect options. Granting this, you then know that you need to look at the options that use the interface keyword. Recall that for interfaces, you provide no implementation whatsoever. Thus, the other two wrong answers are the ones that provide method bodies. This cannot be done for interfaces, which merely define what something should do but do not actually implement it.
Example Question #1 : Interface Declarations
Design an interface Cat. The interface must include the functions meow, purr, clean, hungry, isPurring, isClean, isSleeping, and isHungry.
class Cat {
public String meow();
public String purr();
public void clean();
public void hungry();
public boolean isPurring();
public boolean isClean();
public boolean isSleeping();
public boolean isHungry();
}
interface Cat {
}
interface Cat {
public String meow();
public String purr();
public void clean();
public void hungry();
public boolean isPurring();
public boolean isClean();
public boolean isSleeping();
public boolean isHungry();
}
interface Cat {
public String meow();
public String purr();
public void clean();
public void hungry();
public void isPurring();
public void isClean();
public void isSleeping();
public void isHungry();
}
interface Cat {
public String meow();
public String purr();
public void clean();
public void hungry();
public boolean isPurring();
public boolean isClean();
public boolean isSleeping();
public boolean isHungry();
}
The correct answer defines the interface as described. One of the answer choices defines a class with all of the attributes of the interface. Classes and interfaces are different. Interfaces are stubs of methods and classes are typically implementations (this is not always true, look up abstract classes). Another answer choice defines just the stub of the interface. This one would have been correct if the prompt had just asked for the stub, but there were implementation questions involved. Finally, the third answer choice had isPurring(), isClean(), isSleeping(), and isHungry() as void methods. These methods are prefixed with an "is" and "is" typically defines boolean language. Boolean was the correct return method on those.
Example Question #171 : Computer Science
#include <iostream>
#include <string>
using namespace std;
int main() {
string name;
cout << "Tell me your name: "<<endl;
getline(cin, name);
sayHello();
return 0;
}
void sayHello(string nameToGreet){
cout << "Hello, " << nameToGreet << "!"<< endl;
}
Why would the above program fail?
There is no problem.
sayHello
doesn't exist at the point it is called.
nameToGreet
was never defined.
sayHello
should not be of type void
.
name
is not the right type.
sayHello
doesn't exist at the point it is called.
The compiler will read the program from top to bottom, and by the time it gets to the function call for sayHello
in main, it will have no clue what sayHello
is. Therefore an exception will be raised. To circumvent this issue, define sayHello
before main, OR provide a function prototype before main to make the compiler aware of the appropriate signature for the sayHello
function.
Example Question #22 : Programming Constructs
Which of the following is a method that takes a string and an integer as parameters, using the integer to increase each character value in the string before returning the new value? (For instance, a 2 applied to abc should become cde.)
public int myMethod(String s,int i) {
String r = "";
for(int j = 0; j < s.length(); j++) {
r += (char)(s.charAt(j) + i);
}
return r.length();
}
public String myMethod(String s,int i) {
String r = "";
for(int j = 0; j < s.length(); j++) {
r += (s.charAt(j) + i);
}
return r;
}
public void myMethod(String s,int i) {
String r = "";
for(int j = 0; j < s.length(); j++) {
r += (char)(s.charAt(j) + i);
}
}
None of the others
public String myMethod(String s,int i) {
String r = "";
for(int j = 0; j < s.length(); j++) {
r += (char)(s.charAt(j) + i);
}
return r;
}
public String myMethod(String s,int i) {
String r = "";
for(int j = 0; j < s.length(); j++) {
r += (char)(s.charAt(j) + i);
}
return r;
}
The first thing you need to look at is the definition of the function's return value and parameters. The only options that will pass are the ones that have:
public static String myMethod(String s,int i)
(This is based on the definition: Return a string, take a string and an integer.)
Now, in our code, the key line is:
r += (char)(s.charAt(j) + i);
The wrong version has:
r += (s.charAt(j) + i);
This does not work because s.charAt(j) + i is interpreted as a numeric value in this case. You will end up with a String that is comprised of numbers. However, if you cast it back to a char type, you will get the character that is defined by that particular numeric value. This is why the correct answer has:
r += (char)(s.charAt(j) + i);
Now, on the AP Computer Science A exam, you will need to use casts for double and int. However, the writers of the test do say that it is helpful to understand casting in general. Therefore, apply this problem's methodology to other programming problems where you would have to type cast double values into int values and vice-versa.