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

A Discomfort

B Miscomfort

C Uncomfort

D None Of These

Q2:
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>
void display(char *s, ...);
void show(char *t, ...);

int main()
{
    display('Hello', 4, 12, 13, 14, 44);
    return 0;
}
void display(char *s, ...)
{
    show(s, ...);
}
void show(char *t, ...)
{
    int a;
    va_list ptr;
    va_start(ptr, s);
    a = va_arg(ptr, int);
    printf('%f', a);
}

A No error

B Error: Rvalue required for t

C Error: invalid function show() call

D Error: invalid function display() call

Q3: The number of input combinations for a 4-input gate is ________.

A 9

B 8

C 15

D 16

Q4: When does the output of a NOR gate = 0?

A Whenever a 0 is present at an input

B Only when all inputs = 0

C Whenever a 1 is present at an input

D Only when all inputs = 1

Q5:
Convert the following SOP expression to an equivalent POS expression.

A

B

C

D

Q6: Determine the values of A, B, C, and D that make the sum term equal to zero.

A A = 1, B = 0, C = 0, D = 0

B A = 1, B = 0, C = 1, D = 0

C A = 0, B = 1, C = 0, D = 0

D A = 1, B = 0, C = 1, D = 1

Q7: Which of the following expressions is in the sum-of-products (SOP) form?

A (A + B)(C + D)

B (A)B(CD)

C AB(CD)

D AB + CD

Q8:
Derive the Boolean expression for the logic circuit shown below:

A

B

C

D

Q9:
From the truth table below, determine the standard SOP expression.

A

B

C

D

Q10: One of De Morgan's theorems states that . Simply stated, this means that logically there is no difference between:

A a NOR and an AND gate with inverted inputs

B a NAND and an OR gate with inverted inputs

C an AND and a NOR gate with inverted inputs

D a NOR and a NAND gate with inverted inputs