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 1022 / 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 a java program that can read an operation and values of two variables. For
Write a java program that can read an operation and values of two variables. For example, Please enter a variable and two integer +, 2, 3 Output 5 If the user enters/2, 0, then yo…
Write a java program that classifies IP Classes from Classes A-E using a 32-bit
Write a java program that classifies IP Classes from Classes A-E using a 32-bit integer. Class A ranges from 0-127. Class B ranges from 128-191. Class C ranges from 192-223. Class…
Write a java program that computes the income tax for an individual. The program
Write a java program that computes the income tax for an individual. The program should ask the user to enter the total taxable income of the year. The program then uses the tax b…
Write a java program that cotains the following requirements: An intial start pa
Write a java program that cotains the following requirements: An intial start pattern will be passed in. The game of Life (not the board game) is intended to model life in a socie…
Write a java program that creates a parallelogram using astericks. The user will
Write a java program that creates a parallelogram using astericks. The user will enter how wide and how many lines in the parallelogram. This is what I got but it is not a parallo…
Write a java program that does basic encrypting of text. You will ask the user t
Write a java program that does basic encrypting of text. You will ask the user the filename of a text file which contains a few sentences of text. You will read this text file one…
Write a java program that expects a numeric grade as input and outputs the corre
Write a java program that expects a numeric grade as input and outputs the corresponding letter grade.
Write a java program that finds out the minimum amount of sales I have to genera
Write a java program that finds out the minimum amount of sales I have to generate in order to make $30,000. The base salary is $5,000. Here is the commission rate: $0.01 - $5,000…
Write a java program that follows the guidelines written in the prompt below: Im
Write a java program that follows the guidelines written in the prompt below: Implement a class that simulates a Clock. Your class must have the following features: 1. Three priva…
Write a java program that forms acalculator. You are suppose to have the 4 main
      Write a java program that forms acalculator. You are suppose to have the 4 main operations (add,subtract, multiply, divide) as methods that take two arguments (ex.Add(10,3))…
Write a java program that guess a number. You inputs numbers until it matched wi
Write a java program that guess a number. You inputs numbers until it matched with randomly generated number. The program keeps ask a user to input numbers between 1 to 6. Once a …
Write a java program that has a class named Octagon that extends the class Circ
Write a java program that has a class named Octagon that extends the class Circ and implements Comparable (compare the object's area) and Cloneable interfaces. Assume that all the…
Write a java program that has the following input and output Input from user: St
Write a java program that has the following input and output Input from user: Start Time (in hh:mm:ss 24 hr format) Start date: (in mm/dd/yyyy format) End Time (in hh:mm:ss 24 hr …
Write a java program that has three static recursive methods and a main method.
Write a java program that has three static recursive methods and a main method. In your main method prompt for user input and display the results of each of your recursive methods…
Write a java program that has three static recursive methods and a main method.
Write a java program that has three static recursive methods and a main method. In your main method (5 marks) prompt for user input and display the results of each of your recursi…
Write a java program that implements Conway’s Game of Life, where StdDraw is use
Write a java program that implements Conway’s Game of Life, where StdDraw is used to visualize how the conditions change, creating an animation. You should implement the solution …
Write a java program that implements a Queue. Operations to implement: Enqueue/p
Write a java program that implements a Queue. Operations to implement: Enqueue/push (E): Add an element to the end of the sequence Dequeue/pop: Remove an element from the start of…
Write a java program that implements the A* algorithm to find a path from any tw
Write a java program that implements the A* algorithm to find a path from any two given nodes. Must meet this criteria: Program is free of syntax and runtime errors Program uses A…
Write a java program that implements these two functions Collection getRoots() –
Write a java program that implements these two functions Collection getRoots() – Returns the roots of the graph (i.e., the nodes with no incoming edges). int edgeCount() – Returns…
Write a java program that is about sorting students from a file based on the sch
Write a java program that is about sorting students from a file based on the school they are attending and students attending the same school sorted by ID in ascending order. Here…
Write a java program that keeps track of Employees, Students and visitors. The a
Write a java program that keeps track of Employees, Students and visitors. The address for all employees and students must be recorded by the system. For an address to be valid it…
Write a java program that lets the user enter four quarterly sales figures for s
Write a java program that lets the user enter four quarterly sales figures for six divisions of a company. The figures should be stored in a two dimensional array. Once the figure…
Write a java program that performs n operations (find, insert, and delete String
Write a java program that performs n operations (find, insert, and delete Strings) on AVL tree and tracks the performance (hint: System.currentTimeMillis()). Your program must hav…
Write a java program that performs n operations (find, insert, and delete String
Write a java program that performs n operations (find, insert, and delete Strings) on AVL tree and tracks the performance (hint: System.currentTimeMillis()). Your program must hav…
Write a java program that performs n operations (find, insert, and delete String
Write a java program that performs n operations (find, insert, and delete Strings) on a Trie tree and tracks the performance using System.currentTimeMillis(). The program must hav…
Write a java program that performs n operations (find, insert, and delete String
Write a java program that performs n operations (find, insert, and delete Strings) on a AVL tree and tracks the performance using System.currentTimeMillis(). The program must have…
Write a java program that plays a game where a player is asked to fill in variou
Write a java program that plays a game where a player is asked to fill in various words of a mostly complete story without being able to see the rest. Then the user is shown his/h…
Write a java program that plays a game where a player is asked to fill in variou
Write a java program that plays a game where a player is asked to fill in various words of a mostly complete story without being able to see the rest. Then the user is shown his/h…
Write a java program that prints the factorial of a positive integer. In mathema
Write a java program that prints the factorial of a positive integer. In mathematics, the factorial of a non-negative integer n. denoted by n!, is the product of all positive inte…
Write a java program that processes a set of ballots. Assume you have 1000 canad
Write a java program that processes a set of ballots. Assume you have 1000 canadidates in all, each of whom is assigned a unique ID number from 0 to 999. The program should run by…
Write a java program that produce multiplication table. You must meet following
Write a java program that produce multiplication table. You must meet following requirements also please put comments in 2 x 1 = 2 2 x 2 = 4 2 x 3 = 6 2 x 4 = 8 2 x 5 = 10 2 x 6 =…
Write a java program that prompts the user to enter in an integer number represe
Write a java program that prompts the user to enter in an integer number representing the number of elements in an integer array. Create the array and prompt the user to enter in …
Write a java program that prompts the user to enter the length in feet and inche
Write a java program that prompts the user to enter the length in feet and inches and outputs the time in 24-hour notation. Your program must contain three exception classes: Inva…
Write a java program that reads 20 integer values within the array. For this pro
Write a java program that reads 20 integer values within the array. For this program, there will be only one array. In your main function, define a constant MAXSIZE for an array. …
Write a java program that reads a file (input.txt) and produces a histogram of t
Write a java program that reads a file (input.txt) and produces a histogram of the most frequently used words (all in lower case) found in the text. Ignore capitalization, whitesp…
Write a java program that reads a file consisting of students testscores in the
Write a java program that reads a file consisting of students testscores in the range 0-200. It should then determine thenumber of students having scores in each of the followingr…
Write a java program that reads a sequence of integers into an ArrayList and the
Write a java program that reads a sequence of integers into an ArrayList and then computes the alternating sum of all elements. For example, if the program is executed with the in…
Write a java program that reads an integer N (2
Write a java program that reads an integer N (2 <= N <= 10000) from an input file named “input7.txt” and then outputs a. All numbers that are divisible by 3 to the output fi…
Write a java program that reads in 20 numbers and stores them into an array of t
Write a java program that reads in 20 numbers and stores them into an array of type integer with a max size of 50. You should use a method to read the numbers. Use the following 2…
Write a java program that reads in and prints a text, line by line, and calls a
Write a java program that reads in and prints a text, line by line, and calls a series of methods as needed. The object of the program is to parse a sentence in order to figure ou…
Write a java program that reads in the average monthly rainfall for a city for e
Write a java program that reads in the average monthly rainfall for a city for each month of the year and then reads in the actual monthly rainfall for each of the previous 12 mon…
Write a java program that reads the card type and the card number and then deter
Write a java program that reads the card type and the card number and then determine if the card number entered is a valid card number.First your program should ask if the credit …
Write a java program that register students for university. Students should cons
Write a java program that register students for university. Students should consists of names, courses and addresses. Implement the interface class RegisterStudent. There should b…
Write a java program that repeatedly lets the user enter an array of values. Onc
Write a java program that repeatedly lets the user enter an array of values. Once the array is entered, the program asks the user whether the values should be summed or multiplied…
Write a java program that replaces certain words and phrases in a sentence with
Write a java program that replaces certain words and phrases in a sentence with other words and phrases: Rules of replacement: 1. Replace "moron" with "unwise person" Replace "idi…
Write a java program that runs a random horse race. The specification: There are
Write a java program that runs a random horse race. The specification: There are three horses. During each round, a random number from 1 to 100 is generated for each horse. The ho…
Write a java program that runs a random horse race. The specification: There are
Write a java program that runs a random horse race. The specification: There are three horses. During each round, a random number from 1 to 100 is generated for each horse. The ho…
Write a java program that runs a random horse race. The specification: There are
Write a java program that runs a random horse race. The specification: There are three horses. During each round, a random number from 1 to 100 is generated for each horse. The ho…
Write a java program that simulates Gambler. The gambler gets in stake and goal.
Write a java program that simulates Gambler. The gambler gets in stake and goal. Each time he play he will move forward 1 or backwards 1. Each time new value is created. The progr…
Write a java program that simulates a lottery. Your program should have an array
Write a java program that simulates a lottery. Your program should have an array of five integers named lotteryNumbers. Use the Random class to generate a random number in the ran…