Unit 2 Computer Systems - Data Representation Flashcards
What is binary data?
Binary data is the system of representing information using only two states: on (1) and off (0), which is used in digital systems like computers.
Why do computers use binary?
- Simplicity – Transistors can only be on or off.
- Storage – Binary can be stored in magnetic charges, DVDs, or punched cards.
- Signal degradation resistance – Voltage drops don’t affect binary representation.
What is the denary (decimal) number system?
A number system using base 10, where place values increase by powers of 10.
How does the binary number system work?
It uses base 2, where place values increase by powers of 2 (e.g., 1, 2, 4, 8, 16…).
What is floating point representation?
A method of storing real numbers in computers using a mantissa and an exponent.
What are the three key elements of floating point representation?
- Mantissa – The significant digits of the number.
- Base – The number system used (e.g., 2 for binary, 10 for decimal).
- Exponent – The power to which the base is raised.
What is ASCII?
ASCII (American Standard Code for Information Interchange) is a character encoding system using 7 or 8 bits per character.
What is Unicode?
A character encoding system that uses 16 bits to support over 65,000 characters from multiple languages.
What are the two main types of computer graphics?
- Bitmap graphics – Stored as a grid of pixels.
- Vector graphics – Stored as mathematical instructions defining shapes.
What are vector graphics?
Graphics defined by objects such as rectangles, ellipses, and lines, each with attributes like position and color.
What is resolution in bitmap graphics?
The number of pixels in an image, often measured in:
- Pixels (width × height) (e.g., 1920×1080)
- Megapixels (e.g., 12 MP for cameras)
- Dots per inch (dpi) (used in scanning and printing)
What is bit depth in images?
The number of bits used per pixel, which determines the number of colors available:
- 1-bit = 2 colors (black and white)
- 2-bit = 4 colors
- 8-bit (GIFs) = 256 colors
- 24-bit (JPEGs, True Color) = 16.7 million colors
Why do bitmap images use compression?
To reduce file size since high-resolution images require large amounts of data storage.