InterviewSolution
Saved Bookmarks
| 1. |
What is radix of a number system? Give example? |
|
Answer» A numbering system is a way of representing numbers. The most commonly used numbering system in real life is Decimal number system. Other number systems are Binary, Octal, Hexadecimal number system. Each number system is uniquely identified by its base value or radix. Radix or base is the count of number of digits in each number system. Radix or base is the general idea behind positional numbering system. Eg: (123)10 , (547)g , (1001)2 , (25)16 |
|