NEW
Font size
WorksheetsStructured Programming
Total questions: 20
Worksheet time: 10mins
Who is the father of Computers?
James Gosling
Charles Babbage
Dennis Ritchie
Bjarne Stroustrup
What is the full form of CPU?
Computer Processing Unit
Computer Principle Unit
Central Processing Unit
Control Processing Unit
Which of the following is the smallest unit of data in a computer?
Bit
KB
Nibble
Byte
Which of the following is designed to control the operations of a computer?
User
Application Software
System Software
Utility Software
Which of the following is known as the language made up of binary-coded instructions?
High Level
Basic
C
Machine Level
What is the binary equivalent of 8?
0001
0101
1000
1011
Which of the following is an output device?
Keyboard
Mouse
Scanner
Printer
What is the meaning of the Booting in the system?
Restarting the computer
Installing the program
Scanning
To Turn off
Which type of program acts as an intermediary between a user of a computer and the computer hardware?
Operating System
User Thread
Application program
Utility software
What kind of language can computer understand?
Normal Language
Binary Language
Assembly Language
High-level language
_______________is a volatile memory
ROM
RAM
HDD
SSD
Identify the device shown in the image
Scanner
Type Writer
Plotter
Printer
Identify the browser logo
Mozilla FireFox
Opera
Google chrome
Microsoft Edge
Identify which is a browser in the following images?
WWW stands for
World Wide Web
World Wild Web
Word Wide Web
Web World Wide
Which of the following is not a valid C variable name?
int number;
float rate;
int variable_count;
int $main;
Which is valid C expression?
int my_num = 100,000;
int my_num = 100000;
int my num = 1000;
int $my_num = 10000;
The C-preprocessors are specified with _________ symbol.
#
$
” ”
&
What will happen if the following C code is executed?
#include <stdio.h>int main()
{
int main = 3;
printf("%d", main);
return 0;
}
It will cause a compile-time error
It will cause a run-time error
It will run without any error and prints 3
It will experience infinite looping
A program in HTML can be rendered and read by -
Web browser
Server
Interpreter
None of the above
