Try the fastest way to create flashcards
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 {
  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 {
  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 + "C");
        num *= 2;
      }
      System.out.println();
      i++;
    } while (i <= 5);
  }
}

Solution

Verified
Answered 2 years ago
Answered 2 years ago
Step 1
1 of 8

Sample a output:

0 0 1 0 1 2 0 1 2 3 

Create a free account to view solutions

Create a free account to view solutions

Recommended textbook solutions

Intro to Java Programming, Comprehensive Version 10th Edition by Y. Daniel Liang

Intro to Java Programming, Comprehensive Version

10th EditionISBN: 9780133761313Y. Daniel Liang
1,628 solutions
Fundamentals of Database Systems 7th Edition by Ramez Elmasri, Shamkant B. Navathe

Fundamentals of Database Systems

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

Introduction to Algorithms

3rd EditionISBN: 9780262033848Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen
872 solutions
Introduction to Algorithms 4th Edition by Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen

Introduction to Algorithms

4th EditionISBN: 9780262046305Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen
945 solutions

More related questions

1/4

1/7