InterviewSolution
Saved Bookmarks
| 1. |
Computers operate using the binary system; the word binary comes from the wordbi which means two. The binary system is based on two whole numbers, namely 0and 1. When we use the computer, we may type letters, words and special characters(like *, # and !); however the computer only understands binary numbers. Write thegreatest and the smallest 6 digit numbers using 0 and 1. |
|
Answer» greatest number is obviously is100000 and the smallest is obviously is 000001 |
|