ASCII-7 में EXAM का बाइनरी कोड लिखिए। (A का decimal code 65 है)
(DSSSB TGT C.S. 01.08.2021 Shift-I)
Correct Answer: B
Explanation (EN): ASCII decimal codes are: E = 69, X = 88, A = 65, M = 77. Their 7-bit binary forms are: E = 1000101 X = 1011000 A = 1000001 M = 1001101 After concatenation: 1000101101100010000011001101
Explanation (HI): ASCII के decimal code हैं: E = 69, X = 88, A = 65, M = 77। इनके 7-bit binary रूप हैं: E = 1000101 X = 1011000 A = 1000001 M = 1001101 इन्हें जोड़ने पर final code मिलेगा: 1000101101100010000011001101
8421 बाइनरी कोडिंग सिस्टम का 1000, किस बाइनरी कोडिंग सिस्टम में 1011 के बराबर है?
(HTET PGT C.S. 2022)
Correct Answer: B
Explanation (EN): In 8421 code, 1000 = decimal 8. In Excess-3 code, code of a digit is obtained by adding 3. So for 8: 8 + 3 = 11, and 11 in binary is 1011. Hence, the required code is Excess-3.
Explanation (HI): 8421 code में 1000 = decimal 8 होता है। Excess-3 code में किसी अंक के साथ 3 जोड़ते हैं। इसलिए 8 + 3 = 11 और 11 का binary 1011 होता है। अतः सही उत्तर Excess-3 है।
दशमलव 473 के लिए BCD संख्या क्या है?
(HTET PGT C.S. 2021)
Correct Answer: C
Explanation (EN): BCD means each decimal digit is represented separately using 4 bits. 4 = 0100 7 = 0111 3 = 0011 So BCD of 473 = 010001110011
Explanation (HI): BCD में हर decimal digit को अलग-अलग 4 bit में लिखा जाता है। 4 = 0100 7 = 0111 3 = 0011 इसलिए 473 का BCD = 010001110011
(539)₁₀ का hexadecimal रूप क्या है?
(HTET PGT C.S. 2021)
Correct Answer: D
Explanation (EN): 539 ÷ 16 = 33 remainder 11 = B 33 ÷ 16 = 2 remainder 1 2 ÷ 16 = 0 remainder 2 Reading in reverse order gives 21B
Explanation (HI): 539 को 16 से बार-बार divide करते हैं: 539 ÷ 16 = 33 शेष 11 = B 33 ÷ 16 = 2 शेष 1 2 ÷ 16 = 0 शेष 2 शेषों को उल्टे क्रम में लिखने पर उत्तर 21B मिलता है।
ASCII का full form क्या है?
(HTET PGT C.S. 2023)
Correct Answer: D
Explanation (EN): ASCII stands for American Standard Code for Information Interchange.
Explanation (HI): ASCII का पूरा नाम American Standard Code for Information Interchange है।
ASCII केवल ______ या अधिकतम ______ भाषाओं को संभाल सकता है।
(DSSSB TGT C.S. 07.02.2024 Shift-II)
Correct Answer: B
Explanation (EN): ASCII is a 7-bit code with 128 characters. It was mainly designed for English and can only support English properly, or at most one more language in a very limited way.
Explanation (HI): ASCII 7-bit code है जिसमें 128 characters होते हैं। यह मुख्य रूप से English के लिए बनाया गया था और सही रूप से केवल English या अधिकतम बहुत सीमित रूप में एक और भाषा को संभाल सकता है।
किस प्रकार के कंप्यूटर में 8-bit code EBCDIC का उपयोग होता है?
(Bihar STET C.S. 2019 Shift-II)
Correct Answer: C
Explanation (EN): EBCDIC was developed by IBM and is mainly used in mainframe computers, especially older IBM systems.
Explanation (HI): EBCDIC को IBM ने विकसित किया था और इसका मुख्य उपयोग mainframe computers में, विशेषकर पुराने IBM systems में होता है।
(929.19)₁₀ का octal रूप क्या है?
(HTET PGT C.S. 2020)
Correct Answer: B
Explanation (EN): Integer part: 929 ÷ 8 = 116 remainder 1 116 ÷ 8 = 14 remainder 4 14 ÷ 8 = 1 remainder 6 1 ÷ 8 = 0 remainder 1 So 929₁₀ = 1641₈ Fractional part: 0.19 × 8 = 1.52 → 1 0.52 × 8 = 4.16 → 4 0.16 × 8 = 1.28 → 1 Approximation gives .141 So result = (1641.141)₈
Explanation (HI): पूर्णांक भाग 929 को 8 से divide करने पर 1641₈ मिलता है। भिन्न भाग 0.19 को 8 से बार-बार गुणा करने पर लगभग .141₈ मिलता है। अतः उत्तर (1641.141)₈ है।
EBCDIC का full form क्या है?
(HTET PGT C.S. 2020)
Correct Answer: A
Explanation (EN): EBCDIC = Extended Binary Coded Decimal Interchange Code.
Explanation (HI): EBCDIC का पूरा नाम Extended Binary Coded Decimal Interchange Code है।
बाइनरी संख्या 1101010 का octal equivalent क्या है?
(HTET PGT C.S. 2020)
Correct Answer: C
Explanation (EN): Group the binary digits into 3 from right: 1101010 → 001 101 010 001 = 1, 101 = 5, 010 = 2 So octal = 152
Explanation (HI): बाइनरी संख्या को दाईं ओर से 3-3 bits के समूह में लिखते हैं: 1101010 → 001 101 010 001 = 1, 101 = 5, 010 = 2 इसलिए octal रूप 152 है।