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: He abandoned his family.

A supported

B pleased

C saved

D encouraged

Q2: What will be the output of the program?
#include<stdio.h>
#define MIN(x, y) (x<y)? x : y;
int main()
{
    int x=3, y=4, z;
    z = MIN(x+y/2, y-1);
    if(z > 0)
        printf('%d\n', z);
    return 0;
}

A 3

B No output

C 0

D 4

Q3: The comments in ADHL are enclosed between # characters.

A False

B True

Q4: The expressions, , are equivalent.

A True

B False

Q5: The output of a NAND gate is the inverse of the output for an AND gate for all possible input combinations.

A False

B True

Q6: The output of a NAND gate is the inverse of the output for an AND gate for all possible input combinations.

A True

B False

Q7: NOR gates can be used to construct AND gates.

A True

B False

Q8: The commutative law of Boolean addition states that A + B = A · B.

A True

B False

Q9:
The figure given below is an example of the implementation of AND-OR-INVERT logic.

A False

B True

Q10: The OR gate performs like two switches wired in a series.

A True

B False