Articles by Team EasyExamNotes

Linear search

The linear search algorithm, also known as sequential search, is a simple searching algorithm that checks each element in a collection until the target element … Read more

Theta notation

What is Theta notation Theta notation (Θ) is a mathematical notation used in computer science to describe the tight bound or the asymptotically tight behavior … Read more

Omega notation

What is Omega notation Omega notation (Ω) is a mathematical notation used in computer science to describe the lower bound or best-case behavior of an … Read more

Big O notation

What is Big O notation Big O notation is a mathematical notation used in computer science to describe the upper bound or worst-case behavior of … Read more

Asymptotic Notation

Asymptotic notation is a mathematical notation used in computer science to describe the behavior of functions as the input size approaches infinity. It provides a … Read more