Number Systems and Data Representation MCQs

महत्वपूर्ण बहुविकल्पीय प्रश्नों का अभ्यास करें। उत्तर, व्याख्या, विषय और परीक्षा टैग के साथ।

Number Systems and Data Representation MCQs

श्रेणी: Computer Awareness | विषय: Number Systems and Data Representation

40 प्रश्न
21
Number Systems and Data Representation • Number Systems
बाइनरी संख्या (110101)₂ का दशमलव मान क्या है? What is the decimal equivalent of the binary number (110101)₂?
सही उत्तर: B Correct Answer: B
(110101)₂ = 32 + 16 + 4 + 1 = 53। प्रत्येक बिट का भार दाईं ओर से क्रमशः 1, 2, 4, 8, 16 और 32 होता है।
(110101)₂ = 32 + 16 + 4 + 1 = 53. From the right, the bit weights are 1, 2, 4, 8, 16 and 32.
22
Number Systems and Data Representation • Number Systems
दशमलव संख्या 45 का बाइनरी समतुल्य क्या है? What is the binary equivalent of decimal number 45?
सही उत्तर: C Correct Answer: C
45 = 32 + 8 + 4 + 1। इसलिए संबंधित बिटों को 1 रखने पर बाइनरी संख्या 101101 प्राप्त होती है।
45 = 32 + 8 + 4 + 1. Setting the corresponding bits to 1 gives the binary number 101101.
23
Number Systems and Data Representation • Number Systems
ऑक्टल संख्या (745)₈ का दशमलव मान क्या है? What is the decimal equivalent of the octal number (745)₈?
सही उत्तर: A Correct Answer: A
(745)₈ = 7 × 8² + 4 × 8¹ + 5 × 8⁰ = 448 + 32 + 5 = 485।
(745)₈ = 7 × 8² + 4 × 8¹ + 5 × 8⁰ = 448 + 32 + 5 = 485.
24
Number Systems and Data Representation • Number Systems
हेक्साडेसिमल संख्या (3A)₁₆ का दशमलव मान क्या है? What is the decimal equivalent of the hexadecimal number (3A)₁₆?
सही उत्तर: D Correct Answer: D
हेक्साडेसिमल में A का मान 10 है। इसलिए (3A)₁₆ = 3 × 16 + 10 = 58।
In hexadecimal, A represents 10. Therefore, (3A)₁₆ = 3 × 16 + 10 = 58.
25
Number Systems and Data Representation • Number Systems
हेक्साडेसिमल संख्या (A7)₁₆ का बाइनरी समतुल्य क्या है? What is the binary equivalent of the hexadecimal number (A7)₁₆?
सही उत्तर: A Correct Answer: A
प्रत्येक हेक्साडेसिमल अंक चार बिट से दर्शाया जाता है। A = 1010 और 7 = 0111, इसलिए A7 = 10100111।
Each hexadecimal digit corresponds to four bits. A = 1010 and 7 = 0111, so A7 = 10100111.
26
Number Systems and Data Representation • Number Systems
बाइनरी संख्या (1110101)₂ का ऑक्टल समतुल्य क्या है? What is the octal equivalent of the binary number (1110101)₂?
सही उत्तर: B Correct Answer: B
दाईं ओर से तीन-तीन बिट के समूह बनाएँ: 1 110 101 को 001 110 101 लिखा जा सकता है। ये समूह क्रमशः 1, 6 और 5 देते हैं, इसलिए उत्तर 165 है।
Group the bits in threes from the right: 1 110 101 can be written as 001 110 101. These groups represent 1, 6 and 5, giving 165.
27
Number Systems and Data Representation • Number Systems
बाइनरी भिन्न (1011.01)₂ का दशमलव मान क्या है? What is the decimal equivalent of the binary fraction (1011.01)₂?
सही उत्तर: C Correct Answer: C
पूर्णांक भाग 1011 का मान 11 है। भिन्न भाग .01 का मान 0 × 1/2 + 1 × 1/4 = 0.25 है। अतः कुल मान 11.25 है।
The integer part 1011 equals 11. The fractional part .01 equals 0 × 1/2 + 1 × 1/4 = 0.25. Therefore, the total is 11.25.
28
Number Systems and Data Representation • Number Systems
निम्नलिखित में से कौन-सी संख्या वैध ऑक्टल संख्या नहीं है? Which of the following is not a valid octal number?
सही उत्तर: D Correct Answer: D
ऑक्टल संख्या पद्धति में केवल 0 से 7 तक के अंक मान्य हैं। संख्या 128 में अंक 8 होने के कारण यह वैध ऑक्टल संख्या नहीं है।
The octal number system permits only the digits 0 through 7. Since 128 contains the digit 8, it is not a valid octal number.
29
Number Systems and Data Representation • Number Systems
यदि (121)ᵦ का दशमलव मान 16 है, तो आधार b का मान क्या है? If the decimal value of (121)ᵦ is 16, what is the value of base b?
सही उत्तर: B Correct Answer: B
(121)ᵦ = b² + 2b + 1। इसे 16 के बराबर रखने पर b² + 2b − 15 = 0, अर्थात (b + 5)(b − 3) = 0। वैध धनात्मक आधार b = 3 है।
(121)ᵦ = b² + 2b + 1. Equating it to 16 gives b² + 2b − 15 = 0, or (b + 5)(b − 3) = 0. The valid positive base is b = 3.
30
Number Systems and Data Representation • Number Systems
तीन अंकों की सबसे बड़ी हेक्साडेसिमल संख्या FFF का दशमलव मान क्या है? What is the decimal value of FFF, the largest three-digit hexadecimal number?
सही उत्तर: D Correct Answer: D
FFF = 15 × 16² + 15 × 16 + 15 = 3840 + 240 + 15 = 4095। सामान्यतः तीन हेक्साडेसिमल अंकों का अधिकतम unsigned मान 16³ − 1 होता है।
FFF = 15 × 16² + 15 × 16 + 15 = 3840 + 240 + 15 = 4095. In general, the maximum unsigned value of three hexadecimal digits is 16³ − 1.

श्रेणी अनुसार अभ्यास करें

वर्तमान परीक्षा टैग के भीतर किसी श्रेणी को चुनकर अभ्यास करें।

विषय अनुसार अभ्यास करें

किसी विषय को चुनकर उसी विषय के सभी MCQs का अभ्यास करें।

टॉपिक अनुसार अभ्यास करें

किसी एक टॉपिक पर केंद्रित अभ्यास के लिए कार्ड चुनें।

परीक्षा अनुसार अभ्यास करें

अन्य परीक्षा टैग के अनुसार प्रश्नों का अभ्यास करें।