NIMCET SERIES Computer-awareness
Data Representation
15 previous year questions.
Volume: 15 Ques
Yield: Medium
High-Yield Trend
6
2025 6
2023 3
2022 Chapter Questions 15 MCQs
01
PYQ 2022
medium
computer-awareness ID: nimcet-2
The maximum and minimum value represented in signed 16 bit 2's complement representations are
1
-16384 and 16383
2
0 and 32767
3
0 and 65535
4
-32768 and 32767
02
PYQ 2022
medium
computer-awareness ID: nimcet-2
Suppose the largest n bit number requires 'd' digits in decimal representation. Which of the following relations between 'n' and 'd' is approximately correct?
1
2
3
4
03
PYQ 2022
medium
computer-awareness ID: nimcet-2
'Floating point representation' is used to represent
1
Integers
2
Whole Numbers
3
Real Numbers
4
Boolean Values
04
PYQ 2023
medium
computer-awareness ID: nimcet-2
Suppose we have a 10-bit computer that uses 10-bit floating-point computational unit (Flot number uses IEEE floating-point arithmetic where a floating point number has 1 sign bit, 5 exponent bits, and 4 fraction bits). The representation for (plus infinity) is:
1
0 11111 0000
2
1 11111 0000
3
0 00000 1111
4
0 11111 1111
05
PYQ 2023
medium
computer-awareness ID: nimcet-2
The maximum and minimum value represented in signed 16 bit 2's complement representations are
1
-16684 and 16383
2
0 and 32767
3
0 and 65535
4
-32768 and 32767
06
PYQ 2023
medium
computer-awareness ID: nimcet-2
Equivalent of the decimal number in binary form
1
2
3
4
07
PYQ 2023
medium
computer-awareness ID: nimcet-2
What is a potential problem of 1's complement representation of numbers?
1
Binary subtractions are not possible
2
There are two different representations of zero
3
Multiplication of two numbers cannot be carried out
4
Binary additions are not possible
08
PYQ 2023
medium
computer-awareness ID: nimcet-2
Suppose we have a 10-bit computer that uses 10-bit 2's complement representation. The number representation of -35 is
1
0000100011
2
1100100011
3
1111011011
4
1111011101
09
PYQ 2023
medium
computer-awareness ID: nimcet-2
The maximum and minimum value represented in signed 16 bit 2's complement representations are
1
-16684 and 16383
2
0 and 32767
3
0 and 65535
4
-32768 and 32767
10
PYQ 2025
medium
computer-awareness ID: nimcet-2
What is the equivalent decimal value of the unsigned binary number 10101.10101?
1
51.125
2
125.25
3
25.375
4
21.65625
11
PYQ 2025
medium
computer-awareness ID: nimcet-2
Which of the following statements about ASCII and Unicode is correct?
1
ASCII uses 16 bits per character, while Unicode uses only 7 bits.
2
Unicode is backward compatible with ASCII and includes all ASCII characters in its encoding.
3
Unicode and ASCII are completely different and share no common characters.
4
ASCII can represent more characters than Unicode because it uses fewer bits per character.
12
PYQ 2025
medium
computer-awareness ID: nimcet-2
What is the hexadecimal representation of the decimal number 265?
1
0x10001001
2
0x411
3
0x190
4
0x109
13
PYQ 2025
medium
computer-awareness ID: nimcet-2
Given an unsigned 32-bit integer , which of the following C/C++ expressions correctly toggles its bits starting from position (with the least significant bit at position 0)?
Assume: is the input integer; is the starting position of the bit range (0-based, LSB at position 0); is the number of bits to toggle; and no overflow or invalid input conditions occur. Which of the following correctly toggles bits starting from position ?
1
2
3
4
x & ∼ ((1≪m)−1)≪p
14
PYQ 2025
medium
computer-awareness ID: nimcet-2
In 8-bit two's complement arithmetic, compute the result of the following addition: , . What is the resulting 8-bit binary value?
1
01110000
2
11100100
3
01110001
4
Result is invalid
15
PYQ 2025
medium
computer-awareness ID: nimcet-2
Consider a 9-bit representation. Which of the following correctly gives the smallest number that can be represented in: (i) 1's complement, (ii) 2's complement?
1
(i) -256, (ii) -255
2
(i) -255, (ii) -255
3
(i) -256, (ii) -256
4
(i) -255, (ii) -256