wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Computer Fundamental and C Programming Concept

Total questions: 20

Worksheet time: 16mins

Name
Class
Date
1.

Who is the father of Computers?

a)
Charles Babbage
b)
Bill Gates
c)
Steve Jobs
d)
Alan Turing
2.

What is the full form of CPU?

a)

Computer Processing Unit

b)

b) Computer Principle Unit

c)

Central Processing Unit

d)

Control Processing Unit

3.

Which of the following language does the computer understand?

a)

Computer understands only C Language

b)


Computer understands only Assembly Language

c)


Computer understands only Binary Language

d)

Computer understands only BASIC

4.

Which of the following is not a characteristic of a computer?

a)

Versatility

b)

Accuracy

c)

Diligence

d)

I.Q

5.

Which of the following is the smallest unit of data in a computer?

a)

Bit

b)

KB

c)

Nibble

d)

Byte

6.

Which of the following is designed to control the operations of a computer?

a)

User

b)

Application Software

c)

System Software

d)

Utility Software

7.

Which of the following devices provides the communication between a computer and the outer world?

a)

Compact

b)

I/O

c)

Drivers

d)

Storage

8.

Which of the following is not a type of computer on the basis of operation?

a)

Digital

b)

Analog

c)

Hybrid

d)

Remote

9.

Who is the father of C language?

a)

Steve Jobs

b)

James Gosling

c)

Dennis Ritchie

d)

Rasmus Lerdorf

10.

Which of the following is not a valid C variable name?

a)

int number;

b)

float rate;

c)

c) int variable_count;

d)

d) int &main;

11.

All keywords in C are in ____________

a)

LowerCase letters

b)

UpperCase letters

c)

CamelCase letters

d)

None of the mentioned

12.

What is the result of logical or relational expression in C?

a)

True or False

b)

0 or 1

c)

0 if an expression is false and any positive number if an expression is true

d)

None of the mentioned

13.

What is #include <stdio.h>?

a)

Preprocessor directive

b)

Inclusion directive

c)

File inclusion directive

d)

None of the mentioned

14.

C preprocessors can have compiler specific features.

a)

True

b)

False

c)

Depends on the standard

d)

Depends on the platform

15.

The C-preprocessors are specified with _________ symbol.

a)

#

b)

$

c)

” ”

d)

&

16.

What is the sizeof(char) in a 32-bit C compiler?

a)

1 bit

b)

2 bits

c)

1 Byte

d)

2 Bytes

17.
  1. #include <stdio.h>

  2. int main()

  3. {

  4. int y = 26;

  5. y= 34;

  6. printf("%d\n", y);

  7. return 0;

  8. }

a)

26

b)

26 and 34

c)

34

d)

None of the above

18.

While working on Microsoft Word, which among the following is the command for “Undo”?

a)

Ctrl +A

b)

Ctrl +Z

c)

Ctrl +Y

d)

Ctrl +C

19.

A communication system which transfers data between the components inside a computer  or even between computers is known as

a)

Bus

b)

Wire

c)

Knot

d)

Line

20.

What is the full form of ALU?

a)

Arithmetic Logic Unit

b)

Algebra Logic Unit

c)

Arithmetic Local Unit

d)

None of the Above