Question: i = 1 while (i
i = 1
while (i <= n){
j = 1
while (j < n) {
print hello
j = 2 * j
}
i++
}
How many times will hello be printed, if n = 2, 4, 5, 8? , give the expression T(n) for the number of times in terms of n, give the number of times as a function of n in notation in its simplest form.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
