Answer:
b.row
Explanation:
A two-dimensional array holds value in two dimensions . It is usually represented in the form of rows and columns. The row fields holds the number of rows in the array while the column fields holds the number of columns in the arrays.
Answer:
Report Wizard
Explanation:
Report Wizard is a tool that helps users quickly and easily create reports with charts, tables and drill-down capabilities
Answer:
to create an ArrayList , you declare an Arraylist variable and call the ArrayList constructor to instantiate and ArrayList object and assign it to the variable
Int j;
j="name"[4];
// you could do
j=0; // since name has four letters the fifth character is the terminating 0
now if the string name is name
you could do
j=name[4]; // or even 4[name]