Chapter 4- Mastering Decisions and Repitition Flashcards

1
Q

ASCII value

A

American Standard Code for Information Interchange: Numerical representation of a character

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

Body of a loop

A

Statements to be executed with the loop is running (statements ‘inside’ the loop)

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

Boolean/logical data type

A

Stats type having only 2 possible values- true or false

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

Boolean condition/expression

A

Aka relational condition/expression. One or more variables and/or constants joined by relational operators. Result is a Boolean value (true or false)
Eg: iValue>25
sName<>’X’

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

Boolean/logical operator

A

Operator that is used to compare Boolean conditions/expressions and return a Boolean result
eg: AND; OR; NOT

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

Compound/Complex Boolean/Relational expression

A

2 or more Boolean conditions joined by logical operators.

Eg: (iValue>=10) AND (iValue<50)

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