Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse M

Alphabetical listing with fast deep pagination.
30746 items • Page 412 / 615

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Modify the app in Fig. 5.12 to validate its inputs. For any input, if the value
Modify the app in Fig. 5.12 to validate its inputs. For any input, if the value entered is other than 1 or 2, display the message “Invalid input,” then keep looping until the user…
Modify the append function so the dog is inserted into an ordered list (by dog n
Modify the append function so the dog is inserted into an ordered list (by dog name and owner last name) and the list remains ordered after the insertion. For example, a dog named…
Modify the append function so the dog is inserted into an ordered list (by dog n
Modify the append function so the dog is inserted into an ordered list (by dog name and owner last name) and the list remains ordered after the insertion. For example, a dog named…
Modify the append function so the dog is inserted into an ordered list (by dog n
Modify the append function so the dog is inserted into an ordered list (by dog name and owner last name) and the list remains ordered after the insertion. For example, a dog named…
Modify the append function so the dog is inserted into an ordered list (by dog n
Modify the append function so the dog is inserted into an ordered list (by dog name and owner last name) and the list remains ordered after the insertion. For example, a dog named…
Modify the application 1. Open the Main class. Within the while loop, use the in
Modify the application 1.       Open the Main class. Within the while loop, use the increment operator (++) to increment the counter variable named i. 2.       Combine the first t…
Modify the application below to deal a five-card poker hand. Then modify the cla
Modify the application below to deal a five-card poker hand. Then modify the class to include methods that determine whether a hand contains a pair, two pairs, three of a kind, fo…
Modify the argument in Theorem 2.4.7 to show that there exists a positive real n
Modify the argument in Theorem 2.4.7 to show that there exists a positive real number u such that u3 = 2. There exists a positive real number x such that x2 = 2. Proof. Let S := {…
Modify the assignment by adding methods to the object to sort the array by last
Modify the assignment by adding methods to the object to sort the array by last name and by zip code. The zipcode method should sort names in the same zip code by last name. Use a…
Modify the attached implementation of bookType and authorType so that the bookTy
Modify the attached implementation of bookType and authorType so that thebookType class uses a pointer to authorType and creates a dynamic array to store the authors. //AUTHORTYPE…
Modify the attached in-class code to achieve the following: 1. Have the user dra
Modify the attached in-class code to achieve the following: 1. Have the user drag the paddle up and down using the mouse pointer when holding down the left-mouse button. 2. Bounce…
Modify the attached program by writing the following functions (please also rena
Modify the attached program by writing the following functions (please also rename the file to include your name). You do not need to modify the main function. Write a sort functi…
Modify the attached version of the face with the winking eye. This version has t
Modify the attached version of the face with the winking eye. This version has the eye wink when the user clicks the button. Save as the program as ex145.java and change the progr…
Modify the attached version of the face with the winking eye. This version has t
Modify the attached version of the face with the winking eye. This version has the eye wink when the user clicks the button. Save as the program as ex145.java and change the progr…
Modify the attached version of the face with the winking eye. This version has t
Modify the attached version of the face with the winking eye. This version has the eye wink when the user clicks the button. Save as the program as ex145.java and change the progr…
Modify the attribute grammar of Example 3.6 in Sebesta so that it uses only a si
Modify the attribute grammar of Example 3.6 in Sebesta so that it uses only a single (synthesized) attribute. An Attribute Grammar for Simple Assignment Statements Syntax rule: &l…
Modify the authors\' Sorts.java so that when a sort is executed the number of sw
Modify the authors' Sorts.java so that when a sort is executed the number of swaps and compares is reported out. These counts must be provided for the authors' implementation of t…
Modify the below C code to accomodate the following: Let the parent send the dat
Modify the below C code to accomodate the following: Let the parent send the data to the child through the pipe. The data sent by the parent should be carrying all the integers in…
Modify the below C++ Program (//Electricity Cost Program) to the following that
Modify the below C++ Program (//Electricity Cost Program) to the following that includes a - f (below): a. all data is to be read from a file. b. the data file will be created usi…
Modify the below c++ program such that if one of the whitespaces is entered, it
Modify the below c++ program such that if one of the whitespaces is entered, it displays a message and tells what the character was. // P54.cpp - This program reads one character …
Modify the below code to implement a variable called \'parent\' which is the par
Modify the below code to implement a variable called 'parent' which is the parent of a node. Modify the 'insert' method to adjust the class. Add a test class and that constructs t…
Modify the below program so that it shows which digits (if any) were repeated: E
Modify the below program so that it shows which digits (if any) were repeated: Ex). Enter a number: 939577 Repeated Digit(s): 7 9 /* Checks number for repeated digtis*/ #include /…
Modify the below program to store the customer number and kilowatt-hours in arra
Modify the below program to store the customer number and kilowatt-hours in arrays. As you input the customer number and usage in kilowatt-hours store those values in parallel arr…
Modify the below so that it counts the number of steps, rather than printing all
Modify the below so that it counts the number of steps, rather than printing all the steps. For instance, moving four disks took 15 steps. List the number of steps required for st…
Modify the bfs.java program to find the minimum spanning tree using a breadth-fi
Modify the bfs.java program to find the minimum spanning tree using a breadth-first search, rather than the depth-first search. In main(), create a graph with 9 vertices and 12 ed…
Modify the bfs.java program to find the minimum spanning tree using a breadth-fi
Modify the bfs.java program to find the minimum spanning tree using a breadth-first search, rather than the depth-first search. In main(), create a graph with 9 vertices and 12 ed…
Modify the binary search function presented in chapter 9 so that it takes two pa
Modify the binary search function presented in chapter 9 so that it takes two parameters: a const vector of Persons (which will already be sorted by name), and the name of the Per…
Modify the binary search function presented in this chapter so it searches an ar
Modify the binary search function presented in this chapter so it searches an array of strings instead of an array of ints. Test the function with a driver program. Use Program 9.…
Modify the binary search tree implementation to make it an AVL tree. public clas
Modify the binary search tree implementation to make it an AVL tree. public class BinarySearchTreeND < K extends Comparable < ? super K > > // ANY class that extends t…
Modify the binarySearch function presented in this chapter so it searches an arr
Modify the binarySearch function presented in this chapter so it searches an array of strings instead of an array of ints. Test the function with a driver program. Use Program 8-8…
Modify the bubble sortcode given below to implement gap sort. public static void
Modify the bubble sortcode given below to implement gap sort. public static voidbubbleSort (Comparable[] data, int maxlength) { int position, scan; Comparable temp; for (position …
Modify the c++ program so that it also allows the user to enter a 10-character Z
Modify the c++ program so that it also allows the user to enter a 10-character ZIP code, as long as the sixth character is a hyphen. Remove the hyphen before sending the ZIP code …
Modify the card shuffling and dealing program below so the shuffling and dealing
Modify the card shuffling and dealing program below so the shuffling and dealing operations are performed by the same function shuffleAndDeal. The function should contain one nest…
Modify the case study project from Chapter 4 to use menus and function procedure
Modify the case study project from Chapter 4 to use menus and function procedure. Refer to Chapter 4 for project specifications. Use a function procedure t calculate the rental fe…
Modify the checkAnswer method of the Question class of How To 10.1 so that it do
Modify the checkAnswer method of the Question class of How To 10.1 so that it does not take into account different spaces or upper/lowercase characters. For example, the response …
Modify the class ArrayList given in the lecture by adding to it the methods list
Modify the class ArrayListgiven in the lecture by adding to it the methods listed below for Exercise 2. In each case, the appropriate error message should be generated if an inval…
Modify the class BasicHashTable with double hashing (hash2(key)=5-key%5) such th
Modify the class BasicHashTable with double hashing (hash2(key)=5-key%5) such that it stores a list of probe sequences for inserted keys. The class should have the following attri…
Modify the class BinarySearchTree (BST) from your completed Lab Below to add a p
Modify the class BinarySearchTree (BST) from your completed Lab Below to add a public boolean remove(int item) method. The method must be capable of removing an item in the BST no…
Modify the class BinarySearchTree so that it contains the toString method, inste
Modify the class BinarySearchTree so that it contains the toString method, instead of the display method that was given originally. public class BinarySearchTree { public BinarySe…
Modify the class LinkedList given in the lecture by adding to it the functions l
Modify the class LinkedList given in the lecture by adding to it the functions listed below for Exercise 2. In each case, the appropriate error message should be generated if an i…
Modify the class LinkedList given in the lecture by adding to it the functions l
Modify the class LinkedList given in the lecture by adding to it the functions listed below for Exercise 2. In each case, the appropriate error message should be generated if an i…
Modify the class LinkedStack given in class in the following ways. Add the follo
Modify the class LinkedStack given in class in the following ways. Add the following methods: A constructor that loads the stack from an array parameter. The last array element sh…
Modify the class LinkedStack given in class in the following ways. Add the follo
Modify the class LinkedStack given in class in the following ways. Add the following methods: 1. A constructor that loads the stack from an array parameter. The last array element…
Modify the class LinkedStack given in class in the following ways. Add the follo
Modify the class LinkedStack given in class in the following ways. Add the following methods: 1. A constructor that loads the stack from an array parameter. The last array element…
Modify the class Queue to include appropriate error messages if invalid conditio
Modify the class Queue to include appropriate error messages if invalid conditions occur. For example, trying to dequeue an item when the queue is empty. Here is the Main: //Week …
Modify the class Stack to include appropriate error messages if invalid conditio
Modify the class Stack to include appropriate error messages if invalid conditions occur. For example, trying to pop an item when the stack is empty. Here is the Main Code: //Week…
Modify the class date to include exception handling. The code should throw diffe
Modify the class date to include exception handling. The code should throw different exception types based on the initializer values for the data members. The inner classes you wr…
Modify the class personType (below text) as listed below and write a driver to t
Modify the class personType (below text) as listed below and write a driver to test the program. All output should go to the console. Example 12-9 defined a class personType to st…
Modify the classes bellow to match the information here: You must implement the
Modify the classes bellow to match the information here: You must implement the following: 1. The Guppy class requires the following modification: (a) public ArrayList<Guppy&gt…
Modify the classes bellow to match the information here: You must implement the
Modify the classes bellow to match the information here: You must implement the following: 1. The Guppy class requires the following modification: (a) public ArrayList<Guppy&gt…