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 413 / 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 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: 3. Implement a new class called Ecosystem. Ecosystem contains and drives the simulation …
Modify the client.c and server.c in this way: After the client receives “This se
Modify the client.c and server.c in this way: After the client receives “This server has been contacted 1 times”, instead of exit, the client sends back “This client has been cont…
Modify the client.c and server.c program from Assignment 1 to add the following
Modify the client.c and server.c program from Assignment 1 to add the following function: when the client connects to the server, the client provides the name of a directory D to …
Modify the clock pane class by adding complete clock numbers with ticks. 12, 1,
Modify the clock pane class by adding complete clock numbers with ticks. 12, 1, 2, 3 4, 5, 6, 7, 8, 9, 10,11,12 import java.util.Calendar; import java.util.GregorianCalendar; impo…
Modify the code as necessary to generate and print all 6! = 720 combinations of
Modify the code as necessary to generate and print all 6! = 720 combinations of the 5 letter input string: “abcdef”. For example: abcdef, abcedf, abdcef, ... #include <stdio.h&…
Modify the code at the bottom so that it includes the following: prompts the use
Modify the code at the bottom so that it includes the following: prompts the user for         Their name         Weight         Basketball hours         Running hours         Slee…
Modify the code bellow so that the lowest test score is dropped. This score shou
Modify the code bellow so that the lowest test score is dropped. This score should not be included in the calculation of the average. // Headers #include "stdafx.h" #include #incl…
Modify the code below so it will use proper GUI components, such as labels, text
Modify the code below so it will use proper GUI components, such as labels, text fields, and buttons (Submit, Clear, and Exit) to perform the same task as below. All output messag…
Modify the code below so that it displays: apples oranges bananas pineapple when
Modify the code below so that it displays: apples oranges bananas pineapple when n1=1 and n2=2 AND apples bananas pineapple when n1 = 1 and n2 =/= 2 (n2 does NOT equal to 2, sorry…
Modify the code below so that the main() function calls the interim() function w
Modify the code below so that the main() function calls the interim() function which in turn calls the Quotient() functions. The Quotient() functions throws a DivByZero exception,…
Modify the code below so that two separate listener classes are used - one for e
Modify the code below so that two separate listener classes are used - one for each of the two buttons. public class LettRight Panel extends JPanel {private JButton left, right; p…
Modify the code below to count the number of comparisons and the number of swaps
Modify the code below to count the number of comparisons and the number of swaps import java.util.Arrays; import java.util.Random; public class InsertionSort { private int[] data;…
Modify the code below to count the number of comparisons and the number of swaps
Modify the code below to count the number of comparisons and the number of swaps import java.util.Random; public class MergeSort { private int[] data; private static final Random …
Modify the code below to display the information to the bottom of the page =====
Modify the code below to display the information to the bottom of the page ============================ #!/usr/bin/python import socket ipAddress = raw_input("Enter the target IP …
Modify the code below to include the following: 1. user clicks on a specific loc
Modify the code below to include the following: 1. user clicks on a specific location such as a button or image to roll dice instead or rolling on its own 2 . all dice that are no…
Modify the code below to use a for loop to add all the lines from the file on se
Modify the code below to use a for loop to add all the lines from the file on separate tracks. from earsketch import* init() setTempo(100) file Data = importFile("http://earsketch…
Modify the code below which will read single characters at a time and capitalize
Modify the code below which will read single characters at a time and capitalize each letter using toupper() in a SPECIFIED COLUMN of EACH word (NOT "ONE" WORD), which column is s…
Modify the code for a 6-bit adder subtractor combination. Correct any bugs in th
Modify the code for a 6-bit adder subtractor combination. Correct any bugs in the reference code. • Use different files for different C functions, also develop your own header fil…
Modify the code of Listing 9.1 to also validate that the phone field of the form
Modify the code of Listing 9.1 to also validate that the phone field of the form is not blank. Have the program produce only one alert message, saying which field(s) require atten…
Modify the code of Listing to include buttons to increase and decrease the video
Modify the code of Listing to include buttons to increase and decrease the video Zoom level. You will have to add you own .swf to make it work. <head> <title> Using Em…
Modify the code of “FCFS Scheduling Algorithm”, to run processes according to th
Modify the code of “FCFS Scheduling Algorithm”, to run processes according to their priorities. Processes will be generated randomly between 8 and 12. Priority is randomly generat…
Modify the code segment below so that it aso outputs theposition of the Fibonacc
Modify the code segment below so that it aso outputs theposition of the Fibonacci number in the sequence. For eg. 1      1 2      1 3      2 4      3 5      5 6      8 7      17 f…
Modify the code so input format is checked (InputMismatchException and obviously
Modify the code so input format is checked (InputMismatchException and obviously the NumberformatException and also when an user withdraws more than the amount he has in his accou…
Modify the code so it shows the average of each course and each student in a nic
Modify the code so it shows the average of each course and each student in a nicely formatted table. #include <string> #include <iostream> #include <iomanip> usi…
Modify the code so that it only creates one new thread and not two. Do not modif
Modify the code so that it only creates one new thread and not two. Do not modify any other arguments! #include <pthread.h> #include <stdio.h> #include <stdlib.h&gt…
Modify the code so that the program prompts the user three questions and output
Modify the code so that the program prompts the user three questions and output six lines of messages as described below: Your program asks for today’s date and two users’ birthda…
Modify the code to achieve the same results using only two processes. (A single
Modify the code to achieve the same results using only two processes. (A single process begins executing the main program. The process calls create twice to start two new processe…
Modify the code to be able to input any number of students (i.e. the loop is con
Modify the code to be able to input any number of students (i.e. the loop is controlled by the user input). You will still only have 3 for each student. Support your experimentati…
Modify the code to decided if parentheses and/or braces are nested properly. exa
Modify the code to decided if parentheses and/or braces are nested properly. example - (({}{()}) - is nested properly, (({)}- is not nested properly. Hint: as the program reads ch…
Modify the code to decided if parentheses and/or braces are nested properly. exa
Modify the code to decided if parentheses and/or braces are nested properly. example - (({}{()}) - is nested properly, (({)}- is not nested properly. Hint: as the program reads ch…
Modify the code to display their respective arrays one line at a time using the
Modify the code to display their respective arrays one line at a time using the index as a label for the index’s value. /* The purpose of this program is to demonstrate linear sea…
Modify the code to find and remove the highest and lowest values from the ArrayL
Modify the code to find and remove the highest and lowest values from the ArrayList, and then print the remaining values in the ArrayList. Loopy2.java import java.util.ArrayList; …
Modify the code to find out what the firefox browser and another browser will se
Modify the code to find out what the firefox browser and another browser will send out in the header part of the HTTP request. int main int argc, char argv[]) int ser rvSock Socke…
Modify the code to have it accept upper case inputs aswell as the lower case mod
Modify the code to have it accept upper case inputs aswell as the lower case modify the program to set valid and invalid values including character, integer/float for each option …
Modify the code to have it accept upper case inputs aswell as the lower case mod
Modify the code to have it accept upper case inputs aswell as the lower case modify the program to set valid and invalid values including character, integer/float for each option …
Modify the code to have it accept upper case inputs aswell as the lower case mod
Modify the code to have it accept upper case inputs aswell as the lower case modify the program to set valid and invalid values including character, integer/float for each option …
Modify the code to have it accept upper case inputs modify the program to set va
Modify the code to have it accept upper case inputs modify the program to set valid and invalid values including character, integer/float for each option it should be able to hand…
Modify the code to print only the average of all the integers from the ArrayList
Modify the code to print only the average of all the integers from the ArrayList. Loopy2.java import java.util.ArrayList; import java.util.Scanner; public class Loopy2 {    public…
Modify the code to use functions. Create a getInput function, a calcTotal functi
Modify the code to use functions. Create a getInput function, a calcTotal function and a displayResults function. The purpose of getInput is to prompt the user for input and assig…
Modify the container class you wrote for Lab 2 to use pointers and dynamic array
Modify the container class you wrote for Lab 2 to use pointers and dynamic array allocation. Do not use the [ ] operator to access aray elements, instead use pointer Make the clas…
Modify the craps application of fig 7.8 to allow wagering. Initialize variable b
Modify the craps application of fig 7.8 to allow wagering. Initialize variable balance to 1000 dollars. Prompt the player to enter a wager. Check that wager is less than or equal …
Modify the craps program of Fig. 5.14 to allow wagering. Package as a function t
Modify the craps program of Fig. 5.14 to allow wagering. Package as a function the portion of the program that runs one game of craps. Initialize variable bankBalance to 1000 doll…
Modify the definition of the class Money so that the following are added: - Over
Modify the definition of the class Money so that the following are added: - Overload the operators > and >= as member functions for the Money class. - Overload the << …
Modify the definition of the class Money so that the following are added: - The
Modify the definition of the class Money so that the following are added: - The operators <, <=, >, and >= have all been overloaded to apply to the type Money. - The f…
Modify the definition of the class Species in Listing 5.19 of Chapter 5 by remov
Modify the definition of the class Species in Listing 5.19 of Chapter 5 by removing the method setSpecies and adding the following methods: -Five constructors: one for each instan…
Modify the definition of the class Species in Listing 5.19 of Chapter 5 by remov
Modify the definition of the class Species in Listing 5.19 of Chapter 5 by removing the method setSpecies and adding the following methods: -Five constructors one for each instanc…
Modify the document described in Exercise 6.2 to make the buttons toggle their r
Modify the document described in Exercise 6.2 to make the buttons toggle their respective copies of your image on and off so that, at any time, the document may include none, one,…
Modify the example select.c from the class examples so that it sorts two paralle
Modify the example select.c from the class examples so that it sorts two parallel arrays. Use the existing array of scores and add a parallel array of floating-point data to track…
Modify the existing ArrayLists\'s contents, by erasing 200, then inserting 100 a
Modify the existing ArrayLists's contents, by erasing 200, then inserting 100 and 102 in the shown locations. Use ArrayList's remove() and add() only. Sample output of below progr…
Modify the existing ArrayLists\'s contents, by erasing 200, then inserting 100 a
Modify the existing ArrayLists's contents, by erasing 200, then inserting 100 and 102 in the shown locations. Use ArrayList's remove() and add() only. Sample output of below progr…