The numbers that we use daily belong to the Decimal System. For example: : 0, 1, 2, 3,...2333, 99999, etc., It is also called a base-10 system.It is called base-10 number system because it uses 10 unique digits from 0 to 9 to represent any number.A base (also called the radix) is the number of unique digits or symbols (including 0) that are used to represent a given number.In Decimal System (which is base-10), a total of 10 digits (0, 1, 2, 3, 4, 5, 6, 7, 8 and 9) are used to represent a number of any size (magnitude).For example, Five Hundred and Sixty Seven is represented as 567, where567 = (5 * 102) + (6 * 101) + (7 * 100)567 = (5 * 100) + (6 * 10) + (7 * 1) [100's] [10's] [units] Similarly fractions are represented with the base (10) being raised to a negative power.Select the correct statements from the given statements.In Decimal System, 102 = (1 * 102) + (0 * 101) + (2 * 100)In Decimal System, 459 = (4 * 1100) + (5 * 110) + (9 * 11)In Decimal System, 0 = (1 * 10)In Decimal System, 0 = (0 * 100)
Question
The numbers that we use daily belong to the Decimal System. For example: : 0, 1, 2, 3,...2333, 99999, etc., It is also called a base-10 system.It is called base-10 number system because it uses 10 unique digits from 0 to 9 to represent any number.A base (also called the radix) is the number of unique digits or symbols (including 0) that are used to represent a given number.In Decimal System (which is base-10), a total of 10 digits (0, 1, 2, 3, 4, 5, 6, 7, 8 and 9) are used to represent a number of any size (magnitude).For example, Five Hundred and Sixty Seven is represented as 567, where567 = (5 * 102) + (6 * 101) + (7 * 100)567 = (5 * 100) + (6 * 10) + (7 * 1) [100's] [10's] [units] Similarly fractions are represented with the base (10) being raised to a negative power.Select the correct statements from the given statements.In Decimal System, 102 = (1 * 102) + (0 * 101) + (2 * 100)In Decimal System, 459 = (4 * 1100) + (5 * 110) + (9 * 11)In Decimal System, 0 = (1 * 10)In Decimal System, 0 = (0 * 100)
Solution
The correct statements from the given options are:
- In Decimal System, 102 = (1 * 10^2) + (0 * 10^1) + (2 * 10^0)
- In Decimal System, 0 = (0 * 100)
The second statement is incorrect because in the Decimal System, 459 = (4 * 10^2) + (5 * 10^1) + (9 * 10^0), not (4 * 1100) + (5 * 110) + (9 * 11).
The third statement is also incorrect because in the Decimal System, 0 cannot be represented as (1 * 10). It is always represented as 0, regardless of the base.
Similar Questions
A number in a base is said to be a special number if it is equal to the sum of its own digits each raised to the power of the number of digits. A number in base ‘b’ can have digits from 0 to b-1. By default the numbers used by humans is to base 10 and called as decimal number system. A number ‘n’ from decimal number system can be converted to any base ‘b’ by repeated division of ‘n’ by ‘b’ and writing reminder of each division in reverse order. For example, number 24 is converted to base 3 as shown below:
The numbering system which uses base-8 is called octal system. A base (also called radix) is the number of unique digits or symbols (including 0) that are used to represent a given number.In octal system (or the base-8 system), a total of 8 digits (0, 1, 2, 3, 4, 5, 6 and 7) are used to represent a number of any size (magnitude).For example, Zero is represented as 0, where0 = (0 * 80) = (0 * 1)Similarly the numbers 1 One (1), 2 and 7 are represented as follows: :1 = (1 * 80) = (1 * 1)2 = (2 * 80) = (2 * 1)...7 = (7 * 80) = (7 * 1)Now, let us try to represent the following numbers in octal system:Eighteen (18): Since 0 to 7 are the only digits that can be used to represent 18, let us divide 18 by 8 and write the quotient and remainder as follows:[quotient][remainder], i.e.: [2][2]18 = (2 * 81) + (2 * 80) = (16) + (2)Four Hundred and Twenty One (421): Since 0 to 7 are the only digits that can be used to represent 421,, let us divide it by 8 and write the quotient and remainder as follows:[quotient][remainder], i.e.: [52] [5] (further dividing 52 by 8 we get [6][4]), which is [6][4][5]421 = (6 * 82) + (4 * 81) + (5 * 80) = (384) + (32) + (5)Click on Live Demo to understand the conversion of decimal number system to octal number system.In order to differentiate from decimal numbers, octal numerals are prefixed with a leading 0 (zero).For example, to store an octal value of seven into a variable number_seven, we writeint number_seven = 07;Similarly, if we want to store an octal representation of a decimal number 9 in a variable number_nine, we writeint number_nine = 011;Click on Live Demo to understand the conversion of octal number system to decimal number system.Select all the correct statements from the given statements.In octal system, the base is 10.In octal system, decimal value of 20 is represented as 21In octal system, decimal 8 is represented as 10In octal system, decimal of 10 is written as 012
The number system which uses base-16 is called hexadecimal system or simply hex. A base (also called radix) is the number of unique digits or symbols (including 0) that are used to represent a given number.In hexadecimal system (or base-16 number system), a total of 16 symbols are used. Digits from 0 (zero) to 9 (nine) are used to represent values from 0 to 9 respectively and alphabets A, B, C, D, E and F (or a, b, c, d, e and f) are used to represent values from 10 to 15 respectively.In many programming languages like C, Java, etc., 0x is used as a prefix to denote a hexadecimal representation.For example, in hexadecimal number system, the value of Zero is represented as 0x0, where0 = (0 * 160) = (0 * 1)Similarly 1, 2 ...up to 9:1 = (1 * 160) = (1 * 1)2 = (2 * 160) = (2 * 1)...9 = (9 * 160) = (9 * 1)10 = A = (10 * 160) = (10 * 1)15 = F = (15 * 160) = (15 * 1)Now, let us try and represent the following numbers in hexadecimal system:Decimal number Eighteen/ 18 :Since one can only use 0 to 9 and the alphabets A to F to represent 18., let us divide 18 by 16 and write the quotient and remainder as follows:[quotient][remainder], i.e.: [1][2]18 = 0x12 = (1 * 161) + (2 * 160) = (16) + (2)One Hundred and Sixty (160).Since one can only use 0 to 9 and the alphabets A to F to represent 160., let us divide 160 by 16 and write the quotient and remainder as follows:[quotient][remainder], i.e.: [10][0], [A][0] (since 10 is represented by A)160 = 0xA0 = (10 * 161 + (0 * 160) = (160) + (0)Three Thousand Four Hundred and Sixty (3460):Since one can only use 0 to 9 and the alphabets A to F to represent 3460., let us divide it by 16 and write the quotient and remainder as follows:[quotient][remainder], i.e.: [216][4], (216 divided by 16 is [13][8], which is represented as [D][8]). So 3460 is represented as 0xD843460 = 0xD84 = (13 * 162) + (8 * 161) + (4 * 160) = (13 * 256) + (8 * 16) + (4 * 1) = (3328) + (128) + (4)Click on Live Demo to understand the conversion of a decimal number to its corresponding hexadecimal form.Note that both uppercase and lowercase letters can be used when representing hexadecimal values. For example:int hex_hundered_and_sixty = 0xA0; // or 0Xa0, however 0xA0 is preferredClick on Live Demo to understand the conversion of a hexadecimal number to its corresponding decimal form.Select all the correct statements from the given statements.In hexadecimal system, a base of 10 is used.Decimal number 101 is equal to 0x65 in hex.Hex value of 0xCAFE is equal to the decimal value 51966.0x0001 in hex is equal to 0X1 in hex to 1 in decimal number system.
In computers we normally use four different numbering systems - Decimal, Binary, Octal and Hexadecimal.The decimal system is a number system which is used in our day-to-day transactions like currency,counting etc. In this system,the symbols 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 are used to denote various numbers.In Binary number system, 0's (zeros) and 1's (ones) are the only symbols that are used to represent numbers of all magnitudes (sizes). For example, a normal decimal number 3 (three) is represented in a binary as 11. We shall learn more about it in the later sections.Binary system is mostly used in computers and other computing devices.A number in a particular base is written as (Number)base of number. For example (34)10 is a decimal number (Thirty Four) and (11)2 is a binary number 11 (it is read as One One and not as Eleven) which actually represents a decimal number whose value is 3.Since the decimal number system is more commonly used,the decimal number (124)10 is simply written as 124. However, if the same number has to be represented in binary system, it is written as (1111100)2.Similarly, the octal number system uses 8 as its base. It is generally used in digital displays and in representing file permissions under UNIX/Linux operating systems.Hexadecimal system or Hex is a number system that uses 16 as the base to represent numbers. We shall learn more about octal and hexadecimal number systems in the later sections.Select the correct statements from the given statements.A number system that uses only two digits, 0 and 1 is called Binary number system.The ten digits used in the decimal number system are from 1 to 10.The two symbols 0 and 1 are known as bits in a binary system.The base of an octal system is 8.Close
In computers, what are the basic number systems and their corresponding bases used?A. Decimal number system (Base-10).B. Binary number system (Base-2).C. Octal number system (Base-8).D. Hexadecimal number system (Base-16).E. All answers are correct.
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.