Time complexity of the following nested loop ?
for(int x=0;x<n;i=x*2)
for(int y=0;y<n;y++)
System.out.println("Test");
Answers
Answered by
0
Answer:
it is not nested loop and n is not defined
Similar questions