Try Magic Notes and save time.Try it free
Try Magic Notes and save timeCrush your year with the magic of personalized studying.Try it free
Question

Show the output of the following programs. (Hint: Draw a table and list the variables in the columns to trace these programs.)

  • a
public class Test {
    /** Main method */
    public static void main(String[] args) {
        for (int i = 1; i < 5; i++) {
            int j = 0;
            while (j < i) {
                System.out.print(j + " ");
                j++;
            }
        }
    }
}
  • b
public class Test {
   /** Main method */
   public static void main(String[] args) {
       int i = 0;
       while (i < 5) {
           for (int j = i; j > 1; j——)
               System.out.print(j + " ");
           System.out.println("****");
           i++;
       }
   }
}
  • c
public class Test {
    public static void main(String[] args) {
        int i = 5;
        while (i >= 1) {
            int num = 1;
            for (int j = 1; j <= i; j++) {
                System.out.print(num + "xxx");
                num *= 2;
            }
            System.out.println();
            i——;
        }
    }
}
  • d
public class Test {
   public static void main(String[] args) {
       int i = 1;
       do {
           int num = 1;
           for (int j = 1; j <= i; j++) {
               System.out.print(num + "G");
               num += 2;
           }
           System.out.println();
           i++;
       } while (i <= 5);
   }
}

Solution

Verified
Answered 2 months ago
Answered 2 months ago
Step 1
1 of 6
Output A:
0 0 1 0 1 2 0 1 2 3

Output B:
****
****
2 ****
3 2 ****
4 3 2 ****

Output C:
1xxx2xxx4xxx8xxx16xxx
1xxx2xxx4xxx8xxx
1xxx2xxx4xxx
1xxx2xxx
1xxx

Output D:
1G
1G3G
1G3G5G
1G3G5G7G
1G3G5G7G9G

Create an account to view solutions

Create an account to view solutions

Recommended textbook solutions

Computer Organization and Design MIPS Edition: The Hardware/Software Interface 5th Edition by David A. Patterson, John L. Hennessy

Computer Organization and Design MIPS Edition: The Hardware/Software Interface

5th EditionISBN: 9780124077263David A. Patterson, John L. Hennessy
226 solutions
Introduction to Java Programming, Brief 8th Edition by Y. Daniel Liang

Introduction to Java Programming, Brief

8th EditionISBN: 9780132130790Y. Daniel Liang
500 solutions
Fundamentals of Database Systems 7th Edition by Ramez Elmasri, Shamkant B. Navathe

Fundamentals of Database Systems

7th EditionISBN: 9780133970777Ramez Elmasri, Shamkant B. Navathe
895 solutions
Introduction to Algorithms 3rd Edition by Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen

Introduction to Algorithms

3rd EditionISBN: 9780262033848 (5 more)Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen
849 solutions

More related questions

1/3

1/6