Questions from Starting Out With Java


Q: Create a Die class from which you can instantiate an object containing

Create a Die class from which you can instantiate an object containing a random value from 1 through 6. Save the class as Die.java. Write an application that randomly “throws” two dice and displays th...

See Answer

Q: a. Sunshine Seashore Supplies rents beach equipment to tourists. In

a. Sunshine Seashore Supplies rents beach equipment to tourists. In previous chapters, you have developed a Rental class that holds equipment rental information. Now modify the Rental class as follows...

See Answer

Q: Sunshine Seashore Supplies rents beach equipment to tourists. In previous chapters

Sunshine Seashore Supplies rents beach equipment to tourists. In previous chapters, you developed a Rental class that holds equipment rental information and an application that tests the methods using...

See Answer

Q: The logical structure in which one instruction occurs after another with no

The logical structure in which one instruction occurs after another with no branching is a ____________. a. sequence b. selection c. loop d. case 2. Which of the following is typically used in a flow...

See Answer

Q: The operator that combines two conditions into a single Boolean value that

The operator that combines two conditions into a single Boolean value that is true only when both of the conditions are true is ____________. a. $$ b. && c. || d. !! 12. The operator that combines tw...

See Answer

Q: 1. A structure that allows repeated execution of a block of

1. A structure that allows repeated execution of a block of statements is a ____________. a. cycle b. ring c. loop d. band 2. A loop that never ends is a(n) ____________ loop. a. infinite b. iterativ...

See Answer

Q: 11. If m = 9, then after n = m

11. If m = 9, then after n = m++, the value of n is ____________. a. 8 b. 9 c. 10 d. 11 12. If j = 5 and k = 6, then the value of j++ == k is ____________. a. 5 b. 6 c. true d. false 13. You must al...

See Answer

Q: A sequence of characters enclosed within double quotation marks is a _________________.

A sequence of characters enclosed within double quotation marks is a _________________. a. literal string b. symbolic string c. prompt d. command 2. To create a String object, you can use the keyword...

See Answer

Q: If String movie = new String("Finding Dory");, the value

If String movie = new String("Finding Dory");, the value of movie.indexOf('i') is _________________. a. true b. false c. 1 d. 2 12. The String class replace() method replaces _________________. a. a...

See Answer

Q: An array is a list of data items that all _________________.

An array is a list of data items that all _________________. a. have the same type b. have different names c. are integers d. are null 2. When you declare an array, _________________. a. you always r...

See Answer