Certified Associate in Python Programming (PCAP-31-03) — Question 97
Which of the following statements are true? (Choose two.)
Answer options
- A. II in ASCII stands for Information Interchange
- B. a code point is a number assigned to a given character
- C. ASCII 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 ASCII does refer to Information Interchange. Option B is also correct since a code point is indeed a numerical representation assigned to a character. Options C and D are incorrect; ASCII is not synonymous with UTF-8 as they are different encoding systems, and \e is not used to mark the end of lines.