66 Question Collegeboard Quiz Corrections
Quiz Corrections
- Question 4
- Question 27
- Question 32
- Question 33
- Question 34
- Question 35
- Question 36
- Question 53
- Question 54
- Reflection
Question 4
Assume that a, b, and c are boolean variables that have been properly declared and initialized. Which of the following boolean expressions is equivalent to !(a && b) || c ?
A a && b && c
B a || b || c
C !a && !b || c
D !a && !b && c
E !a || !b || c
- I didn't realize that B is not equivalent to the given expression when all the values are false. So E is the right answer by De Morgan's laws.
Reflection
-
I got 57 out of 66. Taking this quiz was helpful in practicing AP questions and getting an idea of what areas I need to work on.
-
This quiz took me a couple of hours and I got stuck on some of the questions so I need to work on my timing. I worked on the quiz at different times and found that I got more questions wrong near the end of the times I worked on the quiz.
-
One area I could work on more is recursion by looking at Unit 10. I could also review Unit 6 Arrays and Unit 9 Polymorphism.