All Topics Quiz - The Big One! Flashcards
What is the hardware within a computer system or smartphone which carries out the instructions of a computer program ?
The CPU
What does CPU stand for?
Central processing unit
When talking about a CPU what does ALU stand for?
Arithmetic logic unit
What are the 3 main components of a CPU
Control unit - Memory unit - ALU
When talking about a CPU what is the function of the ALU?
performs arithmetic and logical operations
When talking about a CPU what is the function of the control unit?
extracts instructions from memory and decodes and executes them
Complete the cycle of the CPU _ Fetch_..
Fetch - decode - execute
Where does the CPU fetch instructions from
Main memory
When talking about a computer system what is memory?
A temporary storage
What 3 things might you find stored in Memory?
Instructions. Commands and the operating system
What does RAM stand for?
Random Access Memory
What does ROM stand for?
Read Only Memory
What is stored in ROM?
The boot files for the computer
Name 2 differences between RAM and ROM
RAM is Volatile. ROM is non Volatile. Contents of RAM change frequently. Contents of ROM never change
What is the type of memory used in the main memory
RAM
When referring to computer memory what is meant by Random Access?
You can write anywhere in that memory space at any time
When discussing memory what is meant by volatile?
It requires power and loses its content if there is no power
Is RAM volatile or non-volatile?
Volatile
Where is the basic start up routine that is known as the boot sequence of a computer stored?
In the ROM
What is virtual memory?
A part of the hard drive used as memory when memory has become full
When would you need to use virtual memory?
If memory is full. When you want to open a program that doesn’t fit in remaining memory space.
What does 3MGz mean?
It is the clockspeed of the computer. It can complete 3 million cycles per second
How does cache size affect the performance of a computer?
The larger the size of the cache the more instructions can fit in it therefore the CPU can process instructions quicker
A computer has a quad core processor. What does this mean?
The computer has 4 separate cores. Each is capable of running cycles. Therefore more cycles can be run simultaneously
Is ROM volatile or non-volatile?
Non-volatile
NOT (1) =
0
1 AND (NOT 1) =
0
1 OR ( 1 AND (NOT 0)) =
1
1 AND ((NOT 1) OR 1)=
1
What is a bit?
A single 1 or 0
What is a byte?
8 bits
How many bytes are in a kilobyte?
1024
How many kilobytes in a megabyte?
1024
How does having more RAM improve the performance of a computer?
It can load more programs and data at the same time
Finish the sequence bytes kilobytes__
Megabyte - gigabyte - terabyte - petabyte
What is stored in the computer_s ROM
The boot sequence (BIOS settings)
Name the type of secondary storage that is built into a computer system
Hard disk drive. Magnetic hard disk
Is a hard disk drive volatile or non volatile?
Non-volatile
What is optical storage?
CDs DVDs Bluray
What does CD-ROM stand for?
Compact disk read only memory
What is a CD ROM used for and why?
Music CDs software disks
What does DVD stand for?
Digital video disc
Who might use Flash Memory and why?
Anyone who needs to transfer data from one place to another
What type of memory does a USB stick use?
Flash memory or Solid State memory
Flash memory is also known as what?
Solid state memory
What does the SD stand for in SD card
Secure digital
What type of memory is used in smartphones and tablets?
Flash memory
What does the RW stand for in DVD-RW?
Re-writable
What is the difference between a DVD-R and a DVD-RW
DVD-R can only be written to once
What is the following type of network: One or more servers providing services to many clients
Client-Server network
Define a peer-to-peer network
All computers are equal. They serve the needs of the user as well as carrying out network functions
This device directs traffic though large networks such as the internet
Router
This device forwards packets only to the intended recipient
Switch
What does NIC stand for?
Network Interface Card
A computer must have this device to connect to a network
NIC
This device sends packets to every machine connected to it
Hub
What measurement comes after terabyte?
Petabyte
What type of data is held in a string?
Text or characters
What is an integer?
Whole numbers
What is a method of describing a program using proper English rather than a programming language
Pseudocode
What does PDF stand for?
Portable document format
What is a pixel?
The smallest element of an image _ dots that make up an image on a screen
How many bits does ASCII use?
7/8 bits (either is right)
How many bits does Unicode use?
16/32 bits (either is right)
State a difference between ASCII and unicode
ASCII uses 7 bits. Unicode 16 bits. ASCII can represent 127 characters. Unicode can represent many more
What do we call the list of characters a computer can represent
Character set
Give an example of metadata stored with an image
Height Width Resolution Colour depth date it was produced
What do we call the smallest part of an image
A pixel
What is the correlation between colour depth and bits per pixel and file size?
The more colours we use the more bits we need for each pixel the larger the file size.
What do we call the process of turning analogue sound into digital?
Sampling
What is the connection between sample rate and quality of sound and file size?
The higher the sample rate the better quality of file the larger the file size
What two parts is an instruction split into?
The operator (instruction part) and the operand (the data part)
What is software?
Programs that run on the computer
Give two forms of data validation
Length check - Type check - Range check - Presence check - Lookup check - Format check - Check digit
What is meant by a range check?
Data entered must be within a certain range eg date of birth between 01/01/1900 and 05/02/2014
Is double entry a form of Validation or Verification?
Verification
A database has 3 tables that are linked. This is known as a_
Relational Database
Give 2 tasks that the DBMS allows us to do.
Protect data - run queries to extract data - keep data consistent -keep data accurate
Define an entity
A real world object about what we store data
Define a record
A row of fields about one entry in the table
Define a field
A single piece of data in a record
Define a primary key
A unique field which identifies the record and cannot be repeated.
A primary key which appears in a different table is known as a_
Foreign Key
Why would we need a foreign key in a table?
To link 2 tables together in a relational database. It acts as a bridge between the tables.
List 2 tools provided by the DBMS
Tables - Forms - Reports - Queries - Modules
What language are websites generally written in?
HTML or HTML5
Why do we use compression when sending files over the Internet
Reduce transmission times and save storage space
What type of software is needed for a computer to communicate with a device such as a printer
Device driver _ driver software
Assembly language is also known as_
A low level language
In what language do mnemonics make an appearance?
Assembly language
What type of language is Visual Basic?
A high level language
What language do machines understand?
Binary/Machine language
State two features of an IDE
Source code editor/error diagnostics and debugger/run-time environment/translator
A sequence is when_
Instructions are executed one after the other
Selection is when_
The path through the program is decided by looking at a condition (IF statement)
Iteration is when_
The programs repeats commands until a critieria has been met (Loop)
What is the difference between a FOR loop and a WHILE loop
With a FOR loop we know how many times the loop will run before the code is run. With a WHILE loop the user can choose to stop the loop or keep repeating
What is the difference between a variable and a constant?
A variables value can change in the program. A constant cannot change
Where do we declare global variables
At the top of the program
Define an Array
A set of variables with the same name (identifier)
What is a variable?
An identifier that points to a place in memory
What is a syntax error
A mistake which breaks the grammar of the programming language
What is a logic error
The program will run however it does not give you the result you expected
Name a type of input device that could be used by someone who is blind
Braille keyboar - microphone (voice recognition)
What input devices would a central heating system use?
Temp sensor (thermometer) - timer - dial - keypad
Name 3 different types of printer
Ink jet - laser - 3d - plotter - dot matrix - thermal
Name 3 output devices that perform different functions
Printer monitor speakers actuators
Name a device to output sound
Speaker or headphones
What is an actuator?
Output device to produce physical movement
What am I: I am used to control wheelchairs and to remotely control lights or security cameras and robots. I am used in home entertainment systems like the XBOX and PS3.
Joystick _ games controller
What type of sensor is the XBOX Kinect
Motion sensor
What type of device is a digital camera?
Input device
What is an eye-typer?
A camera that tracks the movement of the eye and detect which key they are looking to gain input
Name a suitable input device for someone who cannot use their arms.
Eye typer. Foot mouse etc.
Name a suitable input device for blind people
Braille keyboard or microphone (voice recognition)
Name 2 features of a hard drive
Large capacity - fairly cheap - magnetic storage not portable
Name 2 features of a CD-ROM
Small and portable. It can be used on most devices. IS read only so cannot be copied over. Small capacity approximately 700MB
Name 2 features of a solid state drive
Very portable and good for carrying work.
Give an example of magnetic storage
Hard drive and magnetic tape
Give an example of optical storage
CD-ROM DVD-ROM CD-RW etc
State 2 functions of an operating system
Provide a user interface. Provide a platform for applications to run. Perform memory management. Perform file/disk management
Name 2 different operating systems
Windows: iOS: Android: Linux: Ubuntu
Explain multi-tasking
Allows more than 1 process to run at the (apparently) same time in oprder to maximise computer resources.
Name 2 utility programs and their uses
System cleanup - (Searches for and) deletes files/programs which are no longer used. Automatic update - Checks on the (software manufacturer’s site on the) Internet for newer versions of programs which are installed. Disk defrag - cleanup the hard drive - move files - Anti Virus
Why would a company need custom written software?
IF software does not exist to do the job the company wants. If the software that does exist doesn’t do exactly what they need
What do we mean by Off the Shelf software?
Software that is available in shops
Give an example of off the shelf software
Excel. Access. Word etc
State two features of open source software
Is free to use. Lots of people contribute to it. Doesn’t need a license
What does HTTP stand for?
Hypertext transfer protocol
What does HTTPS stand for
As above secure
What does LAN stand for?
Local area network
What is a WAN?
Wide area network
What numbers are used in binary?
1 and 0
State 2 differences between a LAN and a WAN
LAN is over a small geographical area. A WAN is over a large geographical area. LAN uses cables/wireless to transfer data. A WAN uses telephone system etc.
State 2 different LAN topologies
Bus - Ring - Star
What is the difference between a DVD-R and a DVD-RW
DVD-R can only be written to once
What is a solid state drive?
A form of flash memory. Portable storage that does not use magnetic tape like a HDD
What is cloud storage?
Online storage
How many times bigger is a terabyte to a gigabyte?
1024 or 1000
What type of memory is cheaper? Hard disk drive - optical storage - flash memory
Flash memory
What is 1 advantage and 1 disadvantage of cloud storage
Cheap: automatically backed up - secure - extendable. Relies on internet access - requires password access; speed depends upon the internet connection speed
What is an input device?
A device used to get data into the computer system
What is an output device?
A device that displays or communicates the processed data
Do input devices deal with analogue or digital data?
Analogue
What type of input device would be used for data entry into a computer system?
A keyboard
What am I? I am used as a pointing device to point at objects on the screen and select items by clicking or double clicking
A mouse
There is a variation of a computer mouse. What is it called
A trackerball
What am I? I am used to record something analogue to convert it to digital and to be stored onto CDs or as MP3 files. I am an input device used to input sound.
Microphone
What am I? I am an input device used in supermarkets at checkouts at self service checkouts and by store workers to analyse the products on the shelves eg to check sell by dates. I scan something on the products to input it into the computer system
Barcode scanner
What devices are input AND output devices
Touchscreen