Questions from Starting Out With Java


Q: In programming, a(n) _________________ is a group of

In programming, a(n) _________________ is a group of objects that can be operated on together. a. collision b. anthology c. assemblage d. collection 2. A difference between a collection and an array...

See Answer

Q: The method that can be used to sort an ArrayList is _________________.

The method that can be used to sort an ArrayList is _________________. a. Collections.sort() b. ArrayList.sort() c. List.sort() d. Sorting.sort() 12. All of the following classes contain a built-in c...

See Answer

Q: A JFrame is a descendant of each of the following classes except

A JFrame is a descendant of each of the following classes except the _________________ class. a. Component b. Container c. Jar d. Window 2. Unlike a Window, a JFrame _________________. a. has a title...

See Answer

Q: In previous chapters, you developed classes that hold rental contract information

In previous chapters, you developed classes that hold rental contract information for Sunshine Seashore Supplies. Now modify the Rental class to include an integer field that holds an equipment type....

See Answer

Q: Which of the following can be specified by using a parameter in

Which of the following can be specified by using a parameter in one or more versions of the JTextField constructor? a. the initial text in the field b. requiring that the value entered be nonnumeric c...

See Answer

Q: Accept a digit from the user, then display a seven-

Accept a digit from the user, then display a seven-line triangle pattern that uses the digit. Figure 6-33 shows a typical execution. The program can contain no more than three output statements. Save...

See Answer

Q: Write an application that allows a user to enter any number of

Write an application that allows a user to enter any number of student quiz scores until the user enters a sentinel 99. If the score entered is less than 0 or greater than 10, display an appropriate m...

See Answer

Q: The Freemont Automobile Factory has set a goal that each worker will

The Freemont Automobile Factory has set a goal that each worker will eventually produce 10,000 parts per month. The company has discovered that the longer a worker has been on the job, the more parts...

See Answer

Q: Modify the CharacterInfo class shown in Figure 7-3 so that

Modify the CharacterInfo class shown in Figure 7-3 so that the tested character is retrieved from user input. Save the file as InputCharacterInfo.java.

See Answer

Q: Write a program that inserts parentheses, a space, and a

Write a program that inserts parentheses, a space, and a dash into a String of 10 user-entered numbers to format it as a phone number. For example, 5153458912 becomes (515)345-8912. If the user does n...

See Answer