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: FRUGAL

A Ostentatious

B Extravagant

C Generous

D Copious

Q2:
What will be the output of the program?
#include<stdio.h>

int main()
{
    int i;
    i = printf('How r u\n');
    i = printf('%d\n', i);
    printf('%d\n', i);
    return 0;
}

A
Error: cannot assign printf to variable

B How r u
8
2

C How r u
7
2

D How r u
8
2

Q3:
Subtract the following binary numbers.
0101 1000   1010 0011   1101 1110
–0010 0011   –0011 1000   –0101 0111

A 0011  0101    0110  1010    1000  0111

B 0011  0101    0110  1010    1000  0110

C 0011  0100    0110  1010    1000  0110

D 0011  0101    0110  1011    1000  0111

Q4: Why is a fast-look-ahead carry circuit used in the 7483 4-bit full-adder?

A to make it smaller

B to speed up the circuit

C to decrease the cost

D to slow down the circuit

Q5: Find the 2's complement of –1101102.

A 0010102

B 1010102

C 1101002

D 0010012

Q6: What logic function is the sum output of a half-adder?

A AND

B exclusive-OR

C NAND

D exclusive-NOR

Q7: The binary adder circuit is designed to add ________ binary numbers at the same time.

A 6

B 2

C 4

D 8

Q8: An ALU is a multipurpose device capable of providing several different logic operations.

A True

B False

Q9: BCD arithmetic is performed using base 10 numbers.

A False

B True

Q10: A full adder has a carry-in.

A True

B False