IDE Flashcards
1
Q
4 features of IDEs
A
- Code editor
- Debug tools
- Translator
- Run-time environment
2
Q
Iterative testing
A
Involves testing code as it is written
3
Q
Terminal testing
A
Happens at end of development
4
Q
Valid data
A
Data that is correct & of right format
5
Q
Extreme data
A
Data that is correct but on edge of valid range
6
Q
Invalid data
A
Data that isn’t within range or is in invalid format
7
Q
Null data
A
When no data is entered
8
Q
Erroneous data
A
Completely wrong data
9
Q
Scope
A
Group of areas of code from which variable can accessed
10
Q
What does variable defined within subroutine have?
A
Local scope
11
Q
How can variable be made global?
A
By adding ‘global’ keyword in front of it