Software Desgin Flashcards

1
Q

What is input?

A

Data entered (e.g., user input)

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

What is process?

A

Calculation or logic applied

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

What is Output?

A

Displaying the result

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

What are the normal types of testing?

A

Normal – Expected input inbetween

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

What are the extreme types of testing?

A

Extreme – Boundary values (e.g., 0 and 100 if a program expects values between 1-100)

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

What are the exceptional types of testing?

A

Unexpected input (e.g., entering β€œhello” instead of a number).

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

What is a syntax error?

A

Breaking language rules

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

What is a logic error?

A

Incorrect logic causing wrong output

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

What is an execution error?

A

just doesn’t run

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

How does a running total work?

A

A loop continuously adds values to a total.

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

What is a fixed loop?

A

A loop that runs a set number of times.

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

What are the data types?

A

Integer (e.g., 10)

Float (e.g., 3.14)

String (e.g., β€œhello”)

Boolean (e.g., True or False)

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

What is a logical operator?

A

AND
NOT
OR

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

What is an arithmetic operator?

A

=
*

/

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

What is a comparison operator?

A

IF <>

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

What is a concatenation construct?

17
Q

What is a conditional loop?

A

Value= Do until

18
Q

What is a Selection?

A

If , ElseIf

19
Q

What is an iteration?

A

repeating instruction’s till a condition is met

20
Q

ask teacher if conditional loop is the same as running total in a loop

21
Q

What is a NOT logical operator?

A

changes the result of a condition

22
Q

What is an AND logical operator?

A

BOTH conditions need to be true

23
Q

What is an OR logical operator?

A

atleast one condition must be true