Fill in the blank(s) in each of the following statements:
a) Lists and tables of values can be stored in ______ and ______.
b) An array is a group of ______ (called elements or components) containing
values that all have the same ________.
c) The _________allows you to iterate through an array’s elements without
using a counter.
d) The number used to refer to a particular array element is called the
element’s _________.
e) An array that uses two indices is referred to as a(n) _______ array.
f) Use the enhanced for statement _________ to walk through double array
numbers.
g) Command-line arguments are stored in . __________.
h) Use the expression___________ to receive the total number of arguments in a
command line. Assume that command-line arguments are stored in String[] args.
i) Given the command java MyClass test, the first command-line argument is .
__________.
j) A(n) ______ in the parameter list of a method indicates that the method can
receive a variable number of arguments.