WorksheetsElectronics Fusion
Total questions: 10
Worksheet time: 4mins
VLSI is an acronym for _______.
Very large Scale Integration
Varying large Scale Integration
Varying Large Scale Integrity
None of these
Integrated chip with lesser than 10 transistors is known as ___.
Small-scale integration
Medium-scale integration
Large-scale integration
Very large-scale integration
Who is the father of c ?
Guido van Rossum
James Gosling
Dennis Ritchie
Tim Berners-Lee
In which year C language was invented?
1989
1967
1972
1975
If the resistance in a circuit with constant voltage increases, the current will___
increase
decrease
constant
Not enough information
The logic gate that will have HIGH or "1" at its output when any one of its inputs is HIGH is a(n):
OR Gate
AND Gate
NOR Gate
NAND Gate
What is the power in the given circuit?
3.5 W
35 W
38 W
3.8 W
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.
#
$
;
:
#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
