Computer Systems Flashcards
which part is the mantissa and what does it determine?
- 123 × 10^5
- 1234× 10^7
the mantissa is the decimal part of the number.
(2123) (1234)
It determines the degree of accuracy or precision with which the numbers can be represented.
what is 123 in binary?
01111011
whats 10110011 in denary?
179
which part is the exponent and what does it determine?
- 123 × 10^5
- 1234× 10^7
the exponent is the raised to the power of.
(5)
(7)
It determines the range of numbers that can be represented.
what is extended ASCII?
characters are stored in binary form. each character is stored in one byte (8 bits) it allows for the representation of 256 different characters
Describe the vector graphics method of graphic representation
Vector graphics store a picture by storing each objects attribute – e.g. the instructions to draw the shape.
How do you store a rectangle with vector graphics (with it’s attributes)?
Rectangle - (height, width, x co-ordinate, y co-ordinate, fill colour, line colour)
How do you store a Ellipse with vector graphics (with it’s attributes)?
Ellipse - (cx, cy, rx, ry, fill colour, line colour)
How do you store a Line with vector graphics (with it’s attributes)?
Line - (x1, y1, x2, y2, line colour)
How do you store a Polygon with vector graphics (with it’s attributes)?
Polygon - any shape with 3 of more sides - (x1, y1, x2, y2, x3, y3, fill colour, line colour)
Describe the bit-mapped method of graphics representation.
An image is made up of pixels, each pixel has a binary value corresponding to a colour.
•Number of bits per pixel depends on the number of
colours in the image – more colours, more bits.
•the number of pixels in a given area is the resolution
more pixels= more space taken up.
•they are often compressed to reduce storage size and
make them easier to download.
what are the parts of the processor?
•Control Unit – controls the sequencing of fetching,
decoding and executing instructions.
•Arithmetic Logic Unit – performs all calculations and
logical operations
•Registers – temporary memory locations within the
processor.
what does the control unit do?
It controls the sequencing of fetching, decoding and executing instructions.
what does the ALU do?
executes the programmes instructions, carrying out calculations, Boolean operations and comparisons.
what do the registers do?
temporary memory locations within the processor.