Which of the following statement(s) is/are true about Algorithm? I. It is step…
2021
Which of the following statement(s) is/are true about Algorithm? I. It is step by step solution of problem. II. It is difficult to debug. III. It is not dependent on the programming language.
- A.
I and II
- B.
II and III
- C.
I and III
- D.
I, II and III
Attempted by 350 students.
Show answer & explanation
Correct answer: C
I - True . That is the very definition of an algorithm.
II - False . Algorithms are generally easier to analyze and debug than actual program code because they are language-independent and focus on logic.
III - True. An algorithm describes the logic, not the syntax of any specific programming language.