image not found

Oops! That page can't be found.


Directions to Solve

Each sentences below consist of a word or a phrase which is bold. It is followed by four words or phrases. Select the word or pharse which is closes to the OPPOSITE in meaning of the bold word or phrase.

Q1: Many people suffer setbacks in their career because of their inherent levity.

A seriousness

B solemnity

C religiosity

D gravity

Q2:
What will be the output of the program?
#include<stdio.h>
#define CUBE(x) (x*x*x)

int main()
{
    int a, b=3;
    a = CUBE(b++);
    printf("%d, %d\n", a, b);
    return 0;
}

A 9, 4

B 27, 4

C 27, 6

D Error

Q3: In an exclusive-OR, both inputs cannot be HIGH to provide a HIGH output.

A True

B False

Q4: Using the CPLD design environment, we can simulate any combinations of inputs and observe the resulting output to check for proper circuit operation.

A True

B False

Q5: The exclusive-OR provides a LOW input if one input or the other input is HIGH.

A True

B False

Q6: The exclusive-OR is written in a Boolean equation as a plus sign with a circle around it.

A True

B False

Q7: Parity generator and checker circuits are available in single IC packages.

A True

B False

Q8: The Ex-NOR is sometimes called the equality gate.

A True

B False

Q9: A parity checker is constructed in the same way as a parity generator, except that in a 4-bit system there must be five inputs, and the output is used as the error indicator.

A True

B False

Q10: In a parity generator circuit, an error is signaled on an error indicator.

A True

B False