Individual Repository for the third trimester of CSP.
| Question | Answer | Correction | | — | — | — | | 3. Algorithm to determine youngest person | C: I and II | B: II only: Algorithm I does not work correctly. In algorithm I, if two people are tied for the earliest birthday, they both sit down when they are eventually paired. | | 6. Algorithm to print integers | A and C | A and D: This algorithm displays the numbers 1, 2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 17, and 19. The number 20 is not displayed since the algorithm terminates immediately after x is assigned the value 20. | | 7. Result of iteration statements | B: The procedure returns the value of 2 * n | D: The procedure does not return the value of 2 * n. For a procedure to return 2 * n, it could initialize result to 0 and then repeatedly add 2 to result a total of n times. | | 30. Relationship between Internet and World Wide Web | A: Both the Internet and the World Wide Web refer to the same interconnected network of devices | D: The Internet is a network of interconnected networks, but the World Wide Web is an information system that is accessed via the Internet. |