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 Amused

B Relaxed

C Endless

D Astonished

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 LOW

B uncertain

C HIGH

D off

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

A HIGH

B off

C unacceptable

D LOW

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

B number systems

C binary systems

D digital systems

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

A +1 V

B +9 V

C 0 V

D +5 V

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

A instruction manual

B logic unit

C diagram

D program

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

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

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

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

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

B 8

C 2

D 7

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 NAND

C OR

D AND