Class 7 Computer Chapter 1 Answers PDF

Summary

This document is a set of questions and answers on number systems, including decimal, binary, octal, and hexadecimal. It includes converting between number systems and performing arithmetic operations. The questions cover concepts such as least significant digit and binary subtraction.

Full Transcript

PARAGON CONVENT SCHOOL SECTOR 24 B CHANDIGARH CLASS – 7 SUBJECT- COMPUTER CHAPTER 1 – NUMBER SYSTEM RECAP 1. The commonly used number system is Decimal number system with the bas...

PARAGON CONVENT SCHOOL SECTOR 24 B CHANDIGARH CLASS – 7 SUBJECT- COMPUTER CHAPTER 1 – NUMBER SYSTEM RECAP 1. The commonly used number system is Decimal number system with the base 10. 2. The right most digit of a number is called the Least significant Digit, whereas the left most digit is called Most significant Digit. 3. The Decimal number system consists of 10 digits, from 0 to 9, and has the base 10. 4. The Binary number system consists of two digits i.e. 0 and 1, and has the base 2. 5. The Octal number system consists of 8 digits from 0 to 7, with the base 8. 6. The Hexadecimal number system consists of 16 digits [ten digits (0 to 9) and six letters (A to F), and has the base 16. Q A. Fill in the blanks:- 1. The base of Binary number system is 2. 2. The base of Decimal number system is 10. 3. Octal number system consists of 8 digits. 4. The Binary number system is understood by the computer system. 5. The Hexadecimal number system consists of 16 digits, from 0 to 9 and the letters A to F. 6. In Binary subtraction, 1-1 equals to 0. Q B. State True or False. 1. You cannot perform arithmetical operations on binary numbers. False 2. The decimal number system consists of 10 digits i.e 0 to 9. True 3. The method to perform division of two binary numbers is not same as that of decimal numbers. False 4. 1 multiplied by 0 equals to 0. True 5. The numbers used in Octal number system are 1 to 7. False Q C. Multiple Choice questions:- 1. _________ introduced the concept of zero. a) Ada Lovelace b) Aryabhata c) Charles Babbage 2. In Hexa- decimal number system, C refers to ________. a) 13 b) 11 c) 12 3. A computer understands only the _________ code. a) English b) French c) Binary 4. In Binary multiplication, 1*1 equlas to ______. a) 0 b) 1 c) 2 5. To convert a Decimal number system into a Binary number, divide the number by __________. a) 2 b) 8 c) 10 Q D. Answer the following questions:- Q 1. What is number system? Ans. Number system is a set of values use to represent different quantities, such as number of students in a class, number of viewers watching a particular show. Q 2. What are the rules to convert a Decimal number system into a Binary Number system? Ans. To convert a Decimal number system into a Binary Number system, follow the given steps:- Step 1. Divide the given decimal number with base 2. Step 2. Write down the remainder and divide the quotient again by 2. Step 3. Repeat the step till the quotient is zero. Step 4. Write the remainders obtained in each step in the reverse order to form the binary equivalent of the given decimal number i.e. placing the least significant digit at the right and the most significant digit at the left. 3. Q Write the rules to multiply two binary numbers. Ans. The rules for performing multiplication using binary numbers is same as that of the decimal numbers. The given table illustrates the multiplication of two binary numbers. a b a+b=c 0 0 0+0=0 0 1 0+1=1 1 0 1+0=1 1 1 1+1=0 with carry 1 Q4. Briefly explain Octal number system. Ans. The Octal number system consists of 8 digits, from 0 to 7, with the base 8.The concept of Octal number system came from the Native Americans as they used to count numbers by using the space between their fingers rather than using their fingers. Q 5. What do you understand by hexadecimal number system? Ans. This number system consists of 16 symbols numbers 0 to 9 and the letters A to F that represent decimal numbers from 10 to 15. It means, A is equivalent to 10, B is equivalent to 11, C is equivalent to 12, D is equivalent to 13, E is equivalent to 14, F is equivalent to 15. The base of this number system is 16. ACTIVITY A. Convert the following Decimal numbers into Binary numbers. a. 68 Remainder 2 68 0 2 34 0 2 17 1 2 8 0 2 4 0 2 2 0 1 (68)10= (1000100)2Answer b. 987 Remainder 2 987 1 2 493 1 2 246 0 2 123 1 2 61 1 2 30 0 2 15 1 2 7 1 2 3 1 1 (987)10= (1111011011)2 Answer c. 657 2 657 1 2 328 0 2 164 0 2 82 0 2 41 1 2 20 0 2 10 0 2 5 1 2 2 0 1 (657)10 = (1010010001)2Answer B. Convert the following Binary numbers into Decimal numbers. a. (1011)2 1 0 1 1 3 2 1 0 positions Base = 2 1*20= 1*1=1 (20=1) 1*21 = 1*2=2 0*22= 0 1*23= 1*2*2*2=8 8+2+1=11 (1011)2= (11)10 Answer b. (100110)2 1 0 0 11 0 5 4 3 2 1 0 positions Base = 2 = (1*25+0+0+1*22+1*21+0) =(2*2*2*2*2+2*2+2) = 32+4+2 =38 (100110)2 = (38)10 Answer c. (10101)2 1 0 1 0 1 4 3 2 1 0 positions Base = 2 =(1*24+0+1*22+0+1*20) =(2*2*2*2 + 2*2 +1) (20=1) =(16+4+1) =(21)10 (10101)2= (21)10 Answer C. Add the given numbers. a. 10101+ 00111 b. 1000101101+1001101 10 1 0 1 1000101101 + 00 1 1 1 + 1001101 1 1 1 0 0 Answer 1 0 0 1 1 1 1 0 1 0 Answer c. 1101 + 1001 1 1 0 1 + 1 0 0 1 1 0 1 1 0 Answer D. Find the difference between the following Binary numbers. a. 10011- 01010 b. 11001001 - 01100110 1 0 0 1 1 1 10 0 10 0 1 - 0 1 0 1 0 - 0 11 0 01 1 0 0 1 0 0 1 Answer 1 1 0 0 0 1 1 Answer c. 111-001 1 1 1 - 0 0 1 1 1 0 Answer E. Multiply the following Binary numbers :- a. 101 * 011 b. 1011 * 101 1 0 1 1 0 1 1 * 0 1 1 1 0 1 1 0 1 1 0 1 1 1 0 1 * 0 0 0 0 * 0 0 0 * * 1 0 1 1 * * 0 1 1 1 1 Answer 1 1 0 1 1 1 Answer c. 101010 * 1011 1 0 1 0 1 0 * 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 * 0 0 0 0 0 0 * * 1 0 1 0 1 0 * * * 1 1 1 0 0 1 1 1 0 Answer (111001110)2 F. Perform the division operation :- a. 1111 ÷ 11 11 1 1 1 1 10 1 -1 1 11 -11 Quoteient – 101 0 Remainder – 0 b. 1 1 10 0 1 ÷ 101 101 1 1 1 0 0 1 1011 -1 0 1 10 0 0 - 1 0 1 01 1 1 Quotient - 1011 - 1 0 1 Remainder- 10 1 0 c. 1 1 1 1 1 1 1 1 1 ÷ 1011 1011 1 1 1 1 1 1 1 1 1 101110 -1 0 1 1 1 0 0 1 1 - 1 0 1 1 0 1 0 0 01 - 1 0 1 1 Quotient – (101110)2 0 0 0 1 1 0 1 Remainder - (101)2 - 1 0 1 1 1 0 1

Use Quizgecko on...
Browser
Browser