ASCII Practice Questions and Answers
- What is the ASCII value of 'Z'?
Answer: 90
- What character does ASCII 97 represent?
Answer: 'a'
- Write the ASCII values of the string "Hi!".
Answer:
'H' → 72
'i' → 105
'!' → 33
- What is the binary representation of 'C'?
Answer: 01000011
- Match the following:
- 65 →
'A'
- 98 →
'b'
- 33 →
'!'
- 10 →
Line Feed (LF) / Newline