Binary-to-Gray code converter किसका उदाहरण है?
(Bihar STET C.S. 2023)
Correct Answer: A
Explanation (EN): An encoder converts data from one code to another. Binary → Gray conversion is a type of encoding process. Hence, it is an Encoder.
Explanation (HI): Encoder एक प्रकार का सर्किट होता है जो एक code को दूसरे code में बदलता है। Binary से Gray conversion भी encoding है। इसलिए यह Encoder का उदाहरण है।
ऐसा कौन-सा code है जिसमें लगातार संख्याओं में केवल 1 bit बदलता है?
(Bihar STET C.S. 2023)
Correct Answer: C
Explanation (EN): In Gray Code, only one bit changes between two consecutive values. This reduces error in digital circuits.
Explanation (HI): Gray Code में लगातार दो संख्याओं के बीच केवल 1 bit बदलता है। इससे error कम होता है।
Decimal संख्या 4096 को binary में दर्शाने के लिए कितने bits चाहिए?
(KVS PGT C.S. 2017)
Correct Answer: D
Explanation (EN): 4096 = 2¹² Binary = 1 followed by 12 zeros → total 13 bits
Explanation (HI): 4096 = 2¹² Binary में यह 1 के बाद 12 zero होंगे → कुल 13 bits
Hexadecimal 132A का octal equivalent क्या है?
(KVS PGT C.S. 2017)
Correct Answer: C
Explanation (EN): Convert hex → binary → octal 132A₁₆ = 0001 0011 0010 1010 Group in 3 bits → 001 001 100 101 010 → 1 1 4 5 2 Answer = 11452₈
Explanation (HI): पहले hex को binary में बदलते हैं, फिर 3-3 bits में group करते हैं अंतिम उत्तर = 11452₈
यदि digits 0,1,X हैं तो radix क्या होगा?
(KVS PGT C.S. 2013)
Correct Answer: C
Explanation (EN): Total digits = 3 → radix = 3
Explanation (HI): Digits = 3 (0,1,X) इसलिए radix = 3
(3564)₁₀ का hexadecimal equivalent क्या है?
(NVS PGT C.S. 2022)
Correct Answer: C
Explanation (EN): 3564 ÷ 16 repeatedly → result = DEC
Explanation (HI): 3564 को 16 से divide करने पर hexadecimal रूप DEC मिलता है।
(173)₈ का binary equivalent क्या है?
(NVS PGT C.S. 2022)
Correct Answer: B
Explanation (EN): 1 → 001 7 → 111 3 → 011 Combine → 001111011 → remove leading zero → 1111011
Explanation (HI): 1 → 001 7 → 111 3 → 011 जोड़ने पर → 1111011
(11)₁₀ का binary equivalent क्या है?
(EMRS PGT C.S. 2023)
Correct Answer: D
Explanation (EN): 11 ÷ 2 repeatedly → binary = 1011
Explanation (HI): 11 को 2 से बार-बार divide करने पर binary = 1011
ASCII में 'a' का decimal value क्या है?
(EMRS PGT C.S. 2023)
Correct Answer: B
Explanation (EN): Lowercase 'a' ASCII value = 97
Explanation (HI): छोटा 'a' का ASCII value = 97
(ADD)₁₆ का decimal equivalent क्या है?
(EMRS PGT C.S. 2023)
Correct Answer: D
Explanation (EN): A=10, D=13 = 10×256 + 13×16 + 13 = 2560 + 208 + 13 = 2781
Explanation (HI): A=10, D=13 = 2560 + 208 + 13 = 2781