For 2D array named items of size 5 rows and 6 columns, Which of the following fragments prints out every element of array? Select all correct Answers]

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter6: Arrays
Section: Chapter Questions
Problem 17RQ
icon
Related questions
Question
For 2D array named items of size 5 rows and 6 columns, Which of the following fragments prints out every element of array?
[Select all correct Answers]
for ( int row=0; row < 5; row++ )
for ( int col=0; col < 6; col++ )
System.out.print( items[row][col] + "");
for ( int row=0; row < items.length; row++ )
for ( int row=0; row < items[row].length; row++)
System.out.print( items[row][col] + " ");
for ( int row=0; row < items.length; row++ )
(c) for ( int col=0; col < items[col].length; col++ )
System.out.print( items[row][col] + " ");
for ( int row=0; row < items.length; row++ )
for ( int col=0; col < items[row].length; col++ )
System.out.print( items[row][col] + " )
Transcribed Image Text:For 2D array named items of size 5 rows and 6 columns, Which of the following fragments prints out every element of array? [Select all correct Answers] for ( int row=0; row < 5; row++ ) for ( int col=0; col < 6; col++ ) System.out.print( items[row][col] + ""); for ( int row=0; row < items.length; row++ ) for ( int row=0; row < items[row].length; row++) System.out.print( items[row][col] + " "); for ( int row=0; row < items.length; row++ ) (c) for ( int col=0; col < items[col].length; col++ ) System.out.print( items[row][col] + " "); for ( int row=0; row < items.length; row++ ) for ( int col=0; col < items[row].length; col++ ) System.out.print( items[row][col] + " )
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Array
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT