14.4. Practice Exam X¶
The following questions are similar to what you might see on the AP Exam. Please answer each to the best of your ability.
Click the button when you are ready to begin the exam, but only then as you can only take the exam once. Click on the button to go to the next question. Click on the button to go to the previous question. Use the number buttons to jump to a particular question. Click the button to pause the exam (you will not be able to see the questions when the exam is paused). Click on the button after you have answered all the questions. The number correct, number wrong, and number skipped will be displayed.
- I only
- This implementation of ''addMinutes'' does not account for values of additionMinutes that push the minute count above 60.
- II only
- Implementation II works, but implementation III also works.
- IV only
- Implementation IV does not work for situations where additionMinutes + minutes does not go above 60.
- II and III
- Correct!
- I, II, and III
- Implementations II and III are correct, but implementation I is not. Implementation I does not account for values of additionMinutes that push the minute count above 60.
- int[] nums = [5];
- The left side is okay, but the right side is wrong.
- int[] nums;
- This correctly declares an array of integers.
- int[] nums = { 2, 4, 6, 8, 10 };
- This correctly declares and initializes an array of five integers.
- int[] nums = new int[5];
- This declares nums to be an array of integers and creates the array.
- { 1, 2, 5, 4, 3 }
- Correct!
- { 1, 2, 5, 4, 5 }
- Incorrect. Remember that arrays are indexed from 0.
- { 5, 4, 1, 2, 3 }
- Incorrect, temp is used to hold the value from index 2 and that value is put in index 4.
- { 1, 2, 4, 4, 3 }
- Nums at index 2 is set to the value of nums at index 4, not just the value 4.
- { 1, 4, 3, 2, 5 }
- Incorrect. Remember that arrays are indexed from 0.
- !(a && b)
- This would be true if a OR b are false using De Morgan's laws: !(a && b) = !a || !b.
- !a && b
- If b was false, this option would be false.
- !a && !b
- Correct!
- a && b
- This will only be true only when both a and b are true.
- a || !b
- This will only be true if a is true, or b is false.
- Prints the string in reverse order
- This method prints the reversed string.
- Deletes the second half of the string
- Incorrect, this method prints the string reversed.
- Prints string normally
- Incorrect, this method prints the string reversed.
- Compile-time error occurs
- Incorrect, this method prints the string reversed.
- Prints alternating characters from beginning and end of the string.
- Incorrect, this method prints the string reversed.
- "Hello World!"
- The variable holds all characters that were stored at even indices for the original phrase.
- "Hello "
- The variable holds all characters that were stored at even indices for the original phrase.
- "He"
- The variable holds all characters that were stored at even indices for the original phrase.
- "HloWrd"
- Correct! The variable holds all characters that were stored at even indices for the original phrase.
- "el ol!"
- The variable holds all characters that were stored at even indices for the original phrase.
- The value is the first one in the array
- This would be true for the shortest execution. This would only take one execution of the loop.
- The value is in the middle of the array
- This would take 5 executions of the loop.
- The value is at position 3 in the array
- This would take 3 executions of the loop.
- The value isn't in the array
- A sequential search loops through the elements of an array starting with the first and ending with the last and returns from the loop as soon as it finds the passed value. It has to check every value in the array when the value it is looking for is not in the array. This would take 10 executions of the loop.
- The value is at position 6 in the array
- This would take 6 executions of the loop.
- IV
- All of these are valid reasons to use an inheritance hierarchy.
- V
- In fact, all of the reasons listed are valid. Subclasses can reuse methods written for superclasses without code replication, subclasses can be stored in the same array, and passed as arguments to methods meant for the superclass. All of which make writing code more streamlined.
- I and II
- III is also valid. In some cases you might want to store subclasses together in a single array, and inheritance allows for this.
- I and III
- II is also valid. In some cases a single method is applicable for a number of subclasses, and inheritance allows you to pass objects of the subclasses to the same method instead of writing individual methods for each subclass.
- I only
- II and III are also valid, in some cases a single method is applicable for a number of subclasses, and inheritance allows you to pass all the subclasses to the same method instead of writing individual methods for each subclass and you might want to store subclasses together in a single array, and inheritance allows for this.
- 4
- This would be true if it was return(a[1]*= 2);.
- 16
- This would be true if the return statement was return (a[0]*=2);.
- 7
- This would be true if it was a[0]--; Or it would be true if array indices started at 1, but they start with 0.
- 2
- The statement a[1]--; is the same as a[1] = a[1] - 1; so this will change the 3 to a 2. The return (a[1] * 2) does not change the value at a[1].
- 3
- This can't be true because a[1]--; means the same as a[1] = a[1] - 1; So the 3 will become a 2. Parameters are all pass by value in Java which means that a copy of the value is passed to a method. But, since an array is an object a copy of the value is a copy of the reference to the object. So changes to objects in methods are permanent.
- a = 6 and b = 7
- This would be true if the loop stopped when i was equal to 6.
- a = 6 and b = 13
- Actually i = 6 and t = 6 and a = 13 after the loop finishes.
- a = 13 and b = 0
- The variable i loops from 1 to 6
i = 1, t = 10, a = 4, b = 9
i = 2, t = 4, a = 11, b =2
i = 3, t = 11, a = 5, b = 8
i = 4, t = 5, a = 12, b = 1
i = 5, t = 12, a = 6, b = 7
i = 6, t = 6, a = 13, b = 0 - a = 6 and b = 0
- Actually i = 6 and t = 6 and b = 0 after the loop finishes.
- a = 0 and b = 13
- No a = 13 and b = 0 after the loop finishes.
- hi there
- This would only be correct if we had s1 = s2; after s2.toLowerCase(); was executed. Strings are immutable and so any change to a string returns a new string.
- HI THERE
- This would be correct if we had s1 = s3; after s3.toUpperCase(); was executed. Strings are immutable and so any change to a string returns a new string.
- Hi There
- Strings are immutable meaning that any changes to a string creates and returns a new string, so the string referred to by s1 does not change
- null
- This would be true if we had s1 = s4; after s4 = null; was executed. Strings are immutable and so any changes to a string returns a new string.
- hI tHERE
- Strings are immutable and so any changes to a string returns a new string.
- 4
- This would be correct if the variable col was 0 because then it would add 1 + 1 + 1 + 1 which is 4.
- 8
- The variable col is 2, so it adds 2 + 2 + 3 + 1 which is 8.
- 9
- This would be correct if the variable col was 1 because then it would add 1 + 2 + 2 + 4 which is 9.
- 12
- This would be correct if the variable col was 3 becuase then it would add 2 + 4 + 4 + 2 which is 12.
- 10
- This would be true if we were adding the values in the 3rd row (row = 2) instead of the 3rd column. This would be 1 + 2 + 3 + 4 which is 10.
- { { 2, 1, 1, 1 }, { 2, 2, 1, 1 }, { 2, 2, 2, 1 } }
- This would be true if it was filling mat with 1 if the row index is less than the column index, but it fills with a 3 in this case.
- { { 2, 3, 3, 3 }, { 1, 2, 3, 3 }, { 1, 1, 2, 3 } }
- This will fill mat with 3 if the row index is less than the column index, 2 if the row index is equal to the column index, and a 1 if the row index is greater than the column index.
- { { 2, 1, 1 }, { 2, 2, 1 }, { 2, 2, 2 }, { 2, 2, 2 } }
- This would be true if it was int [][] mat = new int [4][3] and it filled the mat with 1 if the row index is less than the column index.
- { { 2, 3, 3 }, { 1, 2, 3 }, { 1, 1, 2 }, { 1, 1, 1 } }
- This would be true if it was int [][] mat = new int [4][3]. Remember that the first number is the number of rows.
- { { 1, 3, 3, 3 }, { 2, 1, 3, 3 }, { 2, 2, 1, 3 } }
- This would be true if it filled the mat with 1 if the row and column indices are equal and 2 if the row index is greater than the column index.
- The values don't matter, this will always cause an infinite loop.
- An infinite loop will not always occur in this program segment.
- Whenever a has a value larger than temp.
- Values larger then temp will not cause an infinite loop.
- When all values in a are larger than temp.
- Values larger then temp will not cause an infinite loop.
- Whenever a includes a value equal to temp.
- Values equal to temp will not cause an infinite loop.
- Whenever a includes a value that is less than or equal to zero.
- When a contains a value that is less than or equal to zero, then multiplying that value by 2 will never make the result larger than the temp value (which was set to some value > 0), so an infinite loop will occur.
- A
- This would be true if num1 and num2 were both greater than 0 and num1 was greater than num2. However, num2 is less than 0.
- B
- This would be true if num1 and num2 were both greater than 0 and num1 was less than or equal to num2. However, num2 is less than 0.
- C
- The first test is false since num2 is less than 0 and for a complex conditional joined with And (&&) to be true both expressions must be true. Next, else if ((num2<0) || (num1<0)) is executed and this will be true since num2 is less than 0 and for a complex conditional joined with Or (||) only one of the expressions must be true for it to execute.
- D
- This will not happen since if num2 is less than 0 the previous conditional would be true ((num2<0) || (num1<0))).
- E
- This will not happen since if num2 is less than 0 the previous conditional would be true ((num2<0) || (num1<0))).
13-4-1: Consider the following declaration for a class that will be used to represent points in time. Which of these options correctly implement ‘’addMinutes()’’?
1 public class Timer
2 {
3 private int hours; // number of hours
4 private int minutes; // 0 <= minutes < 60
5
6 void addHours(int addition)
7 {
8 hours = hours + addition;
9 }
10
11 void addMinutes(int additionMinutes)
12 {
13 // implementation not shown
14 }
15
16 // ... other methods not shown
17
18 }
19
20Proposed Implementations:
21
22I. public void addMinutes(int additionMinutes)
23 {
24 minutes = minutes + additionMinutes;
25 }
26
27II. public void addMinutes(int additionMinutes)
28 {
29 minutes += additionMinutes;
30 if (minutes >= 60)
31 {
32 hours += (minutes / 60);
33 minutes = (minutes % 60);
34 }
35 }
36
37III. public void addMinutes(int additionMinutes)
38 {
39 minutes += additionMinutes;
40 while(minutes >= 60)
41 {
42 hours++;
43 minutes -= 60;
44 }
45 }
46
47IV. public void addMinutes(int additionMinutes)
48 {
49 if (additionMinutes + minutes >= 60)
50 {
51 minutes = additionMinutes + minutes - 60;
52 hours += 1;
53 }
54 }
13-4-2: Which is NOT a correct way to declare an array of integers?
13-4-3: What are the contents of nums after the following code is executed?
1int [] nums = { 1, 2, 3, 4, 5 };
2int temp = nums[2];
3nums[2] = nums[4];
4nums[4] = temp;
13-4-4: Which option will evaluate to true, if and only if both a and b are false?
13-4-5: What does the method mystery
do?
1public void mystery(String tester)
2{
3 for (int i = tester.length() - 1; i >= 0; i--)
4 {
5 System.out.print(tester.charAt(i));
6 }
7 System.out.println("");
8}
13-4-6: After the following code is executed, what does the variable mystery hold?
1public class mysterious
2{
3 public static void main(String[] args)
4 {
5 String mystery;
6 String starter = "Hello World!";
7 for (int i = 0; i < starter.length(); i++)
8 {
9 if (i % 2 == 0)
10 {
11 mystery += starter.charAt(i);
12 }
13 }
14 }
15}
13-4-7: Which will cause the longest execution of a sequential search looking for a value in an array of 10 integers?
13-4-8: Which of the following reasons for using an inheritance hierarchy are valid?
1I. Methods from a superclass can be used in a subclass without rewriting or copying code.
2II. An object from a subclass can be passed as an argument to a method that takes an object of the superclass
3III. Objects from subclasses can be stored in the same array
4IV. All of the above
5V. None of the above
13-4-9: Consider the following method and if int[] a = {8, 3, 1}
, what is the value in a[1]
after m1(a);
is run?
1public int m1(int[] a)
2{
3 a[1]--;
4 return (a[1] * 2);
5}
13-4-10: What are the values of a
and b
after the for
loop finishes?
1int a = 10, b = 3, t;
2for (int i = 1; i <= 6; i++)
3{
4 t = a;
5 a = i + b;
6 b = t - i;
7}
13-4-11: Consider the following code. What string is referenced by s1
after the code executes?
1String s1 = "Hi There";
2String s2 = s1;
3String s3 = s2;
4String s4 = s1;
5s2 = s2.toLowerCase();
6s3 = s3.toUpperCase();
7s4 = null;
13-4-12: Consider the following code segment. What value is in sum after this code executes?
1int[][] matrix = { {1,1,2,2},{1,2,2,4},{1,2,3,4},{1,4,1,2}};
2
3int sum = 0;
4int col = matrix[0].length - 2;
5for (int row = 0; row < 4; row++)
6{
7 sum = sum + matrix[row][col];
8}
13-4-13: Consider the following code segment, what are the contents of mat after the code segment has executed?
1int [][] mat = new int [3][4];
2for (int row = 0; row < mat.length; row++)
3{
4 for (int col = 0; col < mat[0].length; col++)
5 {
6 if (row < col)
7 mat[row][col] = 3;
8 else if (row == col)
9 mat[row][col] = 2;
10 else
11 mat[row][col] = 1;
12 }
13}
13-4-14: Assume that temp
is an int
variable initialized to be greater than zero and that a
is an array of type int
. Also, consider the following code segment. Which of the following will cause an infinite loop?
1for ( int k = 0; k < a.length; k++ )
2{
3 while ( a[k] < temp )
4 {
5 a[k] *= 2;
6 }
7}
13-4-15: Consider the following method. What is the output from conditionTest(3,-2);
?
1 public static void conditionTest(int num1, int num2)
2 {
3 if ((num1 > 0) && (num2 > 0))
4 {
5 if (num1 > num2)
6 System.out.println("A");
7 else
8 System.out.println("B");
9 }
10 else if ((num2 < 0) || (num1 < 0))
11 {
12 System.out.println("C");
13 }
14 else if (num2 < 0)
15 {
16 System.out.println("D");
17 }
18 else
19 {
20 System.out.println("E");
21 }
22}