Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 1400 / 1624
Create a class named rates that has the following data members: 1. Income limit;
Create a class named rates that has the following data members: 1. Income limit; use read-only accessor. 2. Low tax rate; use read-only accessor. 3. High tax rat…
Create a class named rates that has the following data members: 1. Income limit;
Create a class named rates that has the following data members: 1. Income limit; use read-only accessor. 2. Low tax rate; use read-only accessor. 3. High tax rat…
Create a class named rates that has the following data members: 1. Income limit;
Create a class named rates that has the following data members: 1. Income limit; use read-only accessor. 2. Low tax rate; use read-only accessor. 3. High tax rat…
Create a class names Movie that can be used with your video rental business. The
Create a class names Movie that can be used with your video rental business. The Movie class should track the Motion Picture Association of America (MPAA) rating ( e.g. Rated G, P…
Create a class names Pizza that stores information about a single pizza. It shou
Create a class names Pizza that stores information about a single pizza. It should contain the following: Private instance variables to store the size of the pizza (either small, …
Create a class object named YourNameChristmasList with the main method in it. Wi
Create a class object named YourNameChristmasList with the main method in it. Within main, create an array list to store a string of your wish list items. The array list should no…
Create a class of students in a college. Make sure you include the following ins
Create a class of students in a college. Make sure you include the following instance/member variables: Name Phone Number Student Number Current GPA Create the default constructor…
Create a class of your choosing in Java. This class should be the most basic ver
Create a class of your choosing in Java. This class should be the most basic version definition for the entity that you choose. For instance, should you choose a car, you would no…
Create a class representing a student. Include characteristics such as first and
Create a class representing a student. Include characteristics such as first and last name, overall GPA, classification, and major.Write at least two constructors. Include propert…
Create a class representing a student. Include characteristics such as first and
Create a class representing a student. Include characteristics such as first and last name, overall GPA, classification, and major.Write at least two constructors. Include propert…
Create a class representing a student. Include characteristics such as student n
Create a class representing a student. Include characteristics such as student number, first and last name, classification, and major. Write at least two constructors. Include pro…
Create a class representing a student. Include characteristics such as student n
Create a class representing a student. Include characteristics such as student number, first and last name, classification, and major. Write at least two constructors. Include pro…
Create a class specification (DogHealth.h) & class implementation (DogHealth.cpp
Create a class specification (DogHealth.h) & class implementation (DogHealth.cpp) file for a class named DogHealth. The purpose of the DogHealth class is to allow a user to en…
Create a class structure of nodes representing employees. Each employee node has
Create a class structure of nodes representing employees. Each employee node has a name, and then can have zero or more employees working for them. Prompt the user for an employee…
Create a class student contains roll number, name and course as data member and
Create a class student contains roll number, name and course as data member and Input_student and display_student as member function. A derived class exam is created from the clas…
Create a class template called GenericVector. The class should have the followin
Create a class template called GenericVector. The class should have the following members: a) Private Data Member: vec (a vector of type parameter). b) Public Member Functions: pu…
Create a class template for a class that holds an object and the number of data
Create a class template for a class that holds an object and the number of data elements in the object. For example, if an Employee class has two data elements, an ID number and a…
Create a class that acts as a doubly linked list node. It should contain all the
Create a class that acts as a doubly linked list node. It should contain all the required data fields, at least 1 constructor, and a method that prints the hero’s information. • C…
Create a class that allows the user to ask what type of phone they want and what
Create a class that allows the user to ask what type of phone they want and what main feature. Return a yes if you have it and the price. Create a second class that has two arrays…
Create a class that calculates and displays the conversion of an entered number
Create a class that calculates and displays the conversion of an entered number of dollars into currency denominations - 100s, 50s, 20s, 10s, 5s, and 1s. Obtain all inputs and dis…
Create a class that can be used to test data structure - similar to the StudentA
Create a class that can be used to test data structure - similar to the StudentA.java example found shown below: StudentA.java import java.util.Scanner; import java.util.ArrayList…
Create a class that can be used to test data structure - similar to the StudentA
Create a class that can be used to test data structure - similar to the StudentA.java example found shown below: The following are requirements for this homework: · Unique index i…
Create a class that contains the following two methods: Return true if the sum o
Create a class that contains the following two methods: Return true if the sum of any two sides is greater than the third side. public static boolean is Valid(double side 1, doubl…
Create a class that extends Reader, and provides a new kind of Reader, a TrReade
Create a class that extends Reader, and provides a new kind of Reader, a TrReader, that translates the characters from another Reader. That is, a TrReader’s source of characters i…
Create a class that has a constructor and a destructor. In the constructor print
Create a class that has a constructor and a destructor. In the constructor print "Object Created". In the destructor print "Object Destroyed". First create the object locally. Sec…
Create a class that has a constructor that initializes a variable and invokes me
Create a class that has a constructor that initializes a variable and invokes methods to perform the first part of the program algorithms. This class should also have overloaded m…
Create a class that has three int variables (int start,int stop, int step), wher
Create a class that has three int variables (int start,int stop, int step), where start and stop are the bounds of the numbers, and step is the increments between the numbers. Thi…
Create a class that holds data about a job applicant. Include a name, a phone nu
Create a class that holds data about a job applicant. Include a name, a phone number, and four Boolean fields that represent whether the applicant is skilled in each of the follow…
Create a class that holds three initialized StringBuilder objects: your first na
Create a class that holds three initialized StringBuilder objects: your first name, middle name, and last name. Create three new StringBuilder objects as follows: An object named …
Create a class that is intended to contain the following information: = ... Wher
Create a class that is intended to contain the following information: = ... Where is a transmission And ... are locations through which the message has been passed with Ln being t…
Create a class that might provides a property for an instance variable based on
Create a class that might provides a property for an instance variable based on the example in this question. Here is the example: // Fig. 4.7: GradeBook.cs 2 // GradeBook class t…
Create a class that provides a property for an instance variable based on the ex
Create a class that provides a property for an instance variable based on the example in this question. (Please integrate it into the code so I know where it goes) Here is the exa…
Create a class that represents a Clock. The Clock class has 3 variables: amPm, h
Create a class that represents a Clock. The Clock class has 3 variables: amPm, hour, minute. In addition the Clock as the following functions: Default constructor that sets amPm to
Create a class that represents a person’s contact information using PYTHON. A co
Create a class that represents a person’s contact information using PYTHON. A contact has a first name, last name, phone number, address, city, state and zip-code, all of which ar…
Create a class that represents a playing card, with values for the four suits, p
Create a class that represents a playing card, with values for the four suits, plus none for the joker, and values for the thirteen card ranks, plus the joker. Make the default co…
Create a class that represents a polynomial; for example, it could represent (5x
Create a class that represents a polynomial; for example, it could represent (5x^3)+(2x)-3 or (x^2)-1. a. Create a class called Polynomial. Objects of this class represent a singl…
Create a class that represents a slot machine. The SlotMachine class should be a
Create a class that represents a slot machine. The SlotMachine class should be able to represent a slot machine with between two and five image slots. When the lever is pulled, ea…
Create a class that represents the Wheel from the wheel of fortune. The wheel ha
Create a class that represents the Wheel from the wheel of fortune. The wheel has an array of size 20 with integer amounts. The amounts range from 100 to 25000. The class also has…
Create a class that simulates a soft drink machine. The class should use a struc
Create a class that simulates a soft drink machine. The class should use a structure that stores the following information: Drink name Drink price Number of drinks in machine The …
Create a class that simulates a soft drink machine. The class should use a struc
Create a class that simulates a soft drink machine. The class should use a structure that stores the following information: Drink name Drink price Number of drinks in machine The …
Create a class that simulates an alarm clock. In this class you should *store ti
Create a class that simulates an alarm clock. In this class you should *store time in hours, minutes, and seconds. Note if time is am or pm. (hint: you should have separate privat…
Create a class that simulates an alarm clock. In this class you should: ? Store
Create a class that simulates an alarm clock. In this class you should: ? Store time in hours, minutes, and seconds. Note if time is AM or PM. (Hint: You should have separate priv…
Create a class that simulates an alarm clock. In this class you should: ? Store
Create a class that simulates an alarm clock. In this class you should: ? Store time in hours, minutes, and seconds. Note if time is AM or PM. (Hint: You should have separate priv…
Create a class that stores only the Cartesian coordinates of the four corners of
Create a class that stores only the Cartesian coordinates of the four corners of a rectangle. Provide member functions that calculate the length, width, diagonal, perimeter and ar…
Create a class that will bundle together several static methods for tax computat
Create a class that will bundle together several static methods for tax computations. This class should not have a constructor. Its attributes are basicRate-the basic tax as a sta…
Create a class that will evaluate an infix expression. It should have the follow
Create a class that will evaluate an infix expression. It should have the following methods: constructor evaluate Takes a String (infix expression), returns a double The infix exp…
Create a class that will evaluate an infix expression. It should have the follow
Create a class that will evaluate an infix expression. It should have the following methods: constructor evaluate Takes a String (infix expression), returns a double The infix exp…
Create a class that will keep track of a single character and a count. Provide a
Create a class that will keep track of a single character and a count. Provide a constructor, a method to increment the count , a method to set the character, a method to reset t …
Create a class titled MyInteger. The class will contain: An int data field title
Create a class titled MyInteger. The class will contain: An int data field titled value that stores the int value for each instance of this class. A constructor that creates an in…
Create a class titled MyInteger. The class will contain: An int data field title
Create a class titled MyInteger. The class will contain: An int data field titled value that stores the int value for each instance of this class. A constructor that creates an in…