Practice Question

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — SSC JE 2026 – IMD Scientific Assistant – Computer Science

AI summary & chapters

AI Summary

An AI-generated summary of this video lecture.

This video explains a GATE-2005 floating-point representation problem using a custom 16-bit format: one sign bit, an excess-64 exponent field (bits 8–14), and a mantissa field (bits 0–7). The instructor first presents the unnormalized hexadecimal question for 0.239 × 2^13, showing the biased exponent calculation B.E = TE + Bias = 13 + 64 = 77, and identifies option (D) 4D3D as the answer. The slide then transitions to a normalized-representation question involving an implicit 1 preceding the binary point, with options (A) 0A20, (B) 1134, (C) 4DD0, and (D) 4AE8. The instructor converts the decimal fraction to binary using repeated multiplication by 2, normalizes it to the form 1.xxxx × 2^E, and computes the biased exponent. The final normalized representation is determined to be option (D) 4AE8.

Chapters

  1. 0:00 2:00 00:00-02:00

    The video opens with the GATE-2005 question header and a bit-field diagram labeled 'Sign bit', 'Excess - 64 Exponent', and 'Mantissa' across positions 15 through 0. The instructor writes the binary expansion of 0.239 × 2^13, underlines it as M, and calculates the biased exponent using 'B.E = TE + Bias = 13 + 64 = 77'. Option (D) 4D3D is ticked as the correct answer for the unnormalized hexadecimal representation. The slide then transitions to a normalized-representation question mentioning 'an implicit 1 preceding the binary (radix) point' with new options (A) 0A20, (B) 1134, (C) 4DD0, and (D) 4AE8.

  2. 2:00 4:03 02:00-04:03

    The instructor works through the normalized representation by converting the decimal fraction to binary via repeated multiplication by 2, then normalizing it to the form 1.xxxx × 2^E. The biased exponent is calculated as 13 + 64 = 79 (0x4F), and the mantissa bits are filled into the format diagram. The final normalized representation is determined to be option (D) 4AE8, which is underlined as the correct answer. The teaching progression emphasizes using repeated multiplication for fractional decimal-to-binary conversion, normalizing to 1.xxxx × 2^E, and adding the excess value (64) to find the biased exponent.

The core concept is converting a decimal number into a custom floating-point format with an excess-64 exponent bias. The key steps are: (1) convert the decimal fraction to binary using repeated multiplication by 2, (2) normalize the binary number to the form 1.xxxx × 2^E by shifting the radix point, (3) calculate the biased exponent as actual exponent plus 64, and (4) assemble the sign bit, biased exponent bits, and mantissa bits into the 16-bit format. The video distinguishes between unnormalized representation (where the mantissa is a pure fraction in sign-magnitude form) and normalized representation (with an implicit 1 preceding the binary point). The worked example uses 0.239 × 2^13, yielding biased exponent 77 for the unnormalized case and demonstrating the normalization process for the second question.

Loading lesson…