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: AWARE

A Sure

B Ignorant

C Uncertain

D Doubtful

Q2:
Point out the error if any in the following program (Turbo C).
#include<stdio.h>
#include<stdarg.h>
void display(int num, ...);

int main()
{
    display(4, 'A', 'a', 'b', 'c');
    return 0;
}
void display(int num, ...)
{
    char c; int j;
    va_list ptr;
    va_start(ptr, num);
    for(j=1; j<=num; j++)
    {
        c = va_arg(ptr, char);
        printf('%c', c);
    }
}

A No error and print 4 A a b c

B Error: unknown variable ptr

C Error: Lvalue required for parameter

D No error and print A a b c

Q3: The basic types of programmable arrays are made up of ________.

A AND gates

B OR gates

C NAND and NOR gates

D AND gates and OR gates

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

A OR gate

B AND gate

C NOR gate

D NOT operation

Q5: CMOS IC packages are available in ________.

A DIP configuration

B SOIC configuration

C DIP and SOIC configurations

D neither DIP nor SOIC configurations

Q6: Which of the following is not a basic Boolean operation?

A OR

B NOT

C AND

D FOR

Q7: Which of the following gates is described by the expression ?

A OR

B AND

C NOR

D NAND

Q8: What is the Boolean expression for a four-input OR gate?

A Y = A + B + C + D

B Y = A· B · C · D

C Y = A – B – C – D

D Y = A $ B $ C $ D

Q9: How many truth table entries are necessary for a four-input circuit?

A 4

B 8

C 12

D 16

Q10: How many entries would a truth table for a four-input NAND gate have?

A 2

B 8

C 16

D 32