Answer:
The blanks are filled below.
Search Loop
The type String[] of the formal parameter array
says that an array of String references is expected, but does not say how long the array is.
Also notice how this static method is used in main().
Continue developing the program.
The for loop will look through the cells of the array one by one starting at cell 0.
Fill in the first blank so that it does this.
However, unless it is full,
not all cells of the array will contain a String reference.
cells that contain null must be skipped.
Fill in the second blank to do this.
QUESTION 17:
Fill in the blanks.