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: They took note of humility of the visiting dignitary.

A grandeur

B arrogance

C friendliness

D decency

Q2:
What will be the output of the program?
#include<stdio.h>
#define SWAP(a, b) int t; t=a, a=b, b=t;
int main()
{
    int a=10, b=12;
    SWAP(a, b);
    printf("a = %d, b = %d\n", a, b);
    return 0;
}

A a = 10, b = 12

B a = 12, b = 10

C Error: Declaration not allowed in macro

D Error: Undefined symbol 't'

Q3: Which of the examples below expresses the associative law of addition:

A A + (B + C) = (A + B) + C

B A + (B + C) = A + (BC)

C A(BC) = (AB) + C

D ABC = A + B + C

Q4: How are the statements between BEGIN and END not evaluated in VHDL?

A Constantly

B Simultaneously

C Concurrently

D Sequentially

Q5:
Which logic gate does this truth table describe?

A AND

B OR

C NAND

D NOR

Q6:
For a 3-input NAND gate, with the input waveforms as shown below, which output waveform is correct?

A a

B b

C c

D d

Q7:
Which of the figures given below represents a NAND gate?

A a

B b

C c

D d

Q8:
Which timing diagram shown below is correct for an inverter?

A a

B b

C c

D d

Q9: A NOR gate with one HIGH input and one LOW input:

A will output a HIGH

B functions as an AND

C will not function

D will output a LOW

Q10: A NAND gate has:

A active-LOW inputs and an active-HIGH output.

B active-LOW inputs and an active-LOW output.

C active-HIGH inputs and an active-HIGH output.

D active-HIGH inputs and an active-LOW output.