Certified Associate in Python Programming (PCAP) — Question 126
Which of the following statements are true? (Choose two.)
Answer options
- A. an escape sequence can be recognized by the / sign put in front of it
- B. II in ASCII stands for Internal Information
- C. ASCII is a subset of UNICODE
- D. a code point is a number assigned to a given character
Correct answer: C, D
Explanation
The correct answers are C and D because ASCII is indeed a subset of UNICODE, which includes a broader range of characters. Additionally, a code point is accurately defined as a numerical value assigned to each character in a character set. Options A and B are incorrect; A misrepresents how escape sequences are identified, and B incorrectly defines II in ASCII.