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 AptitudeCrack 1 7 11 0

B 7

C 4

D 1

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

A LOW

B uncertain

C off

D HIGH

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

A unacceptable

B LOW

C HIGH

D off

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 digital systems

B binary systems

C number systems

D analog systems

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

A 0 V

B +5 V

C +9 V

D +1 V

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

A diagram

B program

C logic unit

D instruction manual

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

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

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

C A = 1, B = 1, 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 AND

B NAND

C NOR

D OR