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 980 / 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 class called Snack. It should have data members for the name of a snack,
Write a class called Snack. It should have data members for the name of a snack, the price of the snack (double), and the number of calories in the snack (int). The class should h…
Write a class called SortedArray.java. You can do all of this work in the main()
Write a class called SortedArray.java. You can do all of this work in the main() method of your class but if there are places to use methods effectively, feel free to do so. Promp…
Write a class called Square that represents a square two-dimensional region Your
Write a class called Square that represents a square two-dimensional region Your Square objects should have the following methods /l Constructs a new Square object whose /l top-le…
Write a class called StatisticsCalculator that calculates the mean (average) and
Write a class called StatisticsCalculator that calculates the mean (average) and standard deviation for a set of integer values entered by the user. Assume all input values will b…
Write a class called StatisticsCalculator that calculates the mean (average) and
Write a class called StatisticsCalculator that calculates the mean (average) and standard deviation for a set of integer values entered by the user. Assume all input values will b…
Write a class called StatisticsCalculator that calculates the mean (average) and
Write a class called StatisticsCalculator that calculates the mean (average) and standard deviation for a set of integer values entered by the user. Assume all input values will b…
Write a class called StorageBuilding that is a subclass of Building. In addition
Write a class called StorageBuilding that is a subclass of Building. In addition to name, a StorageBuilding has two other member variables 1. length of type double 2. width of typ…
Write a class called StringCode with the following functions. (Do not change the
Write a class called StringCode with the following functions. (Do not change these function names or return types, else the tests will fail). public static String blowup(String st…
Write a class called Student (classes start with a capital letter by convention)
Write a class called Student (classes start with a capital letter by convention). Your Student class should have the following: Data: 5 data fields (which should all be private): …
Write a class called Student that extends the provided Person class. Ensure that
Write a class called Student that extends the provided Person class. Ensure that your student class is a concrete class. The foo method for a person should display (to standard ou…
Write a class called Student that has two data members - a string variable calle
Write a class called Student that has two data members - a string variable called name and a double variable called score. It should have a constructor that takes two values and u…
Write a class called Student that has two data members - a string variable calle
Write a class called Student that has two data members - a string variable called name and a double variable called score. It should have a constructor that takes two values and u…
Write a class called SuperDice that defines a collection of SuperDie objects. (S
Write a class called SuperDice that defines a collection of SuperDie objects. (See Exercise 2.) The instance variables include a field that holds the number of dice in the collect…
Write a class called TestArrays1 to store and retrieve login information of 5 us
Write a class called TestArrays1 to store and retrieve login information of 5 users (JAVA). In this class have a main method. In the main method, declare and create a 10 element S…
Write a class called Time that includes five fields: year, month, day, minutes a
Write a class called Time that includes five fields: year, month, day, minutes and seconds. This class stores information about a single point in time. Your class should have cons…
Write a class called Time that includes five fields: year, month, day, minutes a
Write a class called Time that includes five fields: year, month, day, minutes and seconds. This class stores information about a single point in time. Your class should have cons…
Write a class called Time to the following specifications. The class will have t
Write a class called Time to the following specifications. The class will have two properties, hours and minutes, both of primitive type int. The class will have two constructors,…
Write a class called TrafficLight that extends the Pane class to represent the d
Write a class called TrafficLight that extends the Pane class to represent the drawing of a traffic light. The TrafficLight class has three Circle object variables representing th…
Write a class called Triangle that represents a triangle It has three double pre
Write a class called Triangle that represents a triangle It has three double precision instance variables representing the three sides Write a constructor for Triangle objects tha…
Write a class called Triangle that represents a triangle. A triangle object has
Write a class called Triangle that represents a triangle. A triangle object has three double precision instance variables for the lengths of the three sides. The constructor for T…
Write a class called Triangle.java. The class will have three instance variables
Write a class called Triangle.java. The class will have three instance variables representing the sides of a triangle (sideA, sideB, sideC). You should represent these instance va…
Write a class called World and a class called Driver. The Driver class is going
Write a class called World and a class called Driver. The Driver class is going to contain our main method. THE WORLD CLASS The World class will contain three private data fields.…
Write a class called Zombie. It should have an instance (normal) data member of
 Write a class called Zombie.  It should have an instance (normal) data member of type string to hold the name of a Zombie.  It should have a constructor that takes a string param…
Write a class called \"Counter\" that represents a simple tally counter, which m
Write a class called "Counter" that represents a simple tally counter, which might be used to count people as they enter a room. The Counter class should contain a single integer …
Write a class called airplane that has the following data members: -year_built-
Write a class called airplane that has the following data members: -year_built- an int that holds the year the airplane was manufactured -make - a string that holds the make of th…
Write a class called calender. The class has four data members, the month name,
Write a class called calender. The class has four data members, the month name, the day on which the month starts, and the number of days in that month and the year.              …
Write a class called cat that has the following: Three private instance variable
Write a class called cat that has the following: Three private instance variables name - A String representation of the cat's name. fluffiness - The cat's fluffiness on an integer…
Write a class called cat that has the following: Three private instance variable
Write a class called cat that has the following: Three private instance variables name - A String representation of the cat's name. fluffiness - The cat's fluffiness on an integer…
Write a class called counter that represents a simple tally counter, which might
Write a class called counter that represents a simple tally counter, which might be used to count people as they enter a room. The Counter class should contain a single integer as…
Write a class car with the following properties: A car has a certain fuel effici
Write a class car with the following properties: A car has a certain fuel efficiency measured in miles/gallon and a certain amount of fuel in the tank. The efficiency is specified…
Write a class definition (not a program, there is no main method) named Geek (sa
Write a class definition (not a program, there is no main method) named Geek (saved in a file Geek.java) that models a person who is a geek. For our purposes, a geek is someone wh…
Write a class definition (not a program, there is no main method) named Triangle
Write a class definition (not a program, there is no main method) named Triangle (saved in a file Triangle.java). A Triangle has 3 instance variables: int side1, side2, side3; The…
Write a class definition based on the following: (1) The name of the class shoul
Write a class definition based on the following: (1) The name of the class should be “Tableâ€. (2) The main function should be able to declare a Table object with any of the fol…
Write a class definition for a CircularList class that implements the interface
Write a class definition for a CircularList class that implements the interface below. Note that the list methods involving indices should count from the first element of the list…
Write a class definition for a TNode class to represent a general binary tree
Write a class definition for a TNode<T> class to represent a general binary tree with the following methods (implementing TNodeInterface). The class should contain a constru…
Write a class definition for a class named S that defines a single method , omit
Write a class definition for a class named   S that defines a single method , omitSecondWord . The method receives a String consisting of words separated by single space character…
Write a class definition for a complex number. The class definition should inclu
Write a class definition for a complex number. The class definition should include variables that represent thereal and imaginary part of the number. You should include a construc…
Write a class definition for a fraction class. That is, define your own class th
Write a class definition for a fraction class. That is, define your own class that will represent a fraction in your program. Each variable of type fraction represents a single fr…
Write a class definition for a subclass suite92. A suite92 \"is a\" hotelroom92,
Write a class definition for a subclass suite92. A suite92 "is a" hotelroom92, but use the fact that a suite92 is a hotelroom92 with extras (that cost $30.00 more). The extra $30.…
Write a class definition for an abstract class , Vehicle, that contains: a doubl
Write a class  definition for an abstract class , Vehicle, that contains: a double  instance variable , maxSpeed a protected double  instance variable , currentSpeed a constructor…
Write a class definition for an abstract class , Vehicle, that contains: a doubl
Write a class definition for an abstract class , Vehicle, that contains: a double  instance variable , maxSpeed a protected double  instance variable , currentSpeed a constructor …
Write a class definition for an abstract class, Vehicle, that contains: a double
Write a class definition for an abstract class, Vehicle, that contains: a double instance variable, maxSpeed a protected double instance variable, currentSpeed a constructor accep…
Write a class definition for an abstract class, Vehicle, that contains: a double
Write a class definition for an abstract class, Vehicle, that contains: a double instance variable, maxSpeed a protected double instance variable, currentSpeed a constructor accep…
Write a class definition for an object that represents a dog. A dog has a name,
Write a class definition for an object that represents a dog. A dog has a name, breed, gender, and weight. A dog can do the following: bark() - display text "ruff ruff" sleep() - …
Write a class definition of a class named \'Value\' with the following: a constr
Write a class definition of a class named 'Value' with the following: a constructor accepting a single integer parameter a constructor with no parameters a method 'setVal' that ac…
Write a class definition that extends Thread for a racehorse. It will have a str
Write a class definition that extends Thread for a racehorse. It will have a string data field for the name of the racehorse, a constructor to set the name, and the run() method. …
Write a class dependign on the specifications in the class diagram below. The cl
Write a class dependign on the specifications in the class diagram below. The class has two fields: monthly interest rate: a double number (b) balance: a double number The class s…
Write a class encapsulating a Grocery store,which inherits from Store. Store has
Write a class encapsulating a Grocery store,which inherits from Store. Store has the following attributes: name and sales tax rate; A grocery store has the following additional at…
Write a class encapsulating a PC-based game, which inherits from Game. A PC-base
Write a class encapsulating a PC-based game, which inherits from Game. A PC-based game has the following additional attributes: the minimum megabytes of RAM needed to play the gam…
Write a class encapsulating a restaurant,which inherits from Store. A restaurant
Write a class encapsulating a restaurant,which inherits from Store. A restaurant has the following additional attributes: how many people are served every year and the average pri…