Software Flashcards

1
Q

Give two functions of an operating system

A

1) Security- Blocks viruses that could be harmful to the computer
2) Memory/File management- Determines where certain files go on the hard disk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Utility software can be split into 3 areas:

A

1) Basic tools
2) File management
3) Security

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is an example of a single user?

A

Smartphone

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an example of a multi-user?

A

School network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is an operating system?

A

Software designed for a particular hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is utility software?

A

Software that does a useful job for the user that is not essential to the operating system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the two things system software are divided into?

A

1) Operating System

2) Utility software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define concurrent

A

processes that run apparently at the same time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Define User interface

A

the way the user interacts with the operating system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a backup?

A

a copy of files in another location so that they are still available if the original copy is damaged or locked

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a defragmenter?

A

a utility that moves file clusters on a disk so they are closer to each other in order to speed up disk access

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define Virus

A

software that is designed to make and distribute copies of itself, usually for a malicious purpose

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Define Spyware

A

software, possibly a virus, that is designed to be installed secretly on a computer and record private information as the user enters it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Define Firewall

A

a utility that controls program access to the network, both incoming and outgoing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is Instruction set?

A

the list of all possible commands a particular CPU knows how to carry out

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Machine code?

A

the binary codes representing each of the instructions in the instruction set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is Translator?

A

a program the converts source code to machine code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is Source code?

A

the text of the program that a programmer writes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is Assembly language?

A

a low-level language written using mnemonics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is low-level programming language?

A

a programming language that is closely related to the CPU’s machine code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What is a complier?

A

a translator that convert high level language source code into object code, often machine code. The source code is translated all at once and saved to be executed later.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is object code?

A

the translated source code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is an interpreter?

A

a translator that converts high level language source code into object code. The source code is translated and executed one line at a time.

24
Q

Name an advantage of an interpreter

A

-find errors when they happen and can often tell you what’s gone wrong

25
Name 2 disadvantages of an interpreter
- every computer that will run your program needs the interpreter software installed - tend to run slower because the interpreter has to translate the source code while the program is running
26
Name 2 advantages of a complier
- the output from a complier will run on its own on any similar computer - its easier to prevent your code from being altered or copied, because you a re only giving people the machine code
27
Name a disadvantage of a complier
-a complier cannot produce any object code unless the while program is correct
28
What is an embedded system?
A computer system built into another device in order to control it
29
identify 3 components of an embedded system
1. Input/Output 2. processor 3. memory
30
Why are embedded systems also referred to as 'real-time' systems?
they must guarantee a response almost immediately in order for a system to react to different situations
31
Why are low level languages used for writing the programs for embedded systems?
- hardware can be directly controlled by the program written | - does not need an interpreter or compiler
32
What is the role of systems software?
- allows software to run | - provides an interface for users
33
What is the role of the OS in memory management and multitasking? (describe the process)
- all processes require the use of the CPU and memory - the OS prioritizes these tasks and allocates time to each process - it checks that the requests for memory are valid and allocates it accordingly - also swaps out data to the virtual memory when the main memory is full
34
Why is file management used?
-the OS creates a folder and file structure for data, which makes it easier for users to organize data
35
How are file permissions used on shared computer systems or on a network?
``` file permissions control who can: -see -open -edit -delete a file. ```
36
How does the OS provide an interface between the user and the hardware and software?
- interfaces allow to user to communicate with the computer | - the interface translates the users input
37
What are the two types of interface?
- Graphical User Interface (GUI) | - command line interface
38
How are peripherals controlled by the the OS?
using programs called 'drivers' that carry out the necessary translations to allow the CPU and the devices to communicate correctly
39
What is scheduling?
the algorithm that the OS uses to allow each running process to use the CPU
40
What is paging?
the algorithm the OS uses to move programs from RAM to disk and back again when needed once main memory is full
41
What is application software?
software that preforms a task that would otherwise be done by hand, perhaps with pen and paper.
42
What is meant by 'fragmented'?
When part of a file is saved to different parts of a disk
43
How does defragmentation software make a program run more quickly?
- reorganizes file that have been placed on different parts of the disk by putting related pieces of data together - fewer disk access are then needed to read the data - this improves performance + frees up more space on the disk
44
Why is encryption software used?
- scrambles data into a form that cannot by used by unauthorized users - protects unauthorized use
45
What are the 2 ways that an antivirus software identifies malware?
- scans for viruses using a database of known virus definitions that the virus is compared to - uses a set of rules to detect viruses by looking at their behaviour
46
What are 2 characteristics of a virus?
- enters the computer hidden as another program | - corrupts or deletes data from a disk
47
Explain what is meant by a computer model
-attempts to extract the rules and mechanisms that control real life systems and apply them in computer programs so that they can be used to simulate the behaviour of these systems under different conditions
48
What are two drawbacks of creating and using computer models?
- they may not always be accurate | - processing power needed to run the model may be greater than what is available
49
Why is assembly language a low level programming language?
assembly code is similar to machine code
50
Why is machine code a low level programming language?
machine code can be directly processed by the CPU
51
What are 2 advantages of a programmer writing programs in a high level language?
- it is easier for the programmer to understand which makes it less time consuming - portable from one machine to another as they are independent from the CPU
52
What are 2 advantages of a programmer writing programs in a low level language?
- requires less memory and execution time | - can directly control system hardware which makes it optimal for embedded systems
53
What is an assembler
the software used to translate a program written in assembly language to machine code
54
What is an advantage of a compiler?
-it can be executed faster since it is already translated to machine code
55
What is an disadvantage of a compiler?
-the program cannot be changed without editing the source code and recompiling