How many times does the word Hi print fori 0 i 4 i for j
How many times does the word \"Hi\" print
      for(i = 0; i < 4; i++)
          for (j = 0; j < 5; j++){
             System.out.println(\"Hi\");
Solution
Output:
Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
 Hi
it will print 20 times

