I don’t know i checked it and i think it’s a virus or something like that don’t click on link
Answer:
a. lstColor.SlectIndex = 3
Explanation:
Listbox uses index to represent items.
The index starts its count from 0. Meaning that, the first item has an index of 0, the second has an index of 1 and so on.
From the question, the said color is the 4th in the list; going by the simple analysis stated above, it's index is 4-1 = 3.
The syntax for that is
listboxname.Selectedindex = index
i.e.
lstColor.SelectIndex = 3.
Answer:
The increasing order of growth
1. 1/n
2. 2^100
3. Log log n
4. Sqrt(log n)
5. Log^2 n
6. n^0.01
7. ceil(sqrt(n)), 3n^0.5
8. 2^log n , 5n
9. n log4n, 6 n log n
10. floor (2 n log^2 n)
11. 4 n^3/2
12. 4^log n
13. n^2 log n
14. n^3
15. 2^n
16. 4^n
17. 2˄2n
Explanation:
When in doubt about two functions f(n) and g(n), consider log f(n) and log g(n).
Also note that Exponential growth is faster than polynomial.
i.e. the higher the degree of polynomial, the faster the growth.
I hope this helps, cheers.