1 |
GUI stands for: |
graphical user interface
user interface
global user interface
grammar interface
|
2 |
C language was develop in: |
1969-1973
1990-2000
1955-60
1970-80
|
3 |
Which language was developed by Dennis Ritchie ? |
Java
C
Python
COBOL
|
4 |
__________ specifies the type of variable, the range of values allowed by that variable and the kind of operations that can be performed on it: |
variable
constant
string
declaring a variable
|
5 |
_______ cannot be declared unless we mention its data type: |
variable
constant
string
declaring a variable
|
6 |
Multiple variables of same data type may also be declared in a: |
multiple
single statement
many
multiple variable
|
7 |
_________ includes specifying its data type and giving it a valid name: |
variable
constant
string
declaring a variable
|
8 |
We need to declare a ________ before we can use it in the program: |
variable
constant
string
underscore
|
9 |
Which of the following is not a valid variable name ? |
height
9A
f_name
average
|
10 |
A _________ cannot be used as a variable name: |
reserved word
simple words
stringwords
reserved variable
|
11 |
Which name must begin with a letter or an underscore, it cannot begin with a digit ? |
character
variable
constant
string
|
12 |
How many characters can be stored in a char type variable ? |
1
3
4
2
|