The three correct measures used to assess the quality of an algorithm are:
-
Resource consumption - This refers to the amount of computational resources (like memory and CPU time) that an algorithm uses.
-
Time complexity - This measures how the runtime of an algorithm grows with the size of the input; it helps to evaluate the efficiency of an algorithm.
-
Reusability - This assesses how easily an algorithm can be reused in different contexts or applications, which contributes to maintainability and efficiency in development.
The other options, "number of lines" and "amount of variables," are less direct measures of algorithm quality compared to the selected three.