Font size
WorksheetsCode Crafters
Total questions: 60
Worksheet time: 30mins
The __________________ is called the brain of the computer?
Keyboard
Mouse
CPU
Monitor
What is the primary function of the CPU in a computer?
Processing data
Displaying images
Inputting commands
Storing files
Which component of a computer is responsible for executing program instructions?
Keyboard
Mouse
CPU
Monitor
What is the main function of the central processing unit (CPU) in a computer system?
Displaying images
Storing files
Processing data
Inputting commands
What is the function of the GPU in a computer system?
Processing data
Displaying images
Inputting commands
Storing files
Which component of a computer is responsible for managing memory and storage?
Keyboard
Mouse
CPU
Hard drive
What is the purpose of the motherboard in a computer?
Connecting external devices
Processing data
Displaying images
Managing power supply
What is the function of the RAM in a computer system?
Storing files
Processing data
Displaying images
Managing power supply
What is the primary function of the hard drive in a computer?
Storing files
Processing data
Displaying images
Managing power supply
Which one is not an example Secondary Storage ?
CD
Pen drive
RAM
Memory Card
ROM is a Non volatile Memory.
True
False
Integrated Circuits was used in _______________ generation.
First
Second
Third
Fourth
Who is called as the Father of the Computer ?
Von Newmann
Lady Ada Lovelace
Charles Babbage
Herman Hollerith
Machine Language is a -------- language.
4th Generation
3rd Generation
1st Generation
2nd Generation
A/an __________ converts a high level language program into machine language,line by line.
Assembler
Compiler
Interpreter
A computer network is a system of:
two or more computing devices connected to one another
Data transfer and information storage
Sharing devices like scanners
A whole lot of individual machines working on their own
Which one of the following terms refer to the most popular LAN technology
Ethernet
WAN
Internet
Intranet
Which one of the following terms refer to wireless radio communication?
Bluetooth
Bandwidth
GPS
Ethernet
The instructions that tell the computer what to do:
Hardware
Input
Software
Ooutput
The 2 types of Software are:
Operating System
System
Business
Application
Operating system for mobile devices
Netware
Unix
Android
Windows NT
Microsoft Word is an example of an operating system
False
True
What is Malware?
Software that protects your computer from viruses
Software that protects your computer from spyware and adware infections
Software that updates your computers operating system
Software that may harm your computer
Which of the following is NOT an example of antivirus software ?
Kaspersky
Panda Security
AVG
Melissa
What is the full form of malware ?
Malicious Software
Meaningful Software
Malicious Spyware
Meaningful Spyware
A computer can solve ?
Money issues
Family problems
complex calculations
thunder storms
Choose the Home row keys?
GBRT JHYU
ASDF JKL;
SDFG HIJKL
________________ computers are used for Satellite control.
Mini
Mainframe
Super
Which corporation designed the Minicomputers ?
VI Corporation
IBM Corporation
Vodafone Corporation
__________ stores the information temporarily.
RAM
ROM
External memory
all
none
CD can store upto _______ of data.
700 MB
2 TB
8 TB
all
none
The only two digits used in the binary number system are _______.
one and two
zero and one
zero and two
two and three
A bit is the smallest unit used to measure data.
True
False
Four bits is called a
Bit
Byte
Nibble
A kilobyte is
1024 bits
1024 bytes
Bits stand for
Binary Digits
Binary Datas
Bi Datas
Biz Digits
A combination of eight bits is called
Kilobytes
Gigabytes
Bytes
Terabytes
Arrange the following in ascending order
1KB 1PB 1GB 1TB 1ZB 1MB
1KB<1MB<1GB<1TB<1PB<1ZB
1KB<1MB<1GB<1PB<1zB<1TB
1KB<1MB<1PB<1MB<1ZB<1GB
1GB<1KB<1MB<1PB<1TB<1ZB
ROM is used for storing a special software called
BIOS
EXCEL
WORD
PAINT
What are the first 5 binary numbers?
1, 10, 11, 100, 101
1, 11, 111, 100, 110
1, 10, 11, 101, 111
1, 10, 100, 101, 110
Which of the following is NOT an operating system?
YouTube
Windows
MAC OS
Linux
What is the name of this software?
Mozilla
Firebird
Openra
Opera
Name this logo.
Norton Antivirus
AVG Antivirus
Mcafee
Avira
The application layer of the OSI model is
Four layer
Five layer
Seven layer
Six layer
If DOG is coded as 4157, then how would BLUE be coded?
212215
213215
212125
212521
The format identifier ‘%i’ is also used for _____ data type.
char
int
float
double
Find the output in following code
int main ()
{
int a,b ;
a= b= 4 ;
b =a++;
Printf ( " %d %d %d %d", a++, --b, ++a, b--);
}
5 3 73
5 4 5 3
6 2 6 4
Syntax Error
Find error/ output in following code
int main ()
{
int i = 0;
for ( ; ;)
printf ( "%d", i) ;
return 0;
}
O times
Infinite times
10 times
1 times
Rhombus shaped box in a flow chart is called-----
Input box
Decision box
Processing box
Start box
Step by step procedure to solve any particular task is called----
computer language
compiler
Algorithm
flowchart
how to print a and b variable of int and float respectively
scanf("%d%f",&a,&b);
printf("%d%f",a,b);
printf("%f%d",&a,&b);
printf("%f%d",&a,&b);
