T8 - IDEs Flashcards

1
Q

IDEs stands for

A

Integrated Development Environments

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

IDE fucntion

A

They have a number of tools and features that help programmers when they are programming

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

IDE eg

A

Visual Studio (for C#, VB and other languages),
Eclipse (for Java and many more)
IDLE (for Python)

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

Line numbers:

A

allow a programmer to clearly see each new line of code

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

line numbers folded means

A

Can be folded = parts of the program that the programmer doesn’t need to see

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

Line numbers: When errors are found

A

the line number that they occur on will also be stated

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

Syntax highlighting

A
  • is where the colour of the text changes to show different parts of the program
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Error diagnostics:

A

help a programmer to find where they have made a mistake

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

how are errors identified

A

-with their line number
-The code may be underlined or highlighted to show the error

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

Debugging code: break points

A

set by the programmer so that the IDE stops the program mid-way through running

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

break points, stepping through, watching variables pros

A
  • pauses code
    The programmer can the step through code line by line
    They can watch variables as they change
    -easier to identify errors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The run-time environment:

A

allows a programmer to test their program while it is running

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

If the program crashes = the run-time environment

A

can see what happened and give useful information to the programmer

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

The run-time environment + libraries that come with the programming language

A

will be available to the programmer to use

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

Editors –

A

Use to write and edit programming code

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

Line numbers

A

– Give a number to each line of code, this is useful when the IDE refers to lines of code

16
Q

Syntax highlighting –

A

Different colours for code that has different meanings, such as keywords, strings or variables

17
Q

Breakpoints, stepping and watching variables –

A

-can pause code when running
- then run each line of code separately
-whilst watching the values stored in variables as they change

18
Q

Error diagnostics –

A

Comments from the IDE that help in finding the cause of syntax errors

19
Q

Run-time environment –

A

The facility of the IDE that allows programs to be run