IDEs Flashcards

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

IDEs

A

Software applications that provides facilities to computer programmers for software development

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

What does IDE stand for?

A

Integrated Development Environment

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

Code editor

A

A text area for programmers to enter code

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

Error diagnostics

A

Reports errors in the code

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

Run time environment

A

Executes the program one step at a time - easier to test code

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

Translators

A

Converts to machine code - compiles or interprets code

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

Auto-documentation

A

Explains the function and purpose of code by noting the modules and variables used

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

Syntax highlighting

A

Locates a syntax error

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

Autocompletion

A

As you start to type the first part of a function it suggests or completes the function and any arguments or variables

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

Bracket matching

A

Used for languages that use pairs of brackets to mark out blocks of code. Allows code to be read and understood more quickly

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

Syntax checks

A

Recognises incorrect use of syntax and highlights any errors

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

Libraries

A

Provide functions that are not included in the core part of the programming language. These functions can be imported and used at the start of the program code

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

Breakpoints

A

Run the program from a specific point to debug. Step individually through the lines or can jump over or get out of functions.

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

Build automation

A

Save time by automatically doing the processes that would be done by hand usually. Could include testing or compiling

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

Debugger

A

Program within the IDE that is used to detect errors. Suggests type of error and what line it is on

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

Features to help write code

A

Bracket matching, code editors, syntax highlighting, auto-completion

17
Q

Features to help run code

A

Debugger, Breakpoints, Runtime environment