

InterviewSolution
Saved Bookmarks
1. |
What is data representation |
Answer» It refers to the internal method used to represent various types of data stored on a computer. Computers use different types of numeric codes to represent various forms of data, such as text, number, graphics and sound.To know data representation in computer we must know following number systemDecimal number system (Base=10):- 0,1,2,3,4,5,6,7,8,9.Binary number system (Base=2):- 0,1.Octal number System (Base=8):- 0,1,2,3,4,5,6,7.Hexa Decimal System(Base =16):- 0,1,2,3,4,5,6,7,8,9,A(10),B(11),C(12),D(13),E(14),F(15). | |