

MCQOPTIONS
Saved Bookmarks
This section includes 10 Mcqs, each offering curated multiple-choice questions to sharpen your Visual Basic knowledge and support exam preparation. Choose a topic below to get started.
1. |
The variable name is also termed as ___________ |
A. | Vname |
B. | Alterable |
C. | Identifier |
D. | Uniform |
Answer» D. Uniform | |
2. |
The Char data type can store ___________ |
A. | One Unicode character |
B. | One ASCII character |
C. | One bit |
D. | One Byte |
Answer» B. One ASCII character | |
3. |
The range of Integer data type is ___________ to ___________ |
A. | 2,147,483,648 to 2,147,483,647 |
B. | 9,223,372,036,854,775,808 to9,223,372,036,854,775,807 |
C. | +/ 4.94065645841247 X 10<sup> 324</sup> to+/ 1.79769313486231 X 10<sup>308</sup> |
D. | 32,768 to 32,767 |
Answer» B. 9,223,372,036,854,775,808 to9,223,372,036,854,775,807 | |
4. |
String data type can store from zero to ___________ Unicode characters. |
A. | 2 million |
B. | 2 billion |
C. | 1 billion |
D. | 1 million |
Answer» C. 1 billion | |
5. |
___________ data type can store any type of data. |
A. | Object |
B. | Universal |
C. | DataType |
D. | Common |
Answer» B. Universal | |
6. |
Declaring a variable tell the computer to allocate a memory space that can be accessed by the variable name. The size of the memory space depends on? |
A. | Length of variable name |
B. | Data type of the variable |
C. | Location of variable in program |
D. | Size of memory in computer |
Answer» C. Location of variable in program | |
7. |
dblMy Age what is the problem with this variable name? |
A. | Starts with uppercase character |
B. | Contains uppercase characters |
C. | Contains a space |
D. | Contains reserved word dbl |
Answer» D. Contains reserved word dbl | |
8. |
___________ is the universal coding scheme for characters. |
A. | ASCII |
B. | Unicode |
C. | Binary |
D. | EBCDIC |
Answer» C. Binary | |
9. |
___________ determines the type of data stored in a variable. |
A. | Function type |
B. | Info Type |
C. | Variable type |
D. | Data Type |
Answer» E. | |
10. |
___________ is used to store temporary data by programmers. |
A. | Addressed Location |
B. | Variable |
C. | Pointer |
D. | RAM |
Answer» C. Pointer | |