Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Tests  >  Question Bank for GATE Computer Science Engineering  >  Test: Number System- 2 - Computer Science Engineering (CSE) MCQ

Test: Number System- 2 - Computer Science Engineering (CSE) MCQ


Test Description

15 Questions MCQ Test Question Bank for GATE Computer Science Engineering - Test: Number System- 2

Test: Number System- 2 for Computer Science Engineering (CSE) 2024 is part of Question Bank for GATE Computer Science Engineering preparation. The Test: Number System- 2 questions and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus.The Test: Number System- 2 MCQs are made for Computer Science Engineering (CSE) 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: Number System- 2 below.
Solutions of Test: Number System- 2 questions in English are available as part of our Question Bank for GATE Computer Science Engineering for Computer Science Engineering (CSE) & Test: Number System- 2 solutions in Hindi for Question Bank for GATE Computer Science Engineering course. Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free. Attempt Test: Number System- 2 | 15 questions in 45 minutes | Mock test for Computer Science Engineering (CSE) preparation | Free important questions MCQ to study Question Bank for GATE Computer Science Engineering for Computer Science Engineering (CSE) Exam | Download free PDF with solutions
Test: Number System- 2 - Question 1

If (110)x = (132)4, then x =

Detailed Solution for Test: Number System- 2 - Question 1

Given:

(110)x = (132)4,

The decimal equivalent of this number will be:

1 x x2 + 1 x x1 + 0 x x0 = 1 x 42 + 3 x 4 + 2 x 40

x2 + x + 0 = 16 + 12 + 2

x2 + x - 30 = 0 

On solving this quadratic equation we'll get:

x = 5, -6

Base can't be a negative so;

x = 5

Test: Number System- 2 - Question 2

If (28)in base x number system is equal to (37)y in base y number system, the possible values of x and y are:

Detailed Solution for Test: Number System- 2 - Question 2

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: Number System- 2 - Question 3

Suppose the largest n-bit binary number requires ‘d’ digits in decimal representation. Which of the following relation between ‘n’ and 'd’ is approximately correct?

Detailed Solution for Test: Number System- 2 - Question 3

Test: Number System- 2 - Question 4

Let A = 1111 1010 and B = 0000 1010 be two 8-bit 2’s complement numbers. Their product in 2’s complement is

Detailed Solution for Test: Number System- 2 - Question 4

A = 11111010
Since MSB is 1 hence number is negative i.e. - (00000110)
= -(00000110)
A = - 6
B = 00001010,
There is number 2’s complement representation for positive number B = +10 
A x B = 10 x (- 6)
= - 60
Binary representation of - 60 = 00111100 
Now take 2’s complement = 11000100

Test: Number System- 2 - Question 5

Which of the following 4-bit numbers equals its 1’s complement?

Detailed Solution for Test: Number System- 2 - Question 5

Since in 1 ’s complete every bits get complemented so, no such number exist whose complement is same while in 2’s complement 8 and 0 are exist.

Test: Number System- 2 - Question 6

If the decimal number is 3.248 x 104 then its 32 bit equivalent floating number is

Detailed Solution for Test: Number System- 2 - Question 6

Decimal number 3.248 x 104
So sign bit should be 0 since number is positive. 
3.248 x 104 = 32480
= 1111110111000002 
= 1.11111011100000 x 214
In normalized representation:
Biased = 14 + 127 = 14
= 100011012
So, number is

Test: Number System- 2 - Question 7

A computer uses 8 digit mantissa and 2 digit exponent. If a = 0.052 and b = 28 E + 11, then b + a - b will

Detailed Solution for Test: Number System- 2 - Question 7

a = 0.052 and b = 28 E + 1
So, b + a - b will b
a = 0.52 exponent
= -1
b = 28 E + 11 mantissa
= 0,28 exponent
= 13
b + a = 28000000000000 E - 1 + 0.52 E-1 
= 280000000000.52 E - 1
With is equal to 28 E + 11 
So, b - b = 0

Test: Number System- 2 - Question 8

Consider the following floating point format;

S : Sign bit
E : Exponent
M : Mantissa
The value of floating point number in this system is, V = (-1 )s x 2E-127 x 1.F
Then what is the corresponding decimal value if the floating point stored is: 3F800000

Detailed Solution for Test: Number System- 2 - Question 8

Test: Number System- 2 - Question 9

A single-precision floating point number contains the sequence of bits 100011111 00000000001 000000000000, Information is stored in the following left-to-right order, sign bit, exponent (bias 127) and mantissa. Which of the following representation in decimal is equivalent?

Detailed Solution for Test: Number System- 2 - Question 9

Test: Number System- 2 - Question 10

 Sign extension is a step in

Detailed Solution for Test: Number System- 2 - Question 10

Sign extension is the operation, in computer arithmetic, of increasing the number of bits of a binary number while preserving the number’s sign (positive/negative) and value.

Test: Number System- 2 - Question 11

 The decimal number 0.239 x 213 has the following hexadecimal representation (without normalization and rounding off:

Detailed Solution for Test: Number System- 2 - Question 11

The decimal number is 0.239 x 213
We have to find hexadecimal representation without normalization.
Biased exponent = 13 + 64 = 77
Representing 77 in binary (77)10 = (1001101)2
Representing mantissa in binary
senting mantissa in binary (0.239)10 = 0.00111101000101 

Test: Number System- 2 - Question 12

The vales of x and y, if (x567)8 + (2yx5)8 = (71 yx)8 is

Detailed Solution for Test: Number System- 2 - Question 12

(x 567)8 
(2yx5)8 
(71yx)8
x will be 4 and y will be 3.

Test: Number System- 2 - Question 13

A decimal number has 25 digits. The numberof bits needed for its equivalent binary representation is, approximately,

Detailed Solution for Test: Number System- 2 - Question 13

Test: Number System- 2 - Question 14

The greatest negative number which can be stored in computer that has 8-bit work length and uses 2's complement arithmetic is

Detailed Solution for Test: Number System- 2 - Question 14

Smallest number stored in 8 bit 2’s complement arithm etic is -2n-1
=-28- 1 
= -128

Test: Number System- 2 - Question 15

In the given network of AND

‘F' will be written as:

Detailed Solution for Test: Number System- 2 - Question 15

F will represents x0 x1 x2 .... xn-1 xn.

63 videos|7 docs|165 tests
Information about Test: Number System- 2 Page
In this test you can find the Exam questions for Test: Number System- 2 solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Number System- 2, EduRev gives you an ample number of Online tests for practice

Top Courses for Computer Science Engineering (CSE)

Download as PDF

Top Courses for Computer Science Engineering (CSE)