2.5 Programming Languages and IDEs Flashcards

1
Q

What is a high-level language?

A

Has a syntax and structure similar to English that is designed to be understood by humans

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

What is a low-level language example?

A

Assembly language or machine code

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

What is an example of a high-level language?

A

Python

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

Are low-level languages machine dependent?

A

Yes because different processors use different instructions for the component control

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

Are high-level languages machine dependent?

A

No because it is translated into instructions that then refer to the specific processor

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

Do low-level languages have direct control of hardware?

A

Yes

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

Do high-level languages have direct control of hardware?

A

No

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

What type of translator is used for assembly lanuage?

A

Assembler

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

What type of translator is used for high-level languages?

A

Compiler or interpreter

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

Are low-level languages east to write, understand and debug?

A

No

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

Are high-level languages easy to write, understand and debug?

A

Yes

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

What is the purpose of translators?

A

To convert high-level code into machine code or binary to enable the code to be run

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

Features of a compiler

A
  • Translates source code from high-level languages into object code then machine code before it is run
  • A compiled program executes faster as it is already translated
  • No need for translation/compiler software during runtime
  • Designed for specific processors
  • Code is usually optimized
  • Original source code is usually kept secret
  • Code needs to be recompiled when changed
  • Errors reported before execution
  • Used for software that will run frequently or be sold and bought by a third party
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Feature of an interpreter

A
  • Translates source code from high-level languages into machine code line by line
  • Takes more time to execute as it is translated as it is running
  • No need to recompile code
  • Easy for beginners
  • Needs translation/interpreter software during runtime
  • Code is not optimized
  • Errors reported during execution
  • Original source code is given to customers and could be copied
  • Used for program development
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Features of editors

A
  • Used to enter and edit the program code
  • Allows the user to enter, save and edit code
  • Find and replace all occurrences of text typed by a user
  • Auto-indent statements
  • Auto-complete statements
  • Syntax Highlighting
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Features of error diagnostics

A
  • Help a programmer to find where they have made a mistake
  • Errors are identified along with the line number that they occurred on
  • The code may be underlined or highlighted to show the error
  • Allow the addition of breakpoints to stop the program midway
  • Programmers can watch the variables as they change
  • The programmer can step through the code line by line
17
Q

Features of the run-time environment

A
  • Allows a programmer to test their program whilst it is running
  • If the program crashes the run-time environment can see what happened and give useful information to the programmer
  • Separate window to display outputs and enter inputs
18
Q

What is the translator?

A

The IDE will use either a compiler or an interpreter to translate the code