Consider the following class definitions.
//implementation not shown
//implementation not shown
//constructors and other methods not shown
private Cat[] kitties; //assume kitties has stuff in it
//returns the number of kittes older than > age
public int countCats( int age ){
//constructors and other methods not shown
Which of the following code segments shown below could be used to replace
/* blank */ so that method countCats() will work as intended?
for( int i = 0; i < kitties.length; i++ )
if( kitties[i].getAge() > age )