Paper 2: Software Flashcards

1
Q

What is programming software?

A

Software designed to allow the user to write computer programs.

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

What are programming languages?

A

The words/symbols used to give the computer instructions to follow.

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

What are the three main types of programming languages?

A
  • High-Level Language
  • Assembly Language
  • Machine Code
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define High-Level Language.

A

A programming language that is easy for humans to read and write, using words and symbols.

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

What is Assembly Language?

A

A low-level programming language that uses simple commands instead of binary code.

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

What is Machine Code?

A

The lowest level of programming language, made up of binary (1s and 0s).

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

What is a key disadvantage of writing code in Assembly Language?

A

It is harder/more time-consuming to write.

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

List one advantage of writing code in Assembly Language.

A

Likely to run very quickly as only needs a small amount of translation.

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

What is a key advantage of writing code in High-Level Languages?

A

More user-friendly to write.

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

What is a main disadvantage of High-Level Languages?

A

May not run as quickly due to code bloat.

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

What are the three types of translators in programming software?

A
  • Assembler
  • Interpreter
  • Compiler
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does an Assembler do?

A

Translates low-level language, Assembly Language, into binary.

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

What is the function of an Interpreter?

A

Directly executes high-level instructions line by line.

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

What is a Compiler?

A

Translates all of the high-level language program before it runs, producing an executable file.

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

What is one advantage of using an Interpreter?

A

Ease of debugging due to line-by-line execution.

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

What is a disadvantage of using an Interpreter?

A

Slower execution overall compared to compiled code.

17
Q

List two advantages of using Compilers.

A
  • Faster execution overall
  • Error detection before execution
18
Q

What is a disadvantage of Compilers?

A

Platform dependence; needs to be recompiled for different operating systems.

19
Q

What is an Integrated Development and Learning Environment (IDLE)?

A

Combines lots of programming software together in one environment.

20
Q

Name two features of an IDLE.

A
  • Editor
  • Run-time Environment (SHELL)
21
Q

What is syntax highlighting in programming software?

A

A feature that changes the colour of different parts of the code to make it easier to read.

22
Q

What does code completion do?

A

Provides suggestions to speed up coding and reduce typing errors.

23
Q

What is the purpose of error diagnostics in programming software?

A

Helps identify mistakes or errors in code and suggests possible fixes.

24
Q

What is meant by ‘online help’ in an IDLE?

A

Access to documentation, tutorials, or FAQs directly from the development environment.