WorksheetsMindSpace Computers C Test-5
Total questions: 15
Worksheet time: 11mins
What is full form of stdio.h?
Standard Input Output Header File
Start Input Output Header File
Stop Input Output Header File
Started Input Output Header File
What is full form of conio.h?
Console Input Output Header File
Constant Input Output Header File
Continue Input Output Header File
Consider Input Output Header File
stdio.h header file supports which statements?
scanf() and printf()
clrscr() and getch()
conio.h header file supports which statements?
scanf() and printf()
clrscr() and getch()
Which of the following comment symbol does not required END symbol?
//
/* */
68 / 20 = ?
3
3.4
6
8
68 % 20 = ?
3
3.4
6
8
Writing comments (documentation) is optional.
True
False
main() is the only compulsory part of every C Program.
True
False
Which data type is suitable for percentage = 89.5?
int
float
char
Which data type is suitable for rollno = 13?
int
float
char
Identify correct printf() statement:
printf("Age = %d",age);
print("Age = %d",age);
printf("Age = %d,age");
printf(Age = %d,age);
Identify correct scanf() statement:
scan("%d",&age);
scanf("%d",age);
scanf("%d",&age);
scanf("%d",age&);
C is ------ .
Programming Language
Communication Language
Regional Language
Which function is used to clear the output screen?
getch()
clrscr()
clearscreen()
scrclr()
