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: The moment when jadish got order of promotion, as General Manager, was a memorable occasion for him and his family.

A forgetful

B immemorial

C passing

D innocuous

Q2:
What will be the output of the program?
#include<stdio.h>
#define PRINT(int) printf("int=%d, ", int);

int main()
{
    int x=2, y=3, z=4;   
    PRINT(x);
    PRINT(y);
    PRINT(z);
    return 0;
}

A int=3, int=3, int=3

B int=2, int=3, int=4

C int=2, int=2, int=2

D int=4, int=4, int=4

Q3: What is the basic difference between AHDL and VHDL?

A ADHL is used in all PLD's.

B VHDL is proprietary.

C ADHL is proprietary.

D VHDL is used in all PLD's.

Q4: A small circle on the output of a logic gate is used to represent the:

A Comparator operation.

B OR operation.

C AND operation.

D NOT operation.

Q5:
For a three-input OR gate, with the input waveforms as shown below, which output waveform is correct?

A c

B a

C b

D d

Q6:
Which of the figures given below represents a NOR gate?

A a

B d

C b

D c

Q7:
Which of the figures (a to d) is the DeMorgan equivalent of Figure (e)?

A a

B b

C d

D c

Q8:
Which of the figures in figure (a to d) is equivalent to figure (e)?

A b

B a

C d

D c

Q9: In VHDL, the mode of a port does not define:

A an input.

B an output.

C the TYPE of the bit.

D both an input and an output.

Q10: Which of the following equations would accurately describe a 4-input OR gate when A = 1, B = 1, C = 0, and D = 0?

A 1 + 1 + 0 + 0 = 1

B 1 + 1 + 0 + 0 = 01

C 1 + 1 + 0 + 0 = 0

D 1 + 1 + 0 + 0 = 00