Podcast
Questions and Answers
Pseudocode is an artificial and informal language that helps programmers develop __________.
Pseudocode is an artificial and informal language that helps programmers develop __________.
algorithms
A typical programming task can be divided into two phases: Problem solving phase and __________ phase.
A typical programming task can be divided into two phases: Problem solving phase and __________ phase.
Implementation
Pseudocode is very similar to everyday __________.
Pseudocode is very similar to everyday __________.
English
Write an algorithm to determine a student’s final grade and indicate whether it is passing or __________.
Write an algorithm to determine a student’s final grade and indicate whether it is passing or __________.
Signup and view all the answers
The final grade is calculated as the average of __________ marks.
The final grade is calculated as the average of __________ marks.
Signup and view all the answers
Detailed Algorithm Step 1: Input M1,M2,M3,M4. Step 2: GRADE (M1+M2+M3+M4)/4. Step 3: if (GRADE < 50) then Print “FAIL” else Print “__________” endif.
Detailed Algorithm Step 1: Input M1,M2,M3,M4. Step 2: GRADE (M1+M2+M3+M4)/4. Step 3: if (GRADE < 50) then Print “FAIL” else Print “__________” endif.
Signup and view all the answers
A schematic representation of a sequence of operations, as in a manufacturing process or computer program is called a __________.
A schematic representation of a sequence of operations, as in a manufacturing process or computer program is called a __________.
Signup and view all the answers
First produce a general algorithm, then refine the algorithm successively to get step by step detailed algorithm that is very close to a __________ language.
First produce a general algorithm, then refine the algorithm successively to get step by step detailed algorithm that is very close to a __________ language.
Signup and view all the answers