image not found

Oops! That page can't be found.


Directions to Solve

In the following questions choose the word which is the exact OPPOSITE of the given words.

Q1: STARTLED

A Relaxed

B Astonished

C Amused

D Endless

Q2:
What will be the output of the program?
#include<stdio.h>
#include<stdarg.h>
void fun(char *msg, ...);

int main()
{
    fun('AptitudeCrack', 1, 4, 7, 11, 0);
    return 0;
}
void fun(char *msg, ...)
{
    va_list ptr;
    int num;
    va_start(ptr, msg);
    num = va_arg(ptr, int);
    num = va_arg(ptr, int);
    printf('%d', num);
}

A 1

B AptitudeCrack 1 7 11 0

C 4

D 7

Q3:
In a negative logic system, the area represented by #3 in the given figure would be the ________ level.

A HIGH

B LOW

C uncertain

D off

Q4:
The area represented by #4 in the given figure is the ________ level.

A off

B unacceptable

C LOW

D HIGH

Q5: Other ________ are often used to interpret or represent binary quantities for the convenience of the people who work with and use these digital systems.

A binary systems

B digital systems

C analog systems

D number systems

Q6: In a positive logic system, the HIGH level is usually represented by ________.

A +9 V

B +5 V

C 0 V

D +1 V

Q7: A set of instructions for a computer is called a(n) ________.

A logic unit

B diagram

C program

D instruction manual

Q8: The output of an AND gate with three inputs, A, B, and C, is HIGH when ________.

A A = 1, B = 1, C = 1

B A = 1, B = 1, C = 0

C A = 0, B = 0, C = 0

D A = 1, B = 0, C = 1

Q9: If a 3-input NOR gate has eight input possibilities, how many of those possibilities will result in a HIGH output?

A 7

B 1

C 8

D 2

Q10: If a signal passing through a gate is inhibited by sending a LOW into one of the inputs, and the output is HIGH, the gate is a(n):

A NOR

B OR

C NAND

D AND