Question
Question 46 What is the value of the variable named lists after the statements that follow are executed? String[][] names = new String[200][10]; int lists
Question 46 What is the value of the variable named lists after the statements that follow are executed? String[][] names = new String[200][10]; int lists = names.length; a. 10 b. code doesnt compile c. 200 d. 9 e. 199 2 points Question 47 Each row of a two-dimensional array is stored as a/an ____________. 2 points Question 48 What is the value of the variable named len after the code that follows is executed? int[][] nums = { {1, 2, 3}, {3, 4, 5, 6, 8}, {1}, {8, 8} }; int len = nums.length; a. 3 b. 1 c. 5 d. 4 e. 2 2 points Question 49 Which of the following statements gets the maximum number of Customer objects that the following array can store? Customer[] customers = new Customer[55]; a. int size = customers.max(); b. int size = customers.size(); c. int size = Arrays.size(customers); d. int size = customers.length; 2 points Question 50 To refer to an element in an array you use a/an ____________.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started