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 Endless

D Amused

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 4

C 7

D AptitudeCrack 1 7 11 0

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

A HIGH

B off

C uncertain

D LOW

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

A LOW

B HIGH

C off

D unacceptable

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

C number systems

D binary systems

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

A 0 V

B +9 V

C +1 V

D +5 V

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

A instruction manual

B diagram

C logic unit

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 = 1

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

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

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

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

A 2

B 8

C 7

D 1

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 OR

B NOR

C NAND

D AND