Final College Board MC
Blog about my missed questions on the College Board Final
- Total Score: 47/50 is a good score Hi Mr. Mort
- Question 10: Facilitate collaboration between group members
- Question 24: Put binary and decimal numbers in order
- Question 36: Store even numbers in evenList
Total Score: 47/50 is a good score Hi Mr. Mort
Question 10: Facilitate collaboration between group members
- I made an error of saying that a video call would be bad for collaboration, because it is not in person, however the real worst way to collaborate is separate coding with a scrum master combining all the codes into one program. If everyone codes separately then there would be merge conflicts and there would be a massive lack of communication.
Question 24: Put binary and decimal numbers in order
- I was unfamiliar with the numeric values of Binary 1011, Binary 1101, Decimal 5, and Decimal 12. I didnt know that Binary 1101 = Decimal 13 so the correct answer would be decimal 5, binary 1011, decimal 12, binary 1101.
Question 36: Store even numbers in evenList
- I picked the correct, except for the i+2, I thought since the problem said “beginning with 2” tbat I would need to do i+2, but it should really be i*2. The correct code will count the list +1 and start with 2 and count: 2,4,6,8,10…