Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 950 / 1333
Write a Java program/class utilizing a recursive method to estimate the value of
Write a Java program/class utilizing a recursive method to estimate the value of PI using the Gregory-Leibniz series: = (4/1) - (4/3) + (4/5) - (4/7) + (4/9) - (4/11) + (4/13) - (…
Write a Java programm Problem A: Cost of Beer Studies have shown that, on averag
Write a Java programm Problem A: Cost of Beer Studies have shown that, on average, someone who consumes a single 12-ounce can of beer every day without compensating for the calori…
Write a Java programmethod named reversal that returns a new array that is a rev
Write a Java programmethod named reversal that returns a new array that is a reversalof the original array. Use [5.0, 4.4, 1.9, 2.9, 3.4, 3.5] to testthe method. Also, the reversa…
Write a Java project with two different classes. First class named Lab10main sho
Write a Java project with two different classes. First class named Lab10main should contain only the main() method and the second class named Lab10 should contain two overloaded p…
Write a Java project with two different classes. First class named Lab10main sho
Write a Java project with two different classes. First class named Lab10main should contain only the main() method and the second class named Lab10 should contain two overloaded p…
Write a Java public class named Trapezoid.java which has three private attribute
Write a Java public class named Trapezoid.java which has three private attributes: private double base1, private double base2, and private double height. In the class, include a…
Write a Java static method circulate which takes an ArrayList and crea
Write a Java static method circulate which takes an ArrayList <Integer> and creates a shiftedcopy of it. Circulate shifts all elements forward in the list to a new position …
Write a Java static method circulate which takes an ArrayList and crea
Write a Java static method circulate which takes an ArrayList <Integer> and creates a shiftedcopy of it. Circulate shifts all elements forward in the list to a new position …
Write a Java static method circulate which takes an ArrayList and creates a shif
Write a Java static method circulate which takes an ArrayList and creates a shifted copy of it. Circulate shifts all elements forward in the list to a new position based on the in…
Write a Java test program that accepts a binary number from the user. You should
Write a Java test program that accepts a binary number from the user. You should store the binary number in a String. Your program should then use afor loop to sequence through ev…
Write a Java test program that reads a String from the user and then prints the
Write a Java test program that reads a String from the user and then prints the following: Only the uppercase letters in the string. Every second letter in the string. The string …
Write a Java test program, all the code should be in a single main method, that
Write a Java test program, all the code should be in a single main method, that prompts the user for two integers and then prints the sum difference product quotient of the first …
Write a Java test program, all your code should be in the main method, that asks
Write a Java test program, all your code should be in the main method, that asks the user for two numbers representing an investment value and interest rate. Expect the user to en…
Write a Java user-defined class called Student and a class tester called p9. The
Write a Java user-defined class called Student and a class tester called p9. These will be separate Java source files (p9.java and Student.java). The Student class will consist of…
Write a Java, C# or C/C++ program (the choice is yours) for file/directory proce
Write a Java, C# or C/C++ program (the choice is yours) for file/directory processing according to the following rules. The program requested for this project must have a text men…
Write a Java, program that: Implements Prim’s algorithm for finding the minimum
Write a Java, program that: Implements Prim’s algorithm for finding the minimum spanning tree of a weighted graph. Your program should conform to the following specifications. Pro…
Write a Java/C++ program to perform binary addition and subtraction with 8-bit s
Write a Java/C++ program to perform binary addition and subtraction with 8-bit signed binary numbers. You are to write a menu driven program that gives the user three choices, nam…
Write a Java/C/Javascript program that will translate the Little Man Computer\'s
Write a Java/C/Javascript program that will translate the Little Man Computer's instructions from input into machine code output. Please use the LMC Simulator to check your output…
Write a JavaCode:- Desgin a Ship class that has the following members: A field f
Write a JavaCode:- Desgin a Ship class that has the following members: A field for the name of the ship (a string). A field for the year that the ship was build (an int). A constr…
Write a JavaFX (GUI) application that functions as a calculator. It lets users e
Write a JavaFX (GUI) application that functions as a calculator. It lets users enter two numbers, x and y, and select an arithmetic operator from a group of radio buttons. When us…
Write a JavaFX ONLY program named CircleZapper that displays a circle with a rad
Write a JavaFX ONLY program named CircleZapper that displays a circle with a radius of 10 pixels, filled with a random color at a random location on the screen. When you click the…
Write a JavaFX program name InvestmentCalc that calculates the future value of a
Write a JavaFX program name InvestmentCalc that calculates the future value of an investment at a given interest rate for a specified number of years. The formula for the calculat…
Write a JavaFX program named CircleZapper that displays a circle with a radius o
Write a JavaFX program named CircleZapper that displays a circle with a radius of 10 pixels, filled with a random color at a random location on the screen. When you click the circ…
Write a JavaFX program named RectangledCircles that enables the user to add and
Write a JavaFX program named RectangledCircles that enables the user to add and remove points in a two-dimensional plane dynamically. A minimum bounding rectangle is updated as th…
Write a JavaFX program that converts US dollars into Canadian dollars, as shown
Write a JavaFX program that converts US dollars into Canadian dollars, as shown in the following figure. The program lets the user enter an amount in US dollars and display it equ…
Write a JavaFX program that converts US dollars into Canadian dollars, as shown
Write a JavaFX program that converts US dollars into Canadian dollars, as shown in the following figure. The program lets the user enter an amount in US dollars and display it equ…
Write a JavaScript File– Read all information from HTML Form. Display Submitted
Write a JavaScript File– Read all information from HTML Form. Display Submitted information in the different window. <!DOCTYPE html> <html> <head> <meta ch…
Write a JavaScript function sigLoss(x, y) that estimates the number of base 10 d
Write a JavaScript function sigLoss(x, y) that estimates the number of base 10 digits of precision loss in doing the subtraction x - y, according to the estimate just mentioned.. …
Write a JavaScript function to compute and return a person’s score in the game o
Write a JavaScript function to compute and return a person’s score in the game of 21. Your function must have this header The parameter hand is an array that contains integers bet…
Write a JavaScript program that calculates the sales tax and total price of an i
Write a JavaScript program that calculates the sales tax and total price of an item. Assume a sales tax rate of 8%, which means you will multiply the cost of the item by .08 in or…
Write a JavaScript program that converts a distance in miles into a distance in
Write a JavaScript program that converts a distance in miles into a distance in meters. One mile is equal to 1.60935 kilometers. If you multiple the number of miles times 1.60935,…
Write a JavaScript program that reads three integers named start, end, and divis
Write a JavaScript program that reads three integers named start, end, and divisor from three textfields. Your program must output to a div all the integers between start and end,…
Write a JavaScript program to make change. You should use prompt() to read a str
Write a JavaScript program to make change. You should use prompt() to read a string and parseInt() to convert the string into an integer number of cents (i.e. fractions of a dolla…
Write a JavaScript program which will ask user to enter two number between 1 and
Write a JavaScript program which will ask user to enter two number between 1 and 20. Your program will then output the number, its square, and its cube from the smaller number to …
Write a JavaScript program which will simulate turtle graphics. You will use two
Write a JavaScript program which will simulate turtle graphics. You will use two dimensional array to represent a floor of 20 x 20. The commands that you can give to the turtle is…
Write a JavaScript script that will ask the user to enter in the length of the s
Write a JavaScript script that will ask the user to enter in the length of the side of a cube. (all the sides of a cube are equal) Based on the value that is entered by the user f…
Write a JavaScript script that will calculate and display the weekly gross pay,
Write a JavaScript script that will calculate and display the weekly gross pay, taxes, and net pay. This has to be done in Javascript. Details are below: Paycheck Calculator Pleas…
Write a Javaa program (name it PalindromInteger), to check if an integer value i
Write a Javaa program (name it PalindromInteger), to check if an integer value is a palindrome or not, using the methods with the following headers: // Return the reversal of an i…
Write a Javaprogram that prints all strings defined by a regular expressionup to
Write a Javaprogram that prints all strings defined by a regular expressionup to a givenlength. Assume the alphabet ={1,0}. Prompt the user to enter a regular expression and an in…
Write a Javascript function regularPolygonGeometry(n, innerColor, outerColor) th
Write a Javascript function regularPolygonGeometry(n, innerColor, outerColor) that returns a Geometry object that represents an n-sided regular polygon. The polygon should be cent…
Write a Javascript program that Allows the user to buy Po’s toys as listed on th
Write a Javascript program that Allows the user to buy Po’s toys as listed on the page.The page should include parallel arrays (at least two).One array (RichardItem) holds the nam…
Write a Javascript program that uses arrays to store the highest and lowest temp
Write a Javascript program that uses arrays to store the highest and lowest temperatures for each month of the year. The user of the program should be able to input these monthly …
Write a Javascript program which uses DOM properties and methods to insert a new
Write a Javascript program which uses DOM properties and methods to insert a new paragraph with each button click as shown below. CNN.com-Ex br Tiger Woodsx "we understa x ?????? …
Write a Javascript web page that asks the user for a positive integer no greater
Write a Javascript web page that asks the user for a positive integer no greater than 15. The program should display a square on the screen using the character 'X'. The number ent…
Write a Javascript web page that asks the user for a positive integer no greater
Write a Javascript web page that asks the user for a positive integer no greater than 15. The program should display a square on the screen using the character 'X'. The number ent…
Write a Jave program we put together a set of matrices that would be generated b
Write a Jave program we put together a set of matrices that would be generated by the Floyd-Warshall algorithm. These matrices give us the value of an optimal solution, but we sti…
Write a JaveScript function showArraySum (ref, ar) that is passed (1) a string r
Write a JaveScript function showArraySum (ref, ar) that is passed (1) a string ref that is the value of the id attribute of an element of the HTML document and (2) an array ar of …
Write a LC-3 assembly program to subtract two integers (between 0 and 9) provide
Write a LC-3 assembly program to subtract two integers (between 0 and 9) provided by the user. Prompt the user to input two integers, subtract one from the other, and display the …
Write a LEGv8 assembly code to compute the equation g = (a + b) - (c - d) + (e +
Write a LEGv8 assembly code to compute the equation g = (a + b) - (c - d) + (e + f). The values a, b, c, d, e, and f are stored in registers X10, X11, X12, X13, X14, and X15 respe…
Write a LINQ query that selects all the Employees from the array in Fig. 11.4 wi
Write a LINQ query that selects all the Employees from the array in Fig. 11.4 with salaries greater than $4000. Then determine how many Employees are in the result and calculate t…