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 1395 / 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 class called Weather and include in it an instance variable named tempe
Create a class called Weather and include in it an instance variable named temperature that is an array of 5 integers. Then, Create a static method calcAverage that takes an integ…
Create a class called WordNode which has fields for the data (a Word) and next (
Create a class called WordNode which has fields for the data (a Word) and next (WordNode) instance variables. Include a one-argument constructor which takes a Word as a parameter.…
Create a class called XYData that maintains a list of 2D points stored as vector
Create a class called XYData that maintains a list of 2D points stored as vector of Vec objects that we have seen in previous labs. Your class should also implement a method add()…
Create a class called ZeroSum.java. Take all of the methods from OverloadingSum.
Create a class called ZeroSum.java. Take all of the methods from OverloadingSum.java and change them to return all zeros in ZeroSum.java. Next, create a class called RealSum.java.…
Create a class called ZeroSum.java. Take all of the methods from OverloadingSum.
Create a class called ZeroSum.java. Take all of the methods from OverloadingSum.java and change them to return all zeros in ZeroSum.java. Next, create a class called RealSum.java.…
Create a class called \"Arrays1D\" with 5 methods (including the main method). T
Create a class called "Arrays1D" with 5 methods (including the main method). The class "Arrays1D" must be public. All methods must be public and static. Method name: print Input: …
Create a class called \"MPG\" to represent fuel economy of a car. Include the fo
Create a class called "MPG" to represent fuel economy of a car. Include the following: 1) Attributes: starting odometer reading (int), ending odometer reading (int), gallons (doub…
Create a class called \"Methods\" with 8 methods (including the main method). Th
Create a class called "Methods" with 8 methods (including the main method). The class "Methods" must be public. All methods must be public and static. Method name: average Input: …
Create a class called \"Potion\" Potions are used to heal a character The potion
Create a class called "Potion" Potions are used to heal a character The potion should have 2 private members: count and healingAmount . count holds the number of potions the playe…
Create a class called \"RGB\" for representing the RGB color code of any color.
Create a class called "RGB" for representing the RGB color code of any color. Include the following: 1) Attributes (all integers): a number from 0 to 255 for each of red (R), gree…
Create a class called \"RGB\" for representing the RGB color code of any color.
Create a class called "RGB" for representing the RGB color code of any color. Include the following: 1) Attributes (all integers): a number from 0 to 255 for each of red (R), gree…
Create a class called \"RGB\" for representing the RGB color code of any color.
Create a class called "RGB" for representing the RGB color code of any color. Include the following: 1) Attributes (all integers): a number from 0 to 255 for each of red (R), gree…
Create a class called \"country\" with the following features: -integer attribut
Create a class called "country" with the following features: -integer attributes for the population of the country, total area in square miles, and total area of water in square m…
Create a class called \'Enterprize\', ii has one private member variable called
Create a class called 'Enterprize', ii has one private member variable called 'category' (of character type, its value is either 'F' (for food), or C (for clothing), or 'H' (for h…
Create a class called \'Enterprize\', it has one private member variable called
Create a class called 'Enterprize', it has one private member variable called 'category' (of character type, its value is either 'F' (for food), or 'C' (for clothing), or 'H' (for…
Create a class called \'Histogram\'. The Histogram class will keep track of the
Create a class called 'Histogram'. The Histogram class will keep track of the frequency of integers (only) between 0 and an upper bound (inclusive) specified upon creation of a ne…
Create a class called \'Map\'. This class should have the following variables (o
Create a class called 'Map'. This class should have the following variables (or 'fields') - Add code (called 'methods' or 'functions') to the class to allow external code to get a…
Create a class called birthday. The class should store the birthday of a person
Create a class called birthday. The class should store the birthday of a person in the three integers: month, day and year. birthday class has member functions to get these values…
Create a class called circle, this class contains: --Two private instance variab
Create a class called circle, this class contains: --Two private instance variables: radius (date type double) and color (date type String); --Two overloaded constructors; the fir…
Create a class called consultCo that holds a private class called employee that
Create a class called consultCo that holds a private class called employee that contains the name, pay rate and social security number of an employee of a consulting firm called c…
Create a class called it TwoQueues Members Variables: a- Two int queues, One and
Create a class called it TwoQueues Members Variables: a- Two int queues, One and Two. b-int capacity -the maximum capacity of the queues c-int countone, int counttwo to keep track…
Create a class called line to hold two X,Y coordinate pairs. Since two coordinat
Create a class called line to hold two X,Y coordinate pairs. Since two coordinate pairs can describe a line solve the standard y = mx + bequation for slope and y-intercept (b). ? …
Create a class called student, this class contains: •Three private instance vari
Create a class called student, this class contains: •Three private instance variables: age(date type: int) ,name (date type: String) and Major(date type: String); •Two overloaded …
Create a class called vehicle that has the manufacturer\'s name (type string), n
Create a class called vehicle that has the manufacturer's name (type string), number of cylinders in the engine (type int), and owner (type person given next) Then, create a class…
Create a class called vehicle that has the manufacturer\'s name (type string), n
Create a class called vehicle that has the manufacturer's name (type string), number of cylinders in the engine (type int) and owner (type person given next) Then, create a class …
Create a class calledrational for performing arithmetic with fractions. Useinteg
Create a class calledrational for performing arithmetic with fractions. Useinteger variables to representthe private data of the class – thenumeratorand the denominator. Provide a…
Create a class complex: In our implementation each complex has an imaginery part
Create a class complex: In our implementation each complex has an imaginery part and a real part that are integers in range [1 10]. Our goal is to have a bag of complex numbers wi…
Create a class containing a method name createArray and a main method. The metho
Create a class containing a method name createArray and a main method. The method createArray creates an array where each element contains the square of its index. The size of the…
Create a class definition for a Polynomial. The member data in the polynomial wi
Create a class definition for a Polynomial. The member data in the polynomial will be its degree as well as itscoefficients. You should overload the +, -, and * operators for Poly…
Create a class definition for a basketball player. Its attributes are: name, a S
Create a class definition for a basketball player. Its attributes are: name, a String height (in inches), an int weight (in pounds), an int freeThrowsAttempted, an int freeThrowsM…
Create a class definition that describes a basketball player with appropriate in
Create a class definition that describes a basketball player with appropriate instance variables and get and set methods so that users can access the class later to create objects…
Create a class diagram for the Tic-Tac-Toe Game that embodies the primary classe
Create a class diagram for the Tic-Tac-Toe Game that embodies the primary classes Tic-Tac-Toe Game - Specifications: Allow players to choose to play against a human or the compute…
Create a class diagram that meets the requirements described in Assignment - XML
Create a class diagram that meets the requirements described in Assignment - XML Nesting Validator Program. Use Visual Paradigm to create the diagram. Save the diagram as a JPEG o…
Create a class for Shutterbug\'s Camera Store, which is having a digital camera
Create a class for Shutterbug's Camera Store, which is having a digital camera sale. The class is named DigitalCamera. and it contains data fields for a brand, the number of megap…
Create a class for Shutterbug’s Camera Store, which is having a digital camera s
Create a class for Shutterbug’s Camera Store, which is having a digital camera sale. The class is named DigitalCamera, and it contains data fields for a brand, the number of megap…
Create a class for Tip Top Bakery named bread with data fields for bread type (s
Create a class for Tip Top Bakery named bread with data fields for bread type (such as "rye") and claories per slice. Include a constructor that takes parameters for each field, a…
Create a class for a Fighter in a combat game. The Fighter class has the followi
Create a class for a Fighter in a combat game. The Fighter class has the following instance variables: -name -health points -- a double representing health. 0 or below is dead. -s…
Create a class for a binary search tree named BST with Netbeans. Each node in th
Create a class for a binary search tree named BST with Netbeans. Each node in the tree should have data, a reference to the node’s left sub-tree, and a reference to the node’s rig…
Create a class for a car auction house. The member variables are: ID (string), S
Create a class for a car auction house. The member variables are: ID (string), Sold (integer) and Bluebook (Integer). Create mutators and accessors (setters and getters) for all t…
Create a class for a salesman that has a data member of an array of double data
Create a class for a salesman that has a data member of an array of double data type as the sales of some number of quarters, a data member average as the average of the sales of …
Create a class for a salesman that has a data member of an array of double data
Create a class for a salesman that has a data member of an array of double data type as the sales of some number of quarters, a data member average as the average of the sales of …
Create a class for a salesman that has a data member of an array of double data
Create a class for a salesman that has a data member of an array of double data type as the sales of some number of quarters, a data member average as the average of the sales of …
Create a class for a watch. It should have private hour, minute, and seconds as
Create a class for a watch. It should have private hour, minute, and seconds as fields. It should have 4 constructors: one that takes no fields and sets the time to 12:00:00, one …
Create a class for complex numbers that will provide the means to store both the
Create a class for complex numbers that will provide the means to store both the real and the imaginary values of a complex number. Design and add overloaded operators to perform …
Create a class for complex numbers that will provide the means to store both the
Create a class for complex numbers that will provide the means to store both the real and the imaginary values of a complex number. Design and add overloaded operators to perform …
Create a class for complex numbers that will provide the means to store both the
Create a class for complex numbers that will provide the means to store both the real and the imaginary values of a complex number. Design and add overloaded operators to perform …
Create a class for the Parks Department in cloverdale. The class is named Park,
Create a class for the Parks Department in cloverdale. The class is named Park, and it contains a String field for the name of the park, an integer field for the size in acres, an…
Create a class for the Tip Top Bakery named Bread with private data fields for b
Create a class for the Tip Top Bakery named Bread with private data fields for bread type (such as “rye”) and calories per slice. Include a constructor that takes parameters for e…
Create a class for working with complex numbers. Only 2 private float data membe
Create a class for working with complex numbers. Only 2 private float data members are needed, the real part of the complex number and the imaginary part of the complex number The…
Create a class for working with fractions. Only 3 private data members are neede
Create a class for working with fractions. Only 3 private data members are needed: the int whole number part of the fraction, the int numerator of the fraction, and the positive i…