Test Corrections

Score: 65/67 score

The collegeboard quiz multiple choice I took was far more easier than the other one we took earlier. It more felt like I was not anymore fatigued while going through the quiz and doing the questions. I was able to easily eliminate the wrong answers while keeping the right one in the game. On this MC I scored a 65/67 compared to the first MC we took during first trimester. I slightly improved from the other quiz and I wan’t to further eliminate any silly mistakes that I have done.

In the future I want to control the silly mistakes that are shown through my quiz. Silly mistakes have occured when my fatigue was starting to creep down on me.

One of my mistakes was on q:23

Answer D Correct. The flowchart sets available to true whenever weekday is true and miles is less than 20, and sets available to false otherwise. This code statement provides the same functionality.

My answer was B.

The mistake i did here was forgot to label the shapes on what it does in the actual program. This led to me mistunderstanding the code presented to me. This is really a silly mistake indeed.

Q66: because in line 8, the variable count should increase by 1 when currentNum is a perfect number, so it should be incremented in the body of the IF statement. A is right because in line 5, the variable count should increase by 1 when currentNum is a perfect number, so it should only be incremented in the body of the IF statement.

Q67: because for this code segment, count is increased to 1 when “oak” is encountered as the last element of the list. The loop then terminates and the procedure returns the intended result 1. B is right because for this code segment, count is increased to 1 the first time “maple” is encountered in the list. However, count is reset to 0 when the code segment moves to the next list element. This causes the procedure to return 0 instead of the intended result 1.

The second mistake I did on my test was on question 67

By this time my fatigue started affecting my performance hard. I still need to train harder on my efficiency while taking longer tests since ap exams take upwards of 3 hours which is insane. If I can’t do this a simple test It will be hard for me to focus on my other tests.

Answer A Correct. For this code segment, count is increased to 1 the first time “birch” is encountered in the list. However, count is reset to 0 when the code segment moves to the next list element. The last time “birch” is encountered in the list, count is again increased to 1, causing the procedure to return 1 instead of the intended result 2.