Suppose you have created objects called littleCircle and big…

Suppose you have created objects called littleCircle and bigCircle that belong to the Circle class. When a method call such as littleCircle.setRadius(13.3) is made, the true method call, which is invisible and automatically constructed, includes the memory address of the littleCircle object.

Compete the code to count how many numbers between 16 and 20…

Compete the code to count how many numbers between 16 and 200 are divisible by 3. Print the counter.       // Code required int counter =0; for (                              ) {           if (                           ) {                                                                                                } // print the how many divisible by 3                                              }