Related questions with answers
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
VerifiedAnswered 2 years ago
Answered 2 years ago
Step 1
1 of 8Sample a output:
0 0 1 0 1 2 0 1 2 3
Create a free account to view solutions
By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Create a free account to view solutions
By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Recommended textbook solutions

Intro to Java Programming, Comprehensive Version
10th Edition•ISBN: 9780133761313Y. Daniel Liang1,628 solutions

Fundamentals of Database Systems
7th Edition•ISBN: 9780133970777Ramez Elmasri, Shamkant B. Navathe948 solutions

Introduction to Algorithms
3rd Edition•ISBN: 9780262033848Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen872 solutions

Introduction to Algorithms
4th Edition•ISBN: 9780262046305Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen945 solutions
More related questions
- computer science
1/4
- computer science
1/7