SLR 13 Flashcards
Data Types
What are different data types used for?
Different data types takes up different amounts of memory,, so the correct data types must be used to optimise program performance
What is an integer?
A whole number
What is a Real/Float?
Any non-integer number
What is a Boolean?
True or False
What is a character?
Represents any alphanumerical symbols
What is a string?
Represents a collection of characters
What is a primitive data type?
Any basic data type provided by a language as a foundational building block
What does casting mean?
Changing a data type into another
How is data represented in RAM
Through 0s and 1s
How is data stored in a hard disk?
Through magnetism. 1 represents South and 0 represents North
How is data stored in optical media?
On a disk which is read using a laser
How is data stored in an SSD?
Uses electricity and electrons. 0s and 1s represent if electrons are trapped or not
What is Base 2?
Binary
What is base 10?
Denary
What is base 16?
Hexadecimal
What do positive numbers start with in sign and magnitude?
0
What do negative numbers start with in sign and magnitude?
1
How does Sign and Magnitude work?
The last number in a binary sequence (usually 128) is replaced by a -/+ to make a number a positive or a negative
How does Hexadecimal work?
10 = A
11 = B
12 = C
etc….
What is hex used for in CS?
To turn larger digits into smaller and simpler ones to save space and to make the numbers MUCH easier to read
What is floating binary point?
Storing numbers using a fractional component such as 6.5 to extend the number line from left to right
How can floating binary point numbers be made more accurate?
Moving the binary point up and down the number line
What are the benefits of floating binary points?
With less fractions larger numbers can be stored but at the cost of reduced accuracy
With more fractions numbers can be stored with more precision with a reduced size
What is the Mantissa?
The number itself
What is the Exponent?
The position of the binary point in the number
How does the Exponent work?
For example, if the exponent was 2, the binary point would be 2 points to the right
What is the benefit of normalising a number?
Allows it to be represented, and assures that numbers can be stored with the highest possible decree of accuracy
What do positive normalised numbers begin with?
01
What do negative normalised numbers begin with?
10
How does a computer store fractions?
They are converted into decimal form, then stored using binary numbers
What does a normalised floating point binary number mean?
A number changed to be able to be represented by binary digits
How do you add two normalised floating point numbers?
- Work out where the binary point should be in each number using its exponent
- Line both numbers up on the normal binary number so that the binary points are in the same position
- Add the numbers up in the normal way, following the rules of binary addition
What is a character set?
A collection of characters recognised by a computer used by their binary codes
Why are 7 bits needed for a characters code?
To store uppercase, lowercase numbers, including symbols and punctuation
What are some examples of character sets?
ASCII
Extended ASCII
Unicode
What is a multilingual character set?
A character set which includes alphanumerical symbols for a very large range of languages
How do Bitwise Masks work?
They can be AND, OR or XOR and you need to apply those logic gates to two given 8 bit binary sequences
How does binary subtraction work?
1 - 0 = 1
1 - 1 = 0
0 - 0 = 0
0 -1 = 1