NEW
Font size
WorksheetsComputer Fundamental and C Programming Concept
Total questions: 20
Worksheet time: 16mins
Who is the father of Computers?
What is the full form of CPU?
Computer Processing Unit
b) Computer Principle Unit
Central Processing Unit
Control Processing Unit
Which of the following language does the computer understand?
Computer understands only C Language
Computer understands only Assembly Language
Computer understands only Binary Language
Computer understands only BASIC
Which of the following is not a characteristic of a computer?
Versatility
Accuracy
Diligence
I.Q
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 devices provides the communication between a computer and the outer world?
Compact
I/O
Drivers
Storage
Which of the following is not a type of computer on the basis of operation?
Digital
Analog
Hybrid
Remote
Who is the father of C language?
Steve Jobs
James Gosling
Dennis Ritchie
Rasmus Lerdorf
Which of the following is not a valid C variable name?
int number;
float rate;
c) int variable_count;
d) int &main;
All keywords in C are in ____________
LowerCase letters
UpperCase letters
CamelCase letters
None of the mentioned
What is the result of logical or relational expression in C?
True or False
0 or 1
0 if an expression is false and any positive number if an expression is true
None of the mentioned
What is #include <stdio.h>?
Preprocessor directive
Inclusion directive
File inclusion directive
None of the mentioned
C preprocessors can have compiler specific features.
True
False
Depends on the standard
Depends on the platform
The C-preprocessors are specified with _________ symbol.
#
$
” ”
&
What is the sizeof(char) in a 32-bit C compiler?
1 bit
2 bits
1 Byte
2 Bytes
#include <stdio.h>
int main()
{
int y = 26;
y= 34;
printf("%d\n", y);
return 0;
}
26
26 and 34
34
None of the above
While working on Microsoft Word, which among the following is the command for “Undo”?
Ctrl +A
Ctrl +Z
Ctrl +Y
Ctrl +C
A communication system which transfers data between the components inside a computer or even between computers is known as
Bus
Wire
Knot
Line
What is the full form of ALU?
Arithmetic Logic Unit
Algebra Logic Unit
Arithmetic Local Unit
None of the Above
