7. A question mark (?) is a REGEX character that is used to describe any single character.

a) True
b) False

b) False. The question mark (?) is a REGEX character that is used to indicate that the preceding character or group of characters is optional. To describe any single character in REGEX, the period (.) is used.