image not found

Oops! That page can't be found.


Directions to Solve

In the following questions choose the word which is the exact OPPOSITE of the given words.

Q1: COMMON

A Small

B Petty

C Rare

D Poor

Q2:
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>

int main()
{
    void display(int num, ...);
    display(4, 12.5, 13.5, 14.5, 44.3);
    return 0;
}
void display(int num, ...)
{
    float c; int j;
    va_list ptr;
    va_start(ptr, num);
    for(j=1; j<=num; j++)
    {
        c = va_arg(ptr, float);
        printf('%f', c);
    }
}

A Error: var c data type mismatch

B No error and Nothing will print

C No error

D Error: invalid va_list declaration

Q3: An inverter output is the complement of its input.

A True

B False

Q4: It is important to memorize logic symbols, Boolean equations, and truth tables for logic gates.

A True

B False

Q5:
The gates in this figure are implemented using TTL logic. If the input of the inverter is open, and you apply logic pulses to point B, the output of the AND gate will be ________.

A a steady LOW

B a steady HIGH

C an undefined level

D pulses

Q6:
The gates in this figure are implemented using TTL logic. If the output of the inverter is open, and you apply logic pulses to point B, the output of the AND gate will be ________.

A a steady LOW

B a steady HIGH

C an undefined level

D pulses

Q7: If A is LOW or B is LOW or BOTH are LOW, then X is LOW. If A is HIGH and B is HIGH, then X is HIGH. These rules specify the operation of a(n) ________.

A AND gate

B OR gate

C NAND gate

D XOR gate

Q8: A major advantage of ECL logic over TTL and CMOS is ________.

A low power dissipation

B high speed

C both low power dissipation and high speed

D neither low power dissipation nor high speed

Q9: The output of an XOR gate is HIGH only when ________.

A both inputs = 0

B both inputs = 1

C the two inputs are unequal

D both inputs are undefined

Q10: A 2-input gate that can be used to pass a digital waveform unchanged at certain times and inverted at other times is a(n) ________.

A AND gate

B OR gate

C NAND gate

D XOR gate