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 944 / 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 determines whether a meeting room is in violation of f
Write a Java program that determines whether a meeting room is in violation of fire law regulations regarding the maximum room capacity. The program will read in the maximum room …
Write a Java program that displays range and median of a list of numbers (assume
Write a Java program that displays range and median of a list of numbers (assume the list is in ascending order). The list should be initialized as an array with size of at least …
Write a Java program that displays the GUI depicted below (of a Fubuki puzzle) b
Write a Java program that displays the GUI depicted below (of a Fubuki puzzle) by combining a number of standard Layout Managers, as needed. The GUI layout should be as precise as…
Write a Java program that does the following jobs. Step1. Creates a Car table wi
Write a Java program that does the following jobs. Step1. Creates a Car table with car manufacturers, models, model years, and fuel efficiency ratings. Step2. Reads data from a te…
Write a Java program that does the following jobs. Step1. Creates a Car table wi
Write a Java program that does the following jobs. Step1. Creates a Car table with car manufacturers, models, model years, and fuel efficiency ratings. Step2. Reads data from a te…
Write a Java program that does the following. No start file given. (Remember to
Write a Java program that does the following. No start file given. (Remember to put throws Exception after main signature since you are opening a File ) Here is your input file: j…
Write a Java program that does the following: 1. Asks the user for the names of
Write a Java program that does the following: 1. Asks the user for the names of 3 cities, separated by spaces. It is assumed that a given city name won't have spaces in it. So ass…
Write a Java program that does the following: 1. Asks the user for the names of
Write a Java program that does the following: 1. Asks the user for the names of 3 cities, separated by spaces. It is assumed that a given city name won't have spaces in it. So ass…
Write a Java program that does the following: 1. Creates a string array called f
Write a Java program that does the following: 1. Creates a string array called firstNames that holds these values "John", "Frank", "Nick", "Amanda", "Brittany", "Amy", "Deborah", …
Write a Java program that does the following: 1. Creates a string array called f
Write a Java program that does the following: 1. Creates a string array called firstNames that holds these values "John", "Frank", "Nick", "Amanda", "Brittany", "Amy", "Deborah", …
Write a Java program that does the following: 1. Creates an array of 100 integer
Write a Java program that does the following: 1. Creates an array of 100 integers and fills the array with random number between 0 and 999. 2. Passes the array to a method called …
Write a Java program that downloads the first 100 comics of the webcomic XKCD. B
Write a Java program that downloads the first 100 comics of the webcomic XKCD. Be sure to use https:// for all URLS. This is what I have so far, I am trying to download the first …
Write a Java program that finds the heaviest stack of boxes that you can create
Write a Java program that finds the heaviest stack of boxes that you can create out of a set of boxes given as input. Input: The input to the program is a file containing a set of…
Write a Java program that functions as an address book. It should have entries c
Write a Java program that functions as an address book. It should have entries containing at least the following information: first and last name, phone number, date of birth, add…
Write a Java program that functions as an address book. It should have entries c
Write a Java program that functions as an address book. It should have entries containing at least the following information: first and last name, phone number, date of birth, add…
Write a Java program that generates 5 random integers in the range 0-51. Each of
Write a Java program that generates 5 random integers in the range 0-51. Each of these values will represent playing card. Print a text description of each card using the followin…
Write a Java program that generates a password for each employee in a company us
Write a Java program that generates a password for each employee in a company using their name, surname and a special number entered by the user. Assuming a name has n characters …
Write a Java program that generates an array of Fibonacci numbers. Add comments
Write a Java program that generates an array of Fibonacci numbers. Add comments to the program. Specifications: 1. Fills a one-dimensional array with the first 30 Fibonacci number…
Write a Java program that generates an array of Fibonacci numbers. Specification
Write a Java program that generates an array of Fibonacci numbers. Specifications: -Fills a one-dimensional array with the first 30 Fibonacci numbers using a calculation to genera…
Write a Java program that generates an array of Fibonacci numbers. Specification
Write a Java program that generates an array of Fibonacci numbers. Specifications: Fills a one-dimensional array with the first 30 Fibonacci numbers using a calculation to generat…
Write a Java program that generates an array of Fibonacci numbers. Specification
Write a Java program that generates an array of Fibonacci numbers. Specifications: The program . Fills a one-dimensional array with the first 30 Fibonacci numbers using a calculat…
Write a Java program that generates interesting numerical data and uses Java gra
Write a Java program that generates interesting numerical data and uses Java graphics to visualize the data. Required elements include: Use methods containing loops to generate da…
Write a Java program that generates interesting numerical data and uses Java gra
Write a Java program that generates interesting numerical data and uses Java graphics to visualize the data. Required elements include: Use methods containing loops to generate da…
Write a Java program that generates interesting numerical data and uses Java gra
Write a Java program that generates interesting numerical data and uses Java graphics to visualize the data. Required elements include: Use methods containing loops to generate da…
Write a Java program that has 3 Methods: The first method will be called CallFib
Write a Java program that has 3 Methods: The first method will be called CallFibOrFac It will receive a single string as a parameter. If the string is "Fib" it will call the secon…
Write a Java program that has 3 Methods: The first method will be called CallFib
Write a Java program that has 3 Methods: The first method will be called CallFibor Fac It will receive a single string as a parameter. If the string is "Fib" it will call the seco…
Write a Java program that has Point.java as its file. The Point class will repre
Write a Java program that has Point.java as its file. The Point class will represent a point in 2-Dimensional space. The Point class will have two instance variables: x and y. Bot…
Write a Java program that has a Polygon interface, which has abstract methods, a
Write a Java program that has a Polygon interface, which has abstract methods, area( ), and perimeter( ). Implement classes for Triangle, and Quadrilateral, which implement this i…
Write a Java program that implements Conway’s Game of Life, a simple cellular au
Write a Java program that implements Conway’s Game of Life, a simple cellular automaton. See for example: http://www.bitstorm.org/gameoflife/ Our version has a 10 x 10 grid, numbe…
Write a Java program that implements Conway’s Game of Life, a simple cellular au
Write a Java program that implements Conway’s Game of Life, a simple cellular automaton. The grid is represented by a 10 x 10 2­dimensional integer array. If the grid point (i, j)…
Write a Java program that implements a class for a binary minHeap data structure
Write a Java program that implements a class for a binary minHeap data structure. Implement your heap using an array. The minHeap must implement the following functions: void inse…
Write a Java program that implements a simple number guessing game with multiple
Write a Java program that implements a simple number guessing game with multiple questions / answers. The Java class name must be GameXXXXX where XXXXX is your student ID. For eac…
Write a Java program that implements a simple scanner for a source file given as
Write a Java program that implements a simple scanner for a source file given as a command-line argument. The format of the tokens is described below. You may assume that the inpu…
Write a Java program that implements a stack using an array. You can use the cod
Write a Java program that implements a stack using an array. You can use the code from the program below (which was written in C++) as a guideline. Demonstrate your program works …
Write a Java program that implements concepts from any or all of the following,
Write a Java program that implements concepts from any or all of the following, polymorphism, recursion, arraylist, GUI, sorting algorithms. It can be a fun little game like black…
Write a Java program that includes predicates (functions which return a logical
Write a Java program that includes predicates (functions which return a logical value) to find special integers called K-numbers. A positive integer X is a K-number if:           …
Write a Java program that inputs 7 double values from a file dja.txt that repres
Write a Java program that inputs 7 double values from a file dja.txt that represent the Dow Jones Average for 7 days. Your program should output the lowest value for those 7 days …
Write a Java program that inputs 7 double values from a file dja.txt that repres
Write a Java program that inputs 7 double values from a file dja.txt that represent the Dow Jones Average for 7 days. Your program should output the lowest value for those 7 days …
Write a Java program that inputs a list of integer values in the range of -100 t
Write a Java program that inputs a list of integer values in the range of -100 to 100 from the keyboard and computes the sum of the squares of the input values. This program must …
Write a Java program that inputs a list of words from a text file, separated by
Write a Java program that inputs a list of words from a text file, separated by whitespace (blank or tab, and the end of line) Put each word into an array with a count of how many…
Write a Java program that inputs a ten-digit phone number, and then turns that t
Write a Java program that inputs a ten-digit phone number, and then turns that ten- digit phone number into a more readable string with a pair of parentheses, a dash, and a space.…
Write a Java program that inputs two String Variables, first and last, which the
Write a Java program that inputs two String Variables, first and last, which the user should enter with their name. First, convert both strings to all lowercase. Your program shou…
Write a Java program that invokes a method to transposes a square matrix (conver
Write a Java program that invokes a method to transposes a square matrix (convert the rows into columns and vice-versa). For example the transposed matrix for 2 5 7 3 9 6 4 2 1 is…
Write a Java program that is a Tic Tac Toe game between two players. The code is
Write a Java program that is a Tic Tac Toe game between two players. The code is started below. import java.util.*; import java.util.*; public class Proj5 { public static void mai…
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 makes use of the following methods from the String cla
Write a Java program that makes use of the following methods from the String class: Returns true if and only if this string contains the specified sequence of char values. Tests i…
Write a Java program that meets the following requirements: Declare a method to
Write a Java program that meets the following requirements: Declare a method to determine whether an integer is a primenumber Use the following method declarations: public static …
Write a Java program that meets the following requirements: Declare a method to
Write a Java program that meets the following requirements: Declare a method to determine whether an integer is a primenumber Use the following method declarations: public static …
Write a Java program that meets the following requirements: Declare a method to
Write a Java program that meets the following requirements: Declare a method to determine whether an integer is a prime number Use the following method declarations: public static…
Write a Java program that meets the following requirements: Declare a method to
Write a Java program that meets the following requirements: Declare a method to determine whether an integer is a prime number Use the following method declarations: public static…