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

A Tasty

B Discreet

C Stupid

D Feast

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

int main()
{
    float i = 2.5;
    printf('%f, %d', floor(i), ceil(i));
    return 0;
}

A 2.000000, 0

B 2.000000, 3

C 2, 3

D 2, 0

Q3: A binary sum is made up of only 1s and 0s.

A False

B True

Q4: Overflow indicators in ALU circuits indicate when add or subtract operations produce results that are too large to fit into four bits.

A True

B False

Q5: The inputs of a full adder are labeled A1B1, and Cin.

A False

B True

Q6: Larger number capacities may be obtained from 2-bit adders by paralleling them.

A False

B True

Q7: If [A] = 10 and [B] = 01, then [A] + [B] = [ ].

A False

B True

Q8: 111010002 is the 2's-complement representation of –24.

A True

B False

Q9: The look-ahead-carry adder is slower than the ripple-carry adder because it requires additional logic circuits.

A True

B False

Q10: The solution to the binary problem 1011 × 0110 is 01100110.

A False

B True