Q14) Find complexity of the following
void pat(){
for (int i = 2; i <=n; i = pow(i, c)) {
System.out.print("*")
}
//Here fun is sqrt or cuberoot or any other constant root
for (int i = n; i > 1; i = fun(i)) {
System.out.print("*")
}
}
a) O(N LogN)
b) O(N^3)
c) O(N^2)
d) LogLog N
sir, could you please help me in finding its time complexity though I look for the solution but not able to understand it ???