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

  Topics Views Last post
Computer Science » A break statement can be used only in a loop. New
Started by clmills979
68 May 6, 2020
Computer Science » Analyze the following code.int count = 0;while (count < 100) { // Point A ... New
Started by jeatrice
35 May 6, 2020
Computer Science » Analyze the following code:import java.util.Scanner;public class Test { public static void ... New
Started by oliviahorn72
75 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
132 May 6, 2020
Computer Science » Will the following program terminate?int balance = 10;while (true) { if (balance < 9) continue; ... New
Started by neverstopbelieb
34 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
48 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
43 May 6, 2020
Computer Science » What balance after the following code is executed?int balance = 10;while (balance >= 1) { if ... New
Started by Pineappleeh
41 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
39 May 6, 2020
Computer Science » Analyze the following code:int i = 3434; double d = 3434;System.out.printf("%5.1f %5.1f", i, d); New
Started by anshika
281 May 6, 2020