All Computer Science Resources
Example Questions
Example Question #41 : Common Data Structures
Which of these instantiate a matrix called matrx with 5 columns and 4 rows that takes in integers?
Possible Answers:
int [] [] matrx = new int [5] [4];
int [] [] matrx = new int [5] [];
int [] [] matrx = new int [4] [5];
int [] [] matrx = new int [] [4];
int [] [] matrx = new int [] [5];
Correct answer:
int [] [] matrx = new int [] [4];
Explanation:
You create a matrix also known as a 2 dimensional array the same way you'd instantiate a normal array except the first array space remains blank and you'd insert the number for the amount of rows. Due to the fact that you want 5 columns and 4 rows, you'd only input the 4 into the second array.
Alejandro
Certified Tutor
Certified Tutor
Kennesaw State University, Bachelor of Science, Computer Software Engineering.
All Computer Science Resources
Computer Science Tutors in Top Cities:
Atlanta Computer Science Tutors, Austin Computer Science Tutors, Boston Computer Science Tutors, Chicago Computer Science Tutors, Dallas Fort Worth Computer Science Tutors, Denver Computer Science Tutors, Houston Computer Science Tutors, Kansas City Computer Science Tutors, Los Angeles Computer Science Tutors, Miami Computer Science Tutors, New York City Computer Science Tutors, Philadelphia Computer Science Tutors, Phoenix Computer Science Tutors, San Diego Computer Science Tutors, San Francisco-Bay Area Computer Science Tutors, Seattle Computer Science Tutors, St. Louis Computer Science Tutors, Tucson Computer Science Tutors, Washington DC Computer Science Tutors
Popular Courses & Classes
ISEE Courses & Classes in Atlanta, MCAT Courses & Classes in Phoenix, SSAT Courses & Classes in Philadelphia, SAT Courses & Classes in Houston, Spanish Courses & Classes in Denver, ACT Courses & Classes in Los Angeles, ACT Courses & Classes in Miami, ISEE Courses & Classes in Philadelphia, MCAT Courses & Classes in Houston, LSAT Courses & Classes in Washington DC
Popular Test Prep
GMAT Test Prep in Los Angeles, SAT Test Prep in Seattle, GRE Test Prep in Los Angeles, ISEE Test Prep in Los Angeles, SSAT Test Prep in Denver, ACT Test Prep in Los Angeles, MCAT Test Prep in Houston, SSAT Test Prep in San Francisco-Bay Area, ACT Test Prep in Phoenix, LSAT Test Prep in San Diego