Question: What is the Big O complexity of the Java method below? Explain your reasoning. public void complexity ( int n ) { int counter =

What is the Big O complexity of the Java method below? Explain
your reasoning.
public void complexity(int n){
int counter=0;
for(int i = n; i>500; i--){
for(int j=6; j<6*n; j=j+n){
counter++;
}
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!