Font size
WorksheetsComputer programming for 2nd chap.
Total questions: 12
Worksheet time: 6mins
Which is true statement about C ?
Difficult to learn.
It produces less no. Of programs.
It is structured language.
It cannot handle low level activities.
Who is the developer of C language?
Kem Thompson.
Martin Richards.
Dennis Ritchie.
Jim Devis.
'#' what is the name of given symbol
Exclamation mark.
Colon.
Number sign.
Underscore.
There are ........... keywords in C .
63
54
32
26
Boolean literals are used to store.......
The decimal value .
The true or false values by using 1 and 0 .
The character values.
The integer values.
Which of the following is not comes under identifier ?
Function
Variable name
Keyword
Template
Strings are always enclosed with ........ sign.
Colon
Semicolon
Double quotes
Underscore
The operator which required 3 operands to act upon.....
Unary operator
Ternary operator
Bitwise operator
Binary operator
Memory size or space required to store unsigned long int .....
2 bits
4 bits
2 bytes
4 bytes
Which is correct syntax for declaring the variable.
variablename datatype;
datatype variablename;
datatype variablename:
variablename= value;
variablename=value;
In above syntax which type of operator has used?
Bitwise operator
Relational operator
Conditional operator
Logical operator
.......... function is used to print the given information on the output screen
scanf
getch
clrscr
printf
