Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Automation Testing with Java for Beginners

You're reading from   Hands-On Automation Testing with Java for Beginners Build automation testing frameworks from scratch with Java

Arrow left icon
Product type Paperback
Published in Sep 2018
Publisher Packt
ISBN-13 9781789534603
Length 156 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Rahul Shetty Rahul Shetty
Author Profile Icon Rahul Shetty
Rahul Shetty
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. First Programming Steps in Java 2. Understanding Classes, Objects, and Their Usage in Java FREE CHAPTER 3. Handling Strings and Their Functions in Java 4. Building Blocks for Java Programs – Loops and Conditions 5. Everything You Need to Know About Interfaces and Inheritance 6. Learn Everything about Arrays 7. Understanding Date Class and Constructors in Java 11 8. Importance of the super and this Keywords and Exceptions in Java 9. Understanding the Collections Framework 10. The Importance of the final Keyword, Packages, and Modifiers 11. Other Books You May Enjoy

Logic programming on multidimensional arrays


Now we will take a look at how we can print all the values of the entire multidimensional array used in the previous section, that is, the a array.

If we analyze the declaration of the array, we will see that two for loops will be required to print the entire array, one for rows and one for columns.

We want the controller to scan the complete first row, then the second row, and finally the third. So we add an outer for loop for the rows and set the length limit to the number of rows in the array, in this case two rows. The outer for loop for the rows will look like the following:

for(int i=0;i<2;i++)

This for loop will actually loop twice since we set the limit to 2 for rows. The first loop will scan the first row and the second loop will scan the second row. Now for each loop, we need to scan the three columns present in that specific row. To do this, we add an inner for loop that will scan every column and we set the limit to the number of columns...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime