logo

Question detail

An algorithm performs a fixed number of instructions, regardless of the size of its input. What is its time complexity?

Try the question, check the answer, then read the explanation to understand the curriculum point.

At a glance

MCQ

Type

practice

Style

Topic

Classification of algorithms

Exam-style question

Try this first

An algorithm performs a fixed number of instructions, regardless of the size of its input. What is its time complexity?.

  1. A.O(1)
  2. B.O(log n)
  3. C.O(n)
  4. D.O(2^n)

Model answer

What a good answer should say

  • O(1)

Explanation

Why this works

The running time does not grow as the input size n increases, so the algorithm has constant time complexity, written as O(1).

Common mistake

No common mistake is linked to this question yet.

Related flashcards

No flashcards are published for this page yet.

Related practice questions

No questions are published for this page yet.