Which statement repeat a set of statements more than once based on the certain condition?
Logical
Iteration
Sequential
Conditional
Which one is said to be a fundamental part of computing?
Symbols
Algorithm
Flowchart
Loop
Which of the following is a set of instructions written to perform a specific task?
Program
What do you mean by Pseudocode?
Five Digit code
False code
Sequence
Secret code
Find out the incorrect advantage of flowchart?
The symbols are self explanatory
Easier to handle complex programs
Their graphical nature makes the process of explaining an algorithm quite straight forward.
With the help of a flowchart problems can be analysed in a more effective way.
What does the symbol represents?
Terminator Box
Input/Output Box
Process Box
Connector Box
Which of the following term is used for the Input operation?
GET
Output
Read
Print
Which among the following advantages of pseudocode is incorrect?
It is difficult to understand
It can be constructed quickly as compared to a flowchart.
Closer to programming code, so easier to understand.
One can write the pseudocode, then use it as a starting point or outline for writing a real code.
Which one helps a non-programmer to understand the general workings of the program?
Pseudocode
Loops
Find out the correct code to display the sum of two numbers.
PseudocodeBegin Input A,B Calculate Display A,BEnd
Begin Input A,B Calculate Sum=A+B Display SumEnd
Begin Input A,B Display SumEnd
Begin Input A,B CalculateEnd