15.0k views
0 votes
When simply determining the order of magnitude of an algorithm using Big-Oh algorithm analysis, an instruction that evaluates to O(c) is equal to one that evaluates to O(1)

A. True
B. False

1 Answer

4 votes

Answer:

A. True

Step-by-step explanation:

Big O notation in computer science is a measure of how effective an algorithm is or, it is the measure of performance of a particular algorithm and it describes the worst case scenario, usually with respect to time taken to execute to finish or memory needed, given the size of the problem O(c) it is the same to one that evaluates to O(1).

User Ghostfly
by
8.6k points