1.Print this pattern 

000000

000000

000000

000000


Explaination:

Goal:

We want to print 4 rows, and each row has 6 zeroes.

🔁 Outer loop (for (int i = 0; i < rows; i++))

🔁 Inner loop (for (int j = 0; j < columns; j++))

🔁 After inner loop: