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

Browse C

Alphabetical listing with fast deep pagination.
81169 items • Page 1379 / 1624

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
Create a Java card game program, named pisti. The user will play the game with t
Create a Java card game program, named pisti. The user will play the game with the computer. -------------------------- *****THIS IS THE FULL PROJECT AND DOES NOT LACK ANY INSUFFI…
Create a Java class Guess.java with instance variables, secretNumber(an int), wh
Create a Java class Guess.java with instance variables, secretNumber(an int), which is the number the user is trying to guess, guessLimit(int), which is maximum number of guesses,…
Create a Java class called Dog that contains two private instance variables: nam
Create a Java class called Dog that contains two private instance variables: name: (type String) age: (type int) The class should include the following methods: a constructor that…
Create a Java class called Invoice for a store to invoice for an item sold at th
Create a Java class called Invoice for a store to invoice for an item sold at the store. An invoice should include the following four private instance variables: partNum: part num…
Create a Java class called Rational for performing arithmetic operations with Ra
Create a Java class called Rational for performing arithmetic operations with Rationals.The class Rational must have the following: Data members: private int numerator int denomin…
Create a Java class called Rational for performing arithmetic operations with Ra
Create a Java class called Rational for performing arithmetic operations with Rationals. The class Rational must have the following: Data members: private int numerator int denomi…
Create a Java class called ResturantBill. An object from this class should have
Create a Java class called ResturantBill. An object from this class should have five instance variables: Name of the restaurant, Cost,Tax,Tip,and Total Cost. The name of the resta…
Create a Java class called Student that represents a student and some grades. Th
Create a Java class called Student that represents a student and some grades. The class should include the following five instance variables: firstName: (type String) lastName: (t…
Create a Java class in BlueJ called Card . The class should have the following:
Create a Java class in BlueJ called Card. The class should have the following: A field called rank which stores the value of the card. The integer values 1 through 10 will denote …
Create a Java class named Book with instance variables title, author, ISBN, and
Create a Java class named Book with instance variables title, author, ISBN, and year Published. Include Java doc style comments to describe your interface. Such a class would norm…
Create a Java class named ButtonBounce (stored in package program7 ) that implem
Create a Java class named ButtonBounce (stored in package program7) that implements a continuous animation of a Blue Ball bouncing within a bordered JPanel Region. The following G…
Create a Java class named HeadPhone to represent a headphone set. The class cont
Create a Java class named HeadPhone to represent a headphone set. The class contains: Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 to denote the headphone …
Create a Java class named HeadPhone to represent a headphone set. The class cont
Create a Java class named HeadPhone to represent a headphone set. The class contains: Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 to denote the headphone …
Create a Java class named HeadPhones to represent a headphone set. The class con
Create a Java class named HeadPhones to represent a headphone set. The class contains: Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 to denote the headphone…
Create a Java class named Invoicing that includes three overloaded computeInvoic
Create a Java class named Invoicing that includes three overloaded computeInvoice() methods for a clothes store: - When computeInvoice() receives a single parameter, it represents…
Create a Java class or classes that averages a student\'s class grades to get th
Create a Java class or classes that averages a student's class grades to get their average GPA. The code has to follow the following criteria: Write code for a Java program as fol…
Create a Java class that a Hotel would use to store a list of the property’s roo
Create a Java class that a Hotel would use to store a list of the property’s rooms and room specifications (rates, beds, kitchenette, handicapped accessibility) for a total of 30 …
Create a Java class that calculates BMI. Your program should have the following
Create a Java class that calculates BMI. Your program should have the following fields: name height in meters mass in kilograms The BMI formula is as follows: How BMI relates to f…
Create a Java class that implements a Binary Search Tree. The class must include
Create a Java class that implements a Binary Search Tree. The class must include the following functions: height() - provides the height of the binary tree size() - provides the s…
Create a Java class using generics: ItemPair. Objects of this class hold a pair
Create a Java class using generics: ItemPair. Objects of this class hold a pair of two items that are the same type. For example, an ItemPair can hold two Integers or it could hol…
Create a Java class which constructs a graph and performs a few graph operations
Create a Java class which constructs a graph and performs a few graph operations. Test out your code with the driver. Download the class called Graph from here. It already has som…
Create a Java class with these requirements: *If you wish, create this class you
Create a Java class with these requirements: *If you wish, create this class yourself, rather than using a pre-defined class from a Java standard library. Write code for a Java pr…
Create a Java class, using a separate .Java file, for any one business object by
Create a Java class, using a separate .Java file, for any one business object by adhering to the following requirements: 1. Justify, using a few sentences, why your choice may be …
Create a Java code that outputs a Sudoku board,9 buttons,and a check button same
Create a Java code that outputs a Sudoku board,9 buttons,and a check button same as the picture below.The user will then fill up the rest of the square board that don’t have a num…
Create a Java console banking application Features Deposit Deposit money into th
Create a Java console banking application FeaturesDeposit Deposit money into the account Withdraw Take money out of the account Balance Show the balance of the account Report Incl…
Create a Java console program that prompts a user to enter a number. The program
Create a Java console program that prompts a user to enter a number. The program uses the input value to calculate and list the products of two numbers up to the entered number. F…
Create a Java console program that prompts a user to enter a number. The program
Create a Java console program that prompts a user to enter a number. The program uses the input value to calculate and list the products of two numbers up to the entered number. F…
Create a Java console program that prompts a user to enter a number. The program
Create a Java console program that prompts a user to enter a number. The program uses the input value to calculate and list the products of two numbers up to the entered number. F…
Create a Java console program that prompts a user to enter an investment amount
Create a Java console program that prompts a user to enter an investment amount (i.e., present value), the number of periods (e.g., months), and the annual percentage rate (APR). …
Create a Java file called GCD.java that find the greatest common divisor of two
Create a Java file called GCD.java that find the greatest common divisor of two positive integers Operation • The application prompts the user to enter two numbers. You can assume…
Create a Java fx for a single player who wants to play a game called Pong. The r
Create a Java fx for a single player who wants to play a game called Pong. The requirements are a rectangular paddle moves back and forth via mouse drag along the bottom of the pa…
Create a Java interface called Measurable . The Measurable interface should have
Create a Java interface called Measurable.  The Measurable interface should have one method: int getMeasure() Modify the Wall and Field classes to implement the Measurable interfa…
Create a Java or C# application that simulates a minimum of 3 spheres moving thr
Create a Java or C# application that simulates a minimum of 3 spheres moving through a frictionless environment with gravity. The environment should be a confined cube area for th…
Create a Java program Named LB04 with a class name HardMonogram Input: fullName
Create a Java program Named LB04 with a class name HardMonogram Input:   fullName Process: getInitial(separateName): extract the first character string from each part of a full na…
Create a Java program TriangleStat.java that asks the user to input the lengths
Create a Java program TriangleStat.java that asks the user to input the lengths of three sides of a triangle. After receiving the three values, your program should provide answers…
Create a Java program based on the geometric shapes example described at the beg
Create a Java program based on the geometric shapes example described at the beginning of this lesson using Classes Square, Triangle, Rectangle, and Circle to help describe inheri…
Create a Java program called Calculator.java that reads a line of an expression
Create a Java program called Calculator.java that reads a line of an expression with a binary operator (+, –,*,/) and two operands of double type. Your program should determine th…
Create a Java program called Point. This project will have Point.java as its fil
Create a Java program called Point. This project will have Point.java as its file. The Point class will represent a point in 2-Dimensional space. – (6 points) The Point class will…
Create a Java program called Point. This project will have Point.java as its le.
Create a Java program called Point. This project will have Point.java as its le. The Point class will represent a point in 2-Dimensional space. { The Point class will have two ins…
Create a Java program for an electronic golf score card that lets the user enter
Create a Java program for an electronic golf score card that lets the user enter their score for each hole. Keep in mind that you don't know all of Java yet, so you will have to k…
Create a Java program for the following problem. Note* Do not make the game actu
Create a Java program for the following problem. Note* Do not make the game actually work! Do not use any of the GUI editing capabilities of Eclipse for this assignment.    Write …
Create a Java program in eclipse calucating GPA of a student. Could use assitatn
Create a Java program in eclipse calucating GPA of a student. Could use assitatnce in creating this doing the following: The program will gather all the information to calculate a…
Create a Java program named Homework8 . Design a method printOddNumbers that pri
Create a Java program named Homework8. Design a method printOddNumbers that prints all positive, odd numbers up to a given max. Design a method printPrimeFactors that prints all p…
Create a Java program named Homework8 . Design a method printOddNumbers that pri
Create a Java program named Homework8. Design a method printOddNumbers that prints all positive, odd numbers up to a given max. Design a method printPrimeFactors that prints all p…
Create a Java program named Homework8. Design a method printoddNumbers that prin
Create a Java program named Homework8. Design a method printoddNumbers that prints all positive, odd numbers up to a given max. . Design a method printPrimeFactors that prints all…
Create a Java program of a Tic Tac Toe game. Note: This is a one-player game, pr
Create a Java program of a Tic Tac Toe game. Note: This is a one-player game, program should make the next move. (Otherwise the program is incorrect) Complete the following 4 task…
Create a Java program that allows user to pick a cell phones and cell phone pack
Create a Java program that allows user to pick a cell phones and cell phone packages and show the cost. In this program the design is left up to the programmer however good object…
Create a Java program that allows user to pick a cell phones and cell phone pack
Create a Java program that allows user to pick a cell phones and cell phone packages and show the cost. In this program the design is left up to the programmer however good object…
Create a Java program that analyzes a folder of input files and produces the out
Create a Java program that analyzes a folder of input files and produces the output into multiple other files. The program must retrieve the paths to every .java and .txt file in …
Create a Java program that analyzes a folder of input files and puts the output
Create a Java program that analyzes a folder of input files and puts the output into a new file. The program cannot use a Map Abstract Data Type or a Dictionary. The program shoul…