Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Electronics Fusion

Total questions: 10

Worksheet time: 4mins

Name
Class
Date
1.

VLSI is an acronym for _______.

a)

Very large Scale Integration

b)

Varying large Scale Integration

c)

Varying Large Scale Integrity

d)

None of these

2.

Integrated chip with lesser than 10 transistors is known as ___.

a)

Small-scale integration

b)

Medium-scale integration

c)

Large-scale integration

d)

Very large-scale integration

3.

Who is the father of c ?

a)

Guido van Rossum

b)

James Gosling

c)

Dennis Ritchie

d)

Tim Berners-Lee

4.

In which year C language was invented?

a)

1989

b)

1967

c)

1972

d)

1975

5.

If the resistance in a circuit with constant voltage increases, the current will___

a)

increase

b)

decrease

c)

constant

d)

Not enough information

6.

The logic gate that will have HIGH or "1" at its output when any one of its inputs is HIGH is a(n): 

a)

OR Gate

b)

AND Gate

c)

NOR Gate

d)

NAND Gate

7.

What is the power in the given circuit?

a)

3.5 W

b)

35 W

c)

38 W

d)

3.8 W

8.

Which is valid C expression?

a)

int my_num = 100,000;

b)

int my_num = 100000;

c)

int my num = 1000;

d)

int $my_num = 10000;

9.

The C-preprocessors are specified with _________ symbol.

a)

#

b)

$

c)

;

d)

:

10.

#include <stdio.h>

int main()

{

int main = 3;

printf("%d", main);

return 0;

}

a)

It will cause a compile-time error

b)

It will cause a run-time error

c)

It will run without any error and prints 3

d)

It will experience infinite looping