ALGORITHM AND COMPLEXITY Flashcards

1
Q

4 guide in AL

A
  1. input and output specification
  2. algorithm and data structure design
  3. complexity analysis
  4. program testing and debugging
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. input and output specification means
A

programmer should know what will be the input to the program and what the exact information should be in the output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. algorithm and data structure design means
A

algorithm is finite sequence of instructions that can performed in a finite length of time

data structure is a way to organize data collection of variables in different data type

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

what is data type

A

data type refers of the data that a variable may hold in
example
variable type int or string

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

what is pseudo language

A

language that use to represent algorithms combination of english statements and the construct of programming language

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

which is more important data structure or algorithm

A

both data structure and algorithm is important

cause algorithm may depend on how data stored and data structure depends on how we want to manipulate data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. Complexity analysis means
A

analyze the time and space of the algorithm to ensure complexity of the algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. program testing and debugging
A

debugging should not be the consuming time if you design your algorithm and data structure carefully but your program needed to debug because human are not perfect

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

criteria for algorithm to be satisfy

A
  1. input and output
  2. definiteness
  3. finiteness
  4. effectiveness
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

input and output meaning

A

input an algorithm may have zero or kore quantities in algorithm minimum of zero input are accepted

output the data items resulting from the execution of an algorithm there should be one quantity

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

definiteness means

A

each instruction must be precise or clearly define

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

finiteness means

A

trace out the instructions of an algorithm will terminates after a finite number

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

effectiveness means

A

effectiveness will be measured once algorithm is performed what it is supposed to do

a computer cannot perform an instruction if it has lack of information

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