Which operation typically corresponds to linear time complexity, $O(N)$?

Answer

Iterating through an entire list once

Linear time, $O(N)$, occurs when the required execution time is directly proportional to the input size N, such as performing a single pass or traversal over the entire input data.

Which operation typically corresponds to linear time complexity, $O(N)$?
efficiencycomplexityalgorithmscalinginput size