For which of the grids does the program correctly move the robot to the gray square?

Question: 66The question below uses a robot in a grid of squares. The robot is represented by a triangle, which isinitially at the bottom-left square of the grid facing toward the right of the grid. The robot can move into awhite or gray square, but cannot move into a black region.The goal is to move the robot in a grid to a gray square.Consider the example grid above. Assuming our code segment needs to work when the gray square isanywhere in the top row, which of the following code segments will always get the robot to the graysquare?REPEAT UNTIL (CAN_MOVE (left)){MOVE_FORWARD ()}ROTATE_LEFT ()MOVE_FORWARD ()This is the correct answer because when followed it moves the robot to thegray square.

Consider the code segment below. You can assume thatInput_List_From_Userasks the user for severalvalues and returns them as a list.inputList ←Input_List_From_User()resultList ← []FOR EACH itemininputList{APPEND (resultList,Mystery(item))}Based on the code segment, how would you best describe the value ofresultList?

For which of the grids does the program correctly move the robot to the gray square?

Question: 73Assume we have an algorithm used to simulate the results of flipping a coinntimes. Two variables used forthe algorithm areheads_counter, storing the number of heads we’ve had, andflip_counter, storing thenumber of flips we’ve made. We want to add on to the algorithm so that at the end we display whetherthere were an odd or even number of tails.Here are two algorithms that display whether we have an even or odd number of tails:Algorithm A: Set the value ofnum_tailsto(flip_counter - heads_counter). If the value ofnum_tailsMOD 2is equal to 0,DISPLAY ("Even"), otherwiseDISPLAY ("ODD")Algorithm B: Set the value ofeven_flipsto(n MOD 2) = 0and set the value ofeven_heads(heads_counter MOD 2) = 0. Ifeven_flipsis equal toeven_headsthenDISPLAY ("EVEN"), otherwiseDISPLAY ("ODD").Both Algorithm A and Algorithm B always calculate the correct answer isthe right answer because display either even or odd..to

Newly uploaded documents

The following questions make up Set #4 of the Practice Exam Questions. These questions are designed to be similar to those on the AP CSP exam. You should finish these questions within 17 minutes to stay on track with the timing of the actual exam. During the actual exam, you will be provided with the AP CS Reference Sheet, which can be found here.

Click the “Start” button when you are ready to begin the exam. Click the “Pause” button to pause the exam (you will not be able to see the questions when the exam is paused). It will show how much time you have used, but you have unlimited time. Click on the “Finish Exam” button at the end when you are done. The number correct, number wrong, and number skipped will be displayed at the bottom of the page. Feedback for each answer will also be shown as well as your answer.

You will not be able to change your answers after you hit the “Finish Exam” button.

      24-4-1: The Domain Name System (DNS) is analogous to:

    • Calling Domino’s Pizza to talk to an employee to place an order
    • Incorrect. This is analogous to giving a request to a server but not analogous to DNS.
    • Downloading your AP scores from the College Board website
    • Incorrect. This is analogous to receiving data from a server but not analogous to DNS.
    • Searching through a phone book to find the phone number belonging to a certain name
    • Correct. The DNS is the Internet's equivalent of a phone book. It maintains a directory of domain names and translate them to Internet Protocol (IP) addresses.
    • Adding a subdomain to your website for your blog posts
    • Incorrect. The rules laid out by the DNS allow us to create subdomains, but this is not analogous to the purpose DNS serves.

      24-4-2: Suppose you are writing a program to accept two integers as input, divide them and return the answer. You decide to use a 64-bit floating-point variable in your program to store the calculated answer and your friend decides to use a 32-bit floating-point variable in his program to store the calculated answer. Assume that the two programs are identical in all other aspects and that the user will never attempt to divide by 0. Then, which of the following statements comparing the answers calculated by the two programs is true?

    • Your friend’s program will give equally or more precise answers for any arbitrary input.
    • Incorrect. Refer to feedback for answer choice (B).
    • Your program will give equally or more precise answers for any arbitrary input.
    • Correct. Since the variable used in your program occupies more memory/has greater number of bits, it will have greater precision and range than the variable used in your friend's program. Thus a more accurate answer is received in your program when numbers are divided.
    • The two programs will give equally precise answers for any arbitrary input.
    • Incorrect. There will be cases in which precision will differ since the two variables have different memory size, and therefore different range.
    • Your program is more likely than your friend’s to give answers with round off errors.
    • Incorrect. Round off errors are observed more when variables with lesser memory size are used.

      24-4-3: ASCII is a character-encoding scheme that uses numeric values to represent alphanumeric and special characters. For example, the uppercase letter ‘A’ is represented by the decimal (base 10) value 65. A partial list of characters and their corresponding ASCII values are shown in the table below.

      For which of the grids does the program correctly move the robot to the gray square?

      ASCII characters can also be represented by octal numbers (base 8). To represent an entire word using octal numbers, we can find the octal value for each letter in the word and then concatenate the values. According to the information provided above, which English word do the following octal numbers represent:

      102 117 107

    • BOG
    • Correct. We can see that 102 base-8 = 1 * 64 + 0 * 8 + 2 * 1 = 66 base-10 = 'B', similarly 117 base-8 = 'O' and 107 base-8 = 'G'
    • BON
    • Incorrect. Check your calculations. See feedback for answer choice A to understand how to convert ocal numbers to decimal numbers.
    • CON
    • Incorrect. Check your calculations. See feedback for answer choice A to understand how to convert ocal numbers to decimal numbers.
    • BEG
    • Incorrect. Check your calculations. See feedback for answer choice A to understand how to convert ocal numbers to decimal numbers.

      24-4-4: Which of the following is an important part of data analysis?

    • Importing the data into a format that the computer can process
    • Incorrect. This statement is true since we cannot perform meaninful analysis on our data if our computer can't understand it. However, the other answer choices are also correct!
    • Testing hypotheses and looking for patterns in the processed data to gain insight and knowledge
    • Incorrect. Before we can arrive at results, we need to hypothesize - make predictions about what our results may be and test them out. Looking for patterns in the data can help us gain intuition into how we should proceed proving or disproving our hypothesis. This statement is true; however, the other answer choices are also correct!
    • Visualizing or reporting the results in a meaningful way to the end user
    • Incorrect. The end user is not concerned with our raw data, or with all our lengthy calculations; we should use abstraction and present only the necessary data and results to the end user. This statement is true; however, the other answer choices are also correct!
    • All of the above
    • Correct. Since all answer choices are correct.

      24-4-5: A certain mobile application allows its users to take pictures and send them to whoever they wish to on their contact list as an online message. If a user receives a picture, he may download the picture to save it or let the application automatically delete it within 24 hours of receiving the message. A picture itself is considered to be data. In addition to the data, the application stores the following metadata for all pictures:
      • The time the picture was taken, and the time the picture was received as a message

      • The name of the user who sent the picture and the names of users who received the picture

      • The number of users who downloaded the picture

      For which of the following goals would it be more useful to analyze the data instead of the metadata?

    • To determine the users who send pictures most frequently
    • Incorrect. We need to use metadata for this, particularly the names of users who send pictures.
    • To determine the time of day that the application is most active
    • Incorrect. We need to use metadata for this, particularly the times at which pictures were taken and received as a message.
    • To determine the objects that many users are are taking pictures of
    • Correct. This answer choice is correct since we need to look at the actual picture, that is, the data in this case.
    • To determine which pictures from a particular user have been downloaded the most
    • Incorrect. We need to use metadata for this, particularly the number of users who downloaded the pictures.

      24-4-6: A red triangle is pictured below in a grid of squares. It is currently facing upward, and can only move using the MoveTriangle procedure, shown below. The triangle can move onto white and gray squares, but not onto the black squares.

      For which of the grids does the program correctly move the robot to the gray square?

      PROCEDURE MoveTriangle (numMoves, numTurns)
      {
         REPEAT numMoves TIMES
         {
             MOVE_FORWARD()
         }
         REPEAT numTurns TIMES
         {
             TURN_RIGHT()
         }
       }
      

      Which of the following instructions will get the red triangle to the gray square?

      (A)

      MoveTriangle (1, 1)
      MoveTriangle (1, 1)
      MoveTriangle (3, 1)
      MoveTriangle (3, 0)
      

      (B)

      MoveTriangle (4, 1)
      MoveTriangle (4, 0)
      

      (C)

      MoveTriangle (1, 1)
      MoveTriangle (1, 3)
      MoveTriangle (3, 1)
      MoveTriangle (3, 0)
      

      (D)

      MoveTriangle (1, 1)
      MoveTriangle (1, 3)
      MoveTriangle (3, 3)
      MoveTriangle (3, 0)
      

    • Incorrect. The first step in this answer choice is correct. However, after the second step gets executed, the triangle faces a black sqaure, that is a dead end, and cannot move forward unless it turns first!
    • Incorrect. We will get an error in the very first step since our triangle cannot move forward 4 times!
    • Correct. Trace the movement of the red triangle in the grid for this answer choice. You will find that we successfully reach the gray sqaure.
    • Incorrect. Look at the third step - we incorrectly turn the triangle three times and it now faces a black sqaure. Therefore, we can't move forward now!

      24-4-7: A teacher wants to give extra credit to those students in her class who did an extra project and volunteered for community service.

      She creates a list extraProjectStudents, which contains names of all the students who did the extra project, and another list volunteerServiceStudents, which contains names of all the students who volunteered for community service. The teacher wants to create another list, extraCreditStudents, which contains names of all the students who are eligible to receive extra credit.

      Look at the incomplete code for the procedure createExtraCreditList() given below.

      PROCEDURE createExtraCreditList(extraProjectStudents, volunteerServiceStudents)
      {
          extraCreditStudents ← [ ]
          FOR EACH student IN extraProjectStudents
          {
              <MISSING CODE>
          }
          RETURN extraCreditStudents
      }
      

      Which of the answer choices should replace <MISSING CODE> so that extraCreditStudents gets filled as intended?

      You may use a procedure contains(list, name) in your answer which returns true if the name is found in the list and false otherwise.

      (A)

      IF (contains (volunteerServiceStudents, student))
      {
          APPEND (extraCreditStudents, student)
      }
      

      (B)

      IF (contains (extraCreditStudents, student))
      {
          APPEND (volunteerServiceStudents, student)
      }
      

      (C)

      IF (contains (extraProjectStudents, student))
      {
          APPEND (extraCreditStudents, student)
      }
      

      (D)

      IF (contains (volunteerServiceStudents, student))
      {
          APPEND (extraProjectStudents, student)
      }
      

    • Correct. In our loop, 'student' is already present in 'extraProjectStudents' therefore we only need to check if 'student' is also present in 'volunteerServiceStudents' and add 'student' to 'extraCreditStudents' if this condition is satisfied. This is exactly what this answer choice does.
    • Incorrect. Checking if 'student' is in 'extraCreditStudents' and then adding 'student' to 'volunteerServiceStudents' is incorrect; we need to check if 'student' is in 'volunteerSeriveStudents' and then add 'student' to 'extraCreditStudents'
    • Incorrect. This option will incorrectly add all students in 'extraProjectStudents' to 'extraCreditStudents' even if a 'student' is not present in 'volunteerServiceStudents'.
    • Incorrect. We need to add students to 'extraCreditStudents' not to 'extraProjectStudents'.

      24-4-8: Efficiency of algorithms is most often analyzed based on which of the following characteristics?

    • The number of lines of computer code needed to implement the algorithm.
    • Incorrect. Efficiencies of algorithms are not related to number of lines of codes. In fact, a program with fewer lines of code may very well be more inefficient than a program with more lines of code.
    • The time and memory space necessary to run the algorithm.
    • Correct. This is correct since efficiency of algorithms in measured in terms of run-time and space complexity.
    • How easy or difficult the algorithm is to understand.
    • Inorrect. How "complex" an algorithm is to understand has nothing to do with its run-time or space complexity. In fact, an algorithm which is easy to understand may very well be more inefficient than an algorithm which isn't.
    • The size of the output obtained after running the algorithm.
    • Incorrect. Output size doest not determine the efficiency of an algorithm.

      24-4-9: A student purchases a single-user license of an online textbook and wants to share the textbook with their classmates. Under what conditions is it acceptable for the student to share this textbook?

    • If the student shares only three chapters of the textbook with their classmates
    • Incorrect. Reproducing even a part of copyrighted, single-user content constitutes plagiarism.
    • If the student gets permission from the textbook’s copyright owner
    • Correct. Permission from appropriate sources needs to be obtained before single-user content can be shared.
    • If the textbook is only shared with people in the student’s class
    • Incorrect. Sharing single-user material with anyone constitutes plagiarism.
    • If the textbook is only shared with one other classmate
    • Incorrect. Sharing single-user material with even one other person constitutes plagiarism.

      24-4-10: The code segment below moves a robot through a maze, with the objective of reaching the gray square. The robot in each grid is represented as a red triangle and is initially facing upwards. The robot can move onto white and gray squares, but not onto the black squares. The procedure goalReached() used in the code segment below evaluates to true if the robot is on the gray square and evaluates to false in all other cases.

      REPEAT UNTIL (goalReached ())
      {
          IF (CAN_MOVE (forward))
          {
              MOVE_FORWARD ()
          }
          IF (CAN_MOVE (left))
          {
              ROTATE_LEFT ()
          }
          IF (CAN_MOVE (right))
          {
              ROTATE_RIGHT ()
          }
      }
      

      For which of the following grids does the program NOT correctly move the triangle to the gray square?

      For which of the grids does the program correctly move the robot to the gray square?
    • Incorrect. The robot has a direct path from origin to destination. Therefore it will reach the gray square in this case.
    • Correct. Let's look at what happens when the robot reaches the sqaure (4, 2), that is, 4th row from top and the 2nd column from left. The robot is facing right and has just moved forward from square (4, 1). Next we check if the robot can move left, since it can the robot turns left and faces the top. Then we check if the robot can move right, since it can, the robot turns right and faces the right side again. Then, 'goalReached()' evaluates to false, the next iteration beigns and the robot moves forward onto square (4, 3). At this point, we can conclude that the robot will never reach the gray sqaure since it has gone off-track, in fact, the robot will continue to move until it gets stuck at sqaure (3, 4).
    • Incorrect. Let's look at what happens when the robot reaches the sqaure (2, 2), that is, 2nd row from top and the 2nd column from left. The robot is facing the top and has just moved forward from square (3, 2). Next we check if the robot can move left, since it cannot the robot's direction remains unchanged. Then we check if the robot can move right, since it can, the robot turns right and faces the right side. Then, 'goalReached()' evaluates to false, the next iteration beigns and the robot moves forward onto square (2, 3). At this point, we can conclude that the robot will reach the gray sqaure since a direct path lies ahead.
    • Incorrect. The robot has a direct path from origin to destination. Therefore it will reach the gray square in this case.

You have attempted of activities on this page

Which of the following is a key factor in determining the efficiency of an algorithm?

Time and space complexity are the two main measures for calculating algorithm efficiency, determining how many resources are needed on a machine to process it.

Which of the following is a true statement about the student's use of the computer scientist's search procedure?

Which of the following is a true statement about the student's use of the computer scientist's search procedure? The student is reusing the computer scientist's procedural abstraction by knowing what the procedure does without knowing how it does it.

Which of the following describes good practice when naming variables in code select two answers?

Use concise names to avoid typos and keep code tidier. Use names which describe what each variable represents to make code easier to understand.

What are the values of first and second as a result of executing the code segment?

What are the values of first and second as a result of executing the code segment? The value of first is true, and the value of second is true.