Consider the following code snippet which is supposed to show the total order amount when the button is clicked: public static void main(String[] args) { final Order myOrder = new Order(); JButton button = new JButton(“Calculate”); final JLabel label = new JLabel(“Total amount due”); . . . class MyListener implements ActionListener { public void actionPerformed(ActionEvent event) { label.setText(“Total amount due ” + myOrder.getAmountDue()); } } ActionListener listener = new MyListener(); } What is wrong with this code?
Which data structure would best be used for keeping track of…
Which data structure would best be used for keeping track of groceries to be purchased at the food market?
Consider the permutations method from the textbook, which is…
Consider the permutations method from the textbook, which is intended to return all permutations of the word passed in as a parameter. Which line contains the recursive call in the permutations method? public static ArrayList permutations(String word) { ArrayList result = new ArrayList(); if (word.length() == 0) // line #1 { result.add(word); // line #2 return result; // line #3 } else { for (int i = 0; i < word.length(); i++) // line #4 { String shorter = word.substring(0, i) + word(substring(i + 1); // line #5 ArrayList shorterPermutations = permutations(shorter); // line #6 for (String s : shorterPermutations) // line #7 { result.add(word.charAt(i) + s); // line #8 } } return result; // line #9 } }
Assume inputFile is a Scanner object used to read data from…
Assume inputFile is a Scanner object used to read data from a text file that contains a series of double values. Select an expression to complete the following code segment, which reads the values and prints them in standard output, one per line, in a field 15 characters wide, with two digits after the decimal point. while (inputFile.hasNextDouble()) { double value = inputFile.nextDouble(); ___________________________________ // statement to display double value }
The code segment below displays a pattern of asterisks. Sel…
The code segment below displays a pattern of asterisks. Select an expression to complete the code segment so that the resulting algorithm has O(n) running time. for (int k = 0; k < n; k++) { for _______________________ { System.out.print("*"); } System.out.println(); }
Assume inputFile is a Scanner object used to read data from…
Assume inputFile is a Scanner object used to read data from a text file that contains a series of double values. Select an expression to complete the following code segment, which reads the values and prints them in standard output, one per line, in a field 15 characters wide, with two digits after the decimal point. while (inputFile.hasNextDouble()) { double value = inputFile.nextDouble(); ___________________________________ // statement to display double value }
Consider the code snippet shown below: Stack words1 = new S…
Consider the code snippet shown below: Stack words1 = new Stack(); Stack words2 = new Stack(); words1.push(“abc”); words1.push(“def”); words1.push(“ghi”); while (!words1.empty()) { words2.push(words1.pop()); } while (!words2.empty()) { System.out.print(words2.pop()); } What will be printed when this code is executed?
Consider the definition of the Measurable interface and the…
Consider the definition of the Measurable interface and the code snippet defining the Inventory class: public interface Measurable { double getMeasure(); } public class Inventory implements Measurable { . . . public double getMeasure() { return onHandCount; } } Why is it necessary to declare getMeasure as public in the Inventory class?
Consider the following code snippet: Vehicle aVehicle = new…
Consider the following code snippet: Vehicle aVehicle = new Auto(4,”gasoline”); String s = aVehicle.toString(); Assume that the Auto class inherits from the Vehicle class, and neither class has an implementation of the toString() method. Which of the following statements is correct?
Consider the following code snippet: public static void sort…
Consider the following code snippet: public static void sort(int; int j = i; while (j > 0 && a > next) { a = a; j–; } a = next; } } What sort algorithm is used in this code?