392 views
2 votes
2 votes

Let f (n) = Ο(n), g(n) = Ο(n) and h(n) = θ(n).

Then [f (n) . g(n)] + h(n) is _______.

a.Ω(n)

b.Ο(n)

c.θ(n)

d.None of these

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
2
Ray Tomlinson asked Aug 9, 2023
278 views
what they want to tell and it is true or false?
0 votes
0 votes
1 answer
3
Ray Tomlinson asked Aug 9, 2023
512 views
How many times is the comparison $i >= n$ performed in the following program?int i = 200 n = 80; main() { while (i >= n) { i = i - 2 n = n + 1 } }