Question List for "Introduction to Java Programming, Comprehensive Version"

  Topics Views Last post
Computer Science » Analyze the following code.int count = 0;while (count < 100) { // Point A ... New
Started by jeatrice
80 May 6, 2020
Computer Science » Analyze the following code:import java.util.Scanner;public class Test { public static void ... New
Started by oliviahorn72
106 May 6, 2020
Computer Science » What is sum after the following loop terminates?int sum = 0;int item = 0;do { item++; sum += item; ... New
Started by madam-professor
183 May 6, 2020
Computer Science » Will the following program terminate?int balance = 10;while (true) { if (balance < 9) continue; ... New
Started by neverstopbelieb
67 May 6, 2020
Computer Science » Which of the following loops produces the output?1 2 3 4 1 2 3 1 2 1(I) for (int i = 5; i > 0; i--) ... New
Started by vicky
63 May 6, 2020
Computer Science » Analyze the following fragment:double sum = 0;double d = 0;while (d != 10.0) { d += 0.1; sum += sum + d;} New
Started by jon_i
68 May 6, 2020
Computer Science » What balance after the following code is executed?int balance = 10;while (balance >= 1) { if ... New
Started by Pineappleeh
68 May 6, 2020
Computer Science » Which of the following loops correctly computes 1/2 + 2/3 + 3/4 + ... + 99/100?A:double sum = 0;for ... New
Started by Kthamas
56 May 6, 2020
Computer Science » Which of the loop statements always have their body executed at least once? New
Started by penguins
105 May 6, 2020
Computer Science » How many times will the following code print "Welcome to Java"?int count = 0;do { ... New
Started by Themember4
73 May 6, 2020