Certified Associate in Python Programming (PCAP) — Question 59
Which of the following statements are true? (Choose two.)
Answer options
- A. II in ACII stands for Information Interchange
- B. a code point is a number assigned to a given character
- C. ACII is synonymous with UTF-8
- D. \e is an escape sequence used to mark the end of lines
Correct answer: A, B
Explanation
Option A is correct because II in ACII indeed stands for Information Interchange. Option B is also correct as a code point is a numerical designation for a character. However, Option C is incorrect because ACII and UTF-8 are not the same; ACII is an older standard while UTF-8 is a more modern encoding. Option D is wrong because \e is not used to signify the end of lines.