Certified Associate in Python Programming (PCAP-31-03) — Question 76
Which of the following statements are true? (Choose two.)
Answer options
- A. a code point is a point inside the code when execution stops immediately
- B. UTF-8 is one of the ways of representing UNICODE code points
- C. ASCII is the name of a character coding standard
- D. an escape sequence can be recognized by the # sign put in front of it
Correct answer: B, C
Explanation
Option B is correct because UTF-8 is indeed a widely used encoding for UNICODE code points. Option C is also correct as ASCII is a recognized character coding standard. Options A and D are incorrect; A misrepresents the concept of a code point, and D inaccurately describes how escape sequences are identified.