Skip to main content
Logo image

Section 8.2 Practice Exam 2 for the AP CSA Exam

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 Start button when you are ready to begin the exam, but only then as you can only take the exam once. Click on the Next button to go to the next question. Click on the Previous button to go to the previous question. Use the number buttons to jump to a particular question. Click the Pause button to pause the exam (you will not be able to see the questions when the exam is paused). Click on the Finish button after you have answered all the questions. The number correct, number wrong, and number skipped will be displayed.

Exercises Exercises

    1.

    Consider the following declaration for a class that will be used to represent points in time. Which of these options correctly implement β€˜β€™addMinutes()’’?
     public class Timer
     {
        private int hours; // number of hours
        private int minutes; // 0 <= minutes < 60
    
        void addHours(int addition)
        {
           hours = hours + addition;
        }
    
        void addMinutes(int additionMinutes)
        {
           // implementation not shown
        }
    
        // ... other methods not shown
    
     }
    
    Proposed Implementations:
    
    I.   public void addMinutes(int additionMinutes)
         {
            minutes = minutes + additionMinutes;
         }
    
    II.  public void addMinutes(int additionMinutes)
         {
            minutes += additionMinutes;
            if (minutes >= 60)
            {
               hours += (minutes / 60);
               minutes = (minutes % 60);
            }
         }
    
    III. public void addMinutes(int additionMinutes)
         {
            minutes += additionMinutes;
            while(minutes >= 60)
            {
               hours++;
               minutes -= 60;
            }
         }
    
    IV.  public void addMinutes(int additionMinutes)
         {
            if (additionMinutes + minutes >= 60)
            {
               minutes = additionMinutes + minutes - 60;
               hours += 1;
            }
         }
    
    • 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.

    2.

    Which is NOT a correct way to declare an array of integers?
    • 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.

    3.

    What are the contents of nums after the following code is executed?
    int [] nums = { 1, 2, 3, 4, 5 };
    int temp = nums[2];
    nums[2] = nums[4];
    nums[4] = temp;
    
    • { 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.

    4.

    Which option will evaluate to true, if and only if both a and b are false?
    • !(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.

    5.

    What does the method mystery do?
    public void mystery(String tester)
    {
      for (int i = tester.length() - 1; i >= 0; i--)
      {
          System.out.print(tester.charAt(i));
      }
      System.out.println("");
    }
    
    • 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.

    6.

    After the following code is executed, what does the variable mystery hold?
    public class mysterious
    {
        public static void main(String[] args)
        {
            String mystery;
            String starter = "Hello World!";
            for (int i = 0; i < starter.length(); i++)
            {
                if (i % 2 == 0)
                {
                    mystery += starter.charAt(i);
                }
            }
        }
    }
    
    • "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.
    • 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.

    7.

    Which will cause the longest execution of a sequential search looking for a value in an array of 10 integers?
    • 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.

    8.

    Which of the following reasons for using an inheritance hierarchy are valid?
    I.   Methods from a superclass can be used in a subclass without rewriting or copying code.
    II.  An object from a subclass can be passed as an argument to a method that takes an object of the superclass
    III. Objects from subclasses can be stored in the same array
    IV.  All of the above
    V.   None of the above
    
    • All of these are valid reasons to use an inheritance hierarchy.
    • 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.

    9.

    Consider the following method and if int[] a = {8, 3, 1}, what is the value in a[1] after m1(a); is run?
    public int m1(int[] a)
    {
       a[1]--;
       return (a[1] * 2);
    }
    
    • This would be true if it was return(a[1]*= 2);.
    • This would be true if the return statement was return (a[0]*=2);.
    • 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.
    • 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].
    • 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.

    10.

    What are the values of a and b after the for loop finishes?
    int a = 10, b = 3, t;
    for (int i = 1; i <= 6; i++)
    {
       t = a;
       a = i + b;
       b = t - i;
    }
    
    • 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.

    11.

    Consider the following code. What string is referenced by s1 after the code executes?
    String s1 = "Hi There";
    String s2 = s1;
    String s3 = s2;
    String s4 = s1;
    s2 = s2.toLowerCase();
    s3 = s3.toUpperCase();
    s4 = null;
    
    • 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
    • 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.

    12.

    Consider the following code segment. What value is in sum after this code executes?
    int[][] matrix = { {1,1,2,2},{1,2,2,4},{1,2,3,4},{1,4,1,2}};
    
    int sum = 0;
    int col = matrix[0].length - 2;
    for (int row = 0; row < 4; row++)
    {
       sum = sum + matrix[row][col];
    }
    
    • This would be correct if the variable col was 0 because then it would add 1 + 1 + 1 + 1 which is 4.
    • The variable col is 2, so it adds 2 + 2 + 3 + 1 which is 8.
    • This would be correct if the variable col was 1 because then it would add 1 + 2 + 2 + 4 which is 9.
    • This would be correct if the variable col was 3 becuase then it would add 2 + 4 + 4 + 2 which is 12.
    • 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.

    13.

    Consider the following code segment, what are the contents of mat after the code segment has executed?
    int [][] mat = new int [3][4];
    for (int row = 0; row < mat.length; row++)
    {
       for (int col = 0; col < mat[0].length; col++)
       {
          if (row < col)
             mat[row][col] = 3;
          else if (row == col)
             mat[row][col] = 2;
          else
             mat[row][col] = 1;
       }
    }
    
    • { { 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.

    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?
    for ( int k = 0; k < a.length; k++ )
    {
       while ( a[k] < temp )
       {
          a[k] *= 2;
       }
    }
    
    • 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.

    15.

    Consider the following method. What is the output from conditionTest(3,-2);?
     public static void conditionTest(int num1, int num2)
     {
        if ((num1 > 0) && (num2 > 0))
        {
           if (num1 > num2)
              System.out.println("A");
           else
              System.out.println("B");
        }
        else if ((num2 < 0) || (num1 < 0))
        {
            System.out.println("C");
        }
        else if (num2 < 0)
        {
           System.out.println("D");
        }
        else
        {
           System.out.println("E");
        }
    }
    
    • 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.
    • 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.
    • 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.
    • This will not happen since if num2 is less than 0 the previous conditional would be true ((num2<0) || (num1<0))).
    • This will not happen since if num2 is less than 0 the previous conditional would be true ((num2<0) || (num1<0))).
You have attempted of activities on this page.