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: In a literary work obscurity cab be a virtue.

A clarity

B precision

C definiteness

D specificity

Q2: What will be the output of the program?
#include<stdio.h>
#define str(x) #x
#define Xstr(x) str(x)
#define oper multiply

int main()
{
    char *opername = Xstr(oper);
    printf('%s\n', opername);
    return 0;
}

A Error: in macro substitution

B Error: invalid reference 'x' in macro

C print 'multiply'

D No output

Q3: Boolean multiplication is symbolized by A + B.

A True

B False

Q4: VHDL is not a new language.

A True

B False

Q5: How many 3-line-to-8-line decoders are required for a 1-of-32 decoder?

A 1

B 2

C 4

D 8

Q6:
Which of the figures shown below represents the exclusive-NOR gate?

A a

B b

C c

D d

Q7:
Which of the circuits in figure (a to d) is the sum-of-products implementation of figure (e)?

A a

B b

C c

D d

Q8:
For the device shown here, let all D inputs be LOW, both S inputs be HIGH, and the input be LOW. What is the status of the Y output?

A LOW

B HIGH

C Don't Care

D Cannot be determined

Q9:
For the device shown here, let all D inputs be LOW, both S inputs be HIGH, and the input be HIGH. What is the status of the Y output?

A LOW

B HIGH

C Don't Care

D Cannot be determined

Q10: Convert BCD 0001 0010 0110 to binary.

A 1111110

B 1111101

C 1111000

D 1111111