Page 1 of 1

Question 1 (18 points): Consider the following code snippet and determine the upper bound of time complexity of this cod

Posted: Sun May 15, 2022 8:34 am
by answerhappygod
Question 1 (18 points): Consider the following code snippet and
determine the upper bound of time complexity of this code:
Void test(int n){
if(n>1){
print (“Hello”);
test(n/2)
}
}