Computer Applications
Out of the following options, what is shown in the given illustration.
| Codes | Characters |
|---|---|
| 48 - 57 | 0 - 9 |
| 65 - 90 | A - Z |
| 97 - 122 | a - z |
| 32 | Blank |
- Tokens
- ASCII Codes
- Literals
- Identifiers
Values & Data Types Java
9 Likes
Answer
ASCII Codes
Reason — The given table shows the numeric values of characters such as digits, uppercase letters, lowercase letters, and space. These values are part of the ASCII (American Standard Code for Information Interchange) system. ASCII assigns a unique numeric code to each character, which helps the computer to store and process characters as numbers.
Answered By
3 Likes
Related Questions
How many bytes does a char data type occupy in the memory?
- 2
- 8
- 4
- 16
Which of the following is a non-primitive data type?
- int
- double
- char
- String
Which of the following is non-numeric data type?
- boolean
- int
- float
- double
Which of the following ASCII code range is applicable for lowercase letters?
- 65 - 90
- 90 - 115
- 97 - 122
- 95 - 110