5 Software Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Where do instructions come from?

A

Instructions come from software.

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

What happens when you start a software?

A

All the instruction codes from the software are copied to the RAM. This first step is called loading.
After the first step the CPU fetches the instructions and carries them out. (This process is called running the software).

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

What are the two types of software.

A

Application software for example a game or an email application.
System software is the software that enables the computer to work properly.

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

What is booting up?

A

Booting up is to load the operating system from the storage to the RAM.

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

What is ROM?

A

ROM are the first instructions that the computer needs.

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

What is BIOS?

A

BIOS are the set of instructions that get copied to the main memory to control the peripherals that are connected to the PC and to look in the secondary storage for the operating system.

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

By whom is linux favored by?

A

It is favored by computer experts.

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

What does the operating system do?

A

The operating system controls the hardware, makes the user interface understandable for us, loads and runs applications, spots errors and copes them.

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

What is a hardware interrupt?

A

A hardware interrupt is when you change something using a peripheral while there was a computer sequence in action and it sends you an error message(interrupt).

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

What are software interrupts?

A

Software interrupts are error messages for example when loading a page takes to long.

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

What is an extra feature of interrupts?

A

An extra feature of interrupts could be to let the CPU swap between different programs.

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

What are low-level langnuages.

A

Low-level languages are the way computers can communicate with each. A low-level language could a be for example the binary system.

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

What do compilers do?

A

Compilers make files for programs easily readable for the computer by transforming the high-level code to low-level code.

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

What do interpreters do?

A

Interpreters translate the program code and execute it as it translates it.

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

What are the advantages and disadvantages of compilers?

A

The executable file can be easily transmitted or sold to another person. However If you make a change the program must be compiled again.

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

What are the advantages and disadvantages of interprets?

A

If you make a change you can instantly see the change and you don’t have to compile the program. However, the program can only work if you the right interpreter.

17
Q

The difference between UI and GUI and what do they stand for?

A

Ui - User interface
GUI - Graphical user intereface
GUI is enhanced with graphical elements in comparison with UI.

18
Q

What does translation mean in programing?

A

A program is transformed into machine code.

19
Q

What is an assembly language?

A

It is a low-level language.