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

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 1190 / 1333

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
Write code that finds a maximum flow in a directed graph, using the Ford-Fulkers
Write code that finds a maximum flow in a directed graph, using the Ford-Fulkerson algorithm on capacities given as matrix void maximum flow(int n, int s, int t, int *capacity, in…
Write code that finds a maximum flow in a directed graph, using the Ford-Fulkers
Write code that finds a maximum flow in a directed graph, using the Ford-Fulkerson algorithm on capacities given as matrix void maximum flow(int n, int s, int t, int *capacity, in…
Write code that nds a shortest path in a dense graph, using Dijkstra\'s algorith
Write code that nds a shortest path in a dense graph, using Dijkstra's algorithm in the simple array version. You write a function struct listnode shortest path(int n, int s, int …
Write code that nds a shortest path in a dense graph, using Dijkstra\'s algorith
Write code that nds a shortest path in a dense graph, using Dijkstra's algorithm in the simple array version. You write a function struct listnode shortest path(int n, int s, int …
Write code that nds a shortest path in a dense graph, using Dijkstra\'s algorith
Write code that nds a shortest path in a dense graph, using Dijkstra's algorithm in the simple array version. You write a function struct listnode shortest path(int n, int s, int …
Write code that reads the numbers contained in the file and computes the followi
Write code that reads the numbers contained in the file and computes the following: A total count of the numbers in the file. The smallest and the second smallest number in the fi…
Write code that uses a JList to hold three shape names – Rectangle, Square, and
Write code that uses a JList to hold three shape names – Rectangle, Square, and Circle, as well as an open area to the left of the JList. When a user clicks on the GUI to the left…
Write code that uses the input string stream inSS to read input data from string
Write code that uses the input string stream inSS to read input data from string userInput, and updates variables userMonth, userDate, and userYear. Sample output if userinput is …
Write code that would go inside of a handler in a GUI program The program should
Write code that would go inside of a handler in a GUI program The program should do the following. when the user clocks the submit button the program should get the text typed int…
Write code that would go inside of a handler in a GUI program. The program shoul
Write code that would go inside of a handler in a GUI program. The program should do the following: when the user clicks the submit button, the program should get the text typed i…
Write code that would go inside of a handler in a GUI program. The program shoul
Write code that would go inside of a handler in a GUI program. The program should do the following: when the user clicks the submit button, the program should get the text typed i…
Write code that: Below is a \'Students.txt\' file that contains information on m
Write code that: Below is a 'Students.txt' file that contains information on many students. Your programmust read the file, create many Student objects, all of which will be store…
Write code to accomplish each of the following: Using typedef, declare a structu
Write code to accomplish each of the following: Using typedef, declare a structure, Automobile, with the following members: model - string of 25 characters maximum year - integer …
Write code to assign to the variable format a formatting string that will displa
Write code to assign to the variable  format a formatting string that will display three values referenced by the variables  quantity (type int),description (type str), and unitPr…
Write code to build a graph of all the possible tic-tac-toe games that uses the
Write code to build a graph of all the possible tic-tac-toe games that uses the pythons.graphs Graph and Vertex classes. Each vertex represents a unique board, and each edge repre…
Write code to complete double pennies s base case. Sample output for below progr
Write code to complete double pennies s base case. Sample output for below program Number of pennies after 10 days 1024 Note: These activities may test code with different test va…
Write code to complete doublePennies()\'s base case. Sample output for below pro
Write code to complete doublePennies()'s base case. Sample output for below program: public class CalculatePennies { // Returns number of pennies if pennies are doubled numDays ti…
Write code to complete double_pennies()\'s base case. Sample output for below pr
Write code to complete double_pennies()'s base case. Sample output for below program: Note: These activities may test code with different test values. This activity will perform f…
Write code to complete printFactorial()\'s recursive case. Sample output if user
Write code to complete printFactorial()'s recursive case. Sample output if userVal is 5: 5! = 5 * 4 * 3 * 2 * 1 = 120 public class RecursivelyPrintFactorial { public static void p…
Write code to complete print_factorial()\'s recursive case. Sample output if use
Write code to complete print_factorial()'s recursive case. Sample output if user_val is 5: 5! = 5 * 4 * 3 * 2 * 1 = 120 def print_factorial(fact_counter, fact_value): output_strin…
Write code to complete print_factorial()\'s recursive case. Sample output if use
Write code to complete print_factorial()'s recursive case. Sample output if user_val is 5: def print_factorial(fact_counter, fact_value):     output_string = ''     if fact_counte…
Write code to copy the 0th element of an array called AR into all the other elem
Write code to copy the 0th element of an array called AR into all the other elements of the array. Assume there are 10 elements in the array. Complete the following sentence: all …
Write code to create a \"Circle\" class. The Circle class should meet the follow
Write code to create a "Circle" class. The Circle class should meet the following specs: * Circles should have the following 3 instance variables ("properties"): An x coordinate a…
Write code to determine engineering constants for a single ply in the laminate c
Write code to determine engineering constants for a single ply in the laminate coordinate system for a ply for which engineering constants are known and measured through ASTM test…
Write code to establish addressability to the data referenced by the label NBR u
Write code to establish addressability to the data referenced by the label NBR using the register r3 9.1 9.2 Use the following code segment to answer parts a through d hw42.s .dat…
Write code to open a file called adata.out, and write the contents of the follow
Write code to open a file called adata.out, and write the contents of the following array out to it in binary form (with no data conversion). int a[5]; What would be the best file…
Write code to perform the following steps for an array of integers Declare an ar
Write code to perform the following steps for an array of integers Declare an array of100 integers Have the user enter a value for each element in the array Find the location in t…
Write code to performe each of the following operations. 1. Creat a new instance
Write code to performe each of the following operations. 1. Creat a new instance of the Random class which seeds the random number generator 101101101. Name the reference myNumber…
Write code to read in words from a given*word.txt* file, then prompt the user fo
Write code to read in words from a given*word.txt* file, then prompt the user for two words and print out how many words in the file fall between those words. If one of the two wo…
Write code to run the four quantum computations shown below. Explain what you ex
Write code to run the four quantum computations shown below. Explain what you expect to measure. Perform the measurements and reconcile with your expectations. Provide the data in…
Write code to search a float array named values for the value in the variable na
Write code to search a float array named values for the value in the variable named findMe. The array has num number of elements in the list. Inside the loop, print out the elemen…
Write code to split an input string (variable \"name\") into twooutput strings (
Write code to split an input string (variable "name") into twooutput strings (variables "first" and "last"). Assume that the userprovides input containing only the characters a th…
Write code to trigger an interrupt at both a press and a release of push button
Write code to trigger an interrupt at both a press and a release of push button S2. Turn on and off the red LED to indicate if the button is pressed down or released. Recall that …
Write code to “de-vowel” an input string. Assume that the user provides input co
Write code to “de-vowel” an input string. Assume that the user provides input containing only the characters a through z (and all lowercase). Your code should create an output str…
Write code underneath the 2 buttons as follows: Perform the following error chec
Write code underneath the 2 buttons as follows: Perform the following error checking on user input when the "Calculate mpg" button is clicked. If user enters 0 or negative values,…
Write code underneath the 2 buttons as follows: Perform the following error chec
Write code underneath the 2 buttons as follows: Perform the following error checking on user input when the "Calculate mpg" button is clicked. If user enters 0 or negative values,…
Write code using R Language or Python, that reads in the .csv files and generate
Write code using R Language or Python, that reads in the .csv files and generates a Manhattan Plot (using any library). I cannot attach the .csv files mentioned below so any files…
Write code using the Microsoft Assembly Language MASM. Your program must be prop
Write code using the Microsoft Assembly Language MASM. Your program must be properly Include comment lines at the end of each line. A. Integer Expression Calculation Write a progr…
Write codes for following operations. (a) add the values of file register 20h an
Write codes for following operations. (a) add the values of file register 20h and 25h. Store the result in file register 45h. (b) add the value 50h with the content of file regist…
Write codes in Visal Basic language 2013 In Visual Basic, Suppose a course has u
Write codes in Visal Basic language 2013 In Visual Basic, Suppose a course has up to 10 students enrolled and three exams are given during the semester. Write a program that accep…
Write coments on the program on how the program works and how to run it. Please
Write coments on the program on how the program works and how to run it. Please comment every line function [fs,nf] =prime_factors_sp(v) %written by...... %this program will find …
Write comment lines on each line of code. java 5. Problem Statement Create an in
Write comment lines on each line of code. java 5. Problem Statement Create an interface Stack in package myPack with following methods Methods: void push(int l) e int pop Create t…
Write comment lines to this program that explain what the program is doing: impo
Write comment lines to this program that explain what the program is doing: import javax.swing.*; import java.awt.event.*; class Calc implements ActionListener { JFrame f; JTextFi…
Write comments for the given example to explain your understanding of the C prog
Write comments for the given example to explain your understanding of the C program code: /*************************************************************************** intro ******…
Write comments of the C program codefor the given example to explain your unders
     Write comments of the C program codefor the given example to explain your understanding of each line of the code /************************************************************…
Write comments on each line in assemmbly code below that explain what each line
Write comments on each line in assemmbly code below that explain what each line does. 1. .section .text 2. .globl _start 3. _start: 4. xor %eax, %eax // your comments go here 5. p…
Write compare_ratios2.cpp to take four nonnegative integers a, b, c and d (in th
Write compare_ratios2.cpp to take four nonnegative integers a, b, c and d (in that order) on std :: cin and to judge whether a/b or c/d is the larger, using only integral arithmet…
Write compile and test a program named ShapesDemo. The program will create sever
Write compile and test a program named ShapesDemo. The program will create several objects that descend from an abstract class called GeometricFigure and demonstrate their methods…
Write complete Jaava program that creats a subclass Pinetree of the Tree class.
Write complete Jaava program that creats a subclass Pinetree of the Tree class. It contains: 1:Prime Properties ConeNum(double) and LeafShape(string) 2: Both default and standard …
Write complete MIPS32 assembly language program fro this exercise. Name your ass
Write complete MIPS32 assembly language program fro this exercise. Name your assembly language source code file hw3-4-s. The greatest common divisor (GCD) of two integers a and b …