Certified Associate in Python Programming (PCAP-31-03) — Question 18
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. ASCII is a subset of UNICODE
- C. II in ASCII stands for Internal Information
- D. a code point is a number assigned to a given character
Correct answer: B, D
Explanation
Option B is correct because ASCII is indeed a subset of UNICODE, allowing for backward compatibility. Option D is also correct as a code point specifically refers to the numerical value assigned to each character in character encoding systems. Options A and C are incorrect; A misrepresents how escape sequences are recognized, and C incorrectly defines II in ASCII, which does not stand for Internal Information.