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 innocuous

B immemorial

C passing

D forgetful

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=4, int=4, int=4

B int=2, int=2, int=2

C int=2, int=3, int=4

D int=3, int=3, int=3

Q3: The format used to present the logic output for the various combinations of logic inputs to a gate is called a(n):

A input logic function.

B Boolean constant.

C Boolean variable.

D truth table.

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

A VHDL is used in all PLD's.

B ADHL is used in all PLD's.

C ADHL is proprietary.

D VHDL is proprietary.

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

A NOT operation.

B AND operation.

C Comparator operation.

D OR operation.

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

A d

B a

C c

D b

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

A b

B a

C c

D d

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

A a

B b

C d

D c

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

A d

B b

C c

D a

Q10: 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.