
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
questions are in the pictures! each question only has ONE correct answer, so please do not mention more than one in your solution!
Thank you very much :)
![Consider the following static 2D array declaration
int[] list1 = {1,2,3);
int[] list2 = {4,5,6);
int[] list3 = (7,8,9);
int matrix = {list1,list2,list3);
What is shown by the declaration? *
O It shows a quicker way to declare a 2D static array.
O A 2D static array is an array of arrays.
O
The initializer list is the best declaration for 2D arrays.
The initializer list can only be used with int elements.
An incorrect declaration. new should be used for a declaration.
Consider the following dynamic 2D array declarations.
ArrayList<Integer> list1 = new ArrayList<Integer>();
list1.add(100);
list1.add(200);
ArrayList<Integer> list2 = new ArrayList<Integer>();
list2.add(300);
list2.add(400);
ArrayList<Integer> list3 = new ArrayList<Integer>();
list3.add(500);
list3.add(600);
ArrayList<ArrayList<Integer>> matrix = new ArrayList<ArrayList<Integer>>();
matrix.add(list1);
matrix.add(list2);
matrix.add(list3);
What is shown by the declaration above? *
O It shows a quicker way to declare a 2D static array
O A 2D dynamic array is an array of arrays.
C The initializer list is the best declaration for 2D arrays.
The initializer list can only be used with int elements.
An incorrect declaration. new should be used for a declaration.](https://content.bartleby.com/qna-images/question/13373a09-98e2-4628-97cc-1360719410b9/6ff89db3-9b02-47d6-a4c4-b773279c595b/urayjs_thumbnail.png)
Transcribed Image Text:Consider the following static 2D array declaration
int[] list1 = {1,2,3);
int[] list2 = {4,5,6);
int[] list3 = (7,8,9);
int matrix = {list1,list2,list3);
What is shown by the declaration? *
O It shows a quicker way to declare a 2D static array.
O A 2D static array is an array of arrays.
O
The initializer list is the best declaration for 2D arrays.
The initializer list can only be used with int elements.
An incorrect declaration. new should be used for a declaration.
Consider the following dynamic 2D array declarations.
ArrayList<Integer> list1 = new ArrayList<Integer>();
list1.add(100);
list1.add(200);
ArrayList<Integer> list2 = new ArrayList<Integer>();
list2.add(300);
list2.add(400);
ArrayList<Integer> list3 = new ArrayList<Integer>();
list3.add(500);
list3.add(600);
ArrayList<ArrayList<Integer>> matrix = new ArrayList<ArrayList<Integer>>();
matrix.add(list1);
matrix.add(list2);
matrix.add(list3);
What is shown by the declaration above? *
O It shows a quicker way to declare a 2D static array
O A 2D dynamic array is an array of arrays.
C The initializer list is the best declaration for 2D arrays.
The initializer list can only be used with int elements.
An incorrect declaration. new should be used for a declaration.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- What is the purpose of using id , name , value in form :eg ? What is box sizing and why we use it?arrow_forwardin rule: 15, 20, 35, 10 *1/5 Out Rule?arrow_forwardQ1. Write a SELECT statement that returns these columns from the Invoices table: The invoice _total column A column that uses the ROUND function to return the invoice_total column with 1 decimal digit A column that uses the ROUND function to return the invoice_total column with no decimal digits Q1. Write a SELECT statement that returns these columns from the Invoices table: • The invoice_total column • A column that uses the ROUND function to return the invoice_total column with 1 decimal digit • A column that uses the ROUND function to return the invoice_total column with no decimal digits invoice_total one digit 3813.33 3813.3 zero_digits 3813arrow_forward
- Please answer accordingly..arrow_forwardUsing the Winners table from Figure 12-2, write a SELECT statement that selectsthe Actor and Actress fields for the years 2008 through 2010. Sort the records indescending order by the Year field.arrow_forwardTask 1: List the owner number, the owner's first name as FIRST and the owner's last name as LAST for all owners. The first name should appear in uppercase letters and the last name should appear in lowercase letters.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education