Browse C
Alphabetical listing with fast deep pagination.
81169 items • Page 1390 / 1624
Create a c++ program implementing a class that represents “ASCII art” images and
Create a c++ program implementing a class that represents “ASCII art” images and operations on them, respresented as two-dimensional char arrays allocated on the heap (using the n…
Create a c++ program implementing a class that represents “ASCII art” images and
Create a c++ program implementing a class that represents “ASCII art” images and operations on them, respresented as two-dimensional char arrays allocated on the heap (using the n…
Create a c++ program implementing a class that represents “ASCII art” images and
Create a c++ program implementing a class that represents “ASCII art” images and operations on them, respresented as two-dimensional char arrays allocated on the heap (using the n…
Create a c++ program that takes as input a string from user which can be sorted
Create a c++ program that takes as input a string from user which can be sorted into an array. Use two stacks to determine precedence. will take a calculation string using a set o…
Create a c++ program that will calculate the grade point average for a student.
Create a c++ program that will calculate the grade point average for a student. The student will provide the letter grades for 10 courses. The program will read the 10 grades and …
Create a c++ program that: 1. Has a main() 2. includes the proper header and nam
Create a c++ program that: 1. Has a main() 2. includes the proper header and namespace declarations 3.Create a program using the following requirements: a. Write a program that re…
Create a calculator in C, again in C and again in C. This is a textual calculato
Create a calculator in C, again in C and again in C. This is a textual calculator not a GUI. a. Your calculator should begin by displaying the functions your calculator is able to…
Create a calculator program as follows. Create a menu function ( function should
Create a calculator program as follows. Create a menu function ( function should display the menu options and return the user selection with the following options: 1 …
Create a calculator program identical to the standard one included with MS Windo
Create a calculator program identical to the standard one included with MS Windows. Verify that all of the buttons have appropriate names. The appropriate arithmetic answer should…
Create a calculator program identical to the standard one included with MS Windo
Create a calculator program identical to the standard one included with MS Windows. Verify that all of the buttons have appropriate names. The appropriate arithmetic answer should…
Create a calculator program that works as follows: 1. Your program should read a
Create a calculator program that works as follows: 1. Your program should read an integer, an arithmetic operation, and another integer in that order. 2. Valid arithmetic operatio…
Create a calculator program that works as follows: 1. Your program should read a
Create a calculator program that works as follows: 1. Your program should read an integer, an arithmetic operation, and another integer in that order. 2. Valid arithmetic operatio…
Create a callback class LengthMeasurer for the string. It will calculate the len
Create a callback class LengthMeasurer for the string. It will calculate the length of the string . Create a callback class AreaMeasurer for the rectangles. It will calculate the …
Create a card class that has the following class variables; face (club, diamond,
Create a card class that has the following class variables; face (club, diamond, heart, and spade), colour (red or black), value (assume ace is 1, jack 11, queen 12, king 13 and t…
Create a card guessing game using multiple classes. The goal of this game is to
Create a card guessing game using multiple classes. The goal of this game is to allow two players (in this case, a player and a computer) to each pick two cards at random, and cou…
Create a case Study \"Eliminating measles in southern Africa\" with the infor be
Create a case Study "Eliminating measles in southern Africa" with the infor below Health Condition: Measles, one of the most contagious infections known to humans, ranks among the…
Create a case study from your own newspaper article or articles 1. Summarize the
Create a case study from your own newspaper article or articles 1. Summarize the article/s, what is happening and why is this important? 2. How does this article relate to strateg…
Create a cash flow statement from the given income statement and balance sheet.
Create a cash flow statement from the given income statement and balance sheet. Powell Panther Corporation: Balance Sheets as of December 31 (Millions of Dollars) 2016 2015 Assets…
Create a casino-like graphical dice betting game similar to the game Craps, but
Create a casino-like graphical dice betting game similar to the game Craps, but simplified, that will: roll two dice at a time return there "name" versus value (see key below) if …
Create a cell array cells with the numbers 1 2 3 in the 1st row (each in one cel
Create a cell array cells with the numbers 1 2 3 in the 1st row (each in one cell, the vectors [11 121] [12 14] [13 16] in the 2nd row (each in one cell), and the strings 'how' 'a…
Create a character array \'pats\' with the following entries: , \'PHT45\', \'PHT
Create a character array 'pats' with the following entries: , 'PHT45', 'PHT2', 'PHT273', ‘PHT61', 'PHT14', 'PHT423','PHT195' (these are anonymous patient IDs for a clinical study)…
Create a chart with four columns. Label the columns Asset, Threats, Probabilitie
Create a chart with four columns. Label the columns Asset, Threats, Probabilities, and Security Controls. List all assets in a standard room of your house. Then write down threats…
Create a chess board as a 2D array Initialize the board to zeroes (note that you
Create a chess board as a 2D array Initialize the board to zeroes (note that you can do this at the time of declaration, but later in the assignment you will need to re-initialize…
Create a circle class(circle.cpp). main.cpp circle.h Forthis homework you will h
Create a circle class(circle.cpp). main.cpp circle.h Forthis homework you will hove to impenent a eircle" dlass You are given a main For this homework you will have to implement a…
Create a class (BinaryTree) template that will create a binary tree that can hol
Create a class (BinaryTree) template that will create a binary tree that can hold values of any data type. The class should provide functions to insert a node, a function to delet…
Create a class (to be named LinkList), which will hold integers. Use dynamic mem
Create a class (to be named LinkList), which will hold integers. Use dynamic memory allocation for handling any number of integers at run-time. The member data elements should be …
Create a class Account that represents a Bank account. Your Account class should
Create a class Account that represents a Bank account. Your Account class should have: - Three data members : name the name of the owner acct_no the acct number balance the curren…
Create a class Advisor (advisor name) and a class Student (student name, gpa). M
Create a class Advisor (advisor name) and a class Student (student name, gpa). Make sure to include setter and getter methods, as well as toString() method. 2. Create a generic cl…
Create a class Bag (multiset) that uses an array to store the bag items. The cla
Create a class Bag (multiset) that uses an array to store the bag items. The class should have the methods listed below. Create a main class to test your Bag class. This main clas…
Create a class Book that a) han the following instance variables authori String
Create a class Book that a) han the following instance variables authori String titier string cost: double b) has setter and getter for all the instance variables. a) has 2 constr…
Create a class CD with private instance variables artist, album, and number of t
Create a class CD with private instance variables artist, album, and number of tracks and a private static variable cdCount. The class has one constructor that takes three argumen…
Create a class Calculator. Calculator has the following: Two private instance va
Create a class Calculator. Calculator has the following: Two private instance variables num1 and num2, both of type int. A constructor that takes two parameters. An instance metho…
Create a class Car.java that has the data fields make and model. Create getters
Create a class Car.java that has the data fields make and model. Create getters and setters for these fields. In addition, create a constructor that accepts the data fields. Creat…
Create a class CharacterSet. The CharacterSet can hold a set of lowercase alphab
Create a class CharacterSet. The CharacterSet can hold a set of lowercase alphabet characters. Define one or more instance variables to represent CharacterSet properties and hold …
Create a class CharacterSet. The CharacterSet can hold a set of lowercase alphab
Create a class CharacterSet. The CharacterSet can hold a set of lowercase alphabet characters. Define one or more instance variables to represent CharacterSet properties and hold …
Create a class Clerk derived from (a sub class of) Person. The new class should
Create a class Clerk derived from (a sub class of) Person. The new class should have instance variables that record the additional information of a salary and an employment grade.…
Create a class ClubMember The class should track a member\'s name and email. The
Create a class ClubMember The class should track a member's name and email. The class needs a constructor and display function. The constructor must allow you to pass name and ema…
Create a class ClubMembers that has three data members(String) Name, (String) ID
Create a class ClubMembers that has three data members(String) Name, (String) ID & (int) Age, and a constructor thattakes two parameters (Name, ID) and sets the specified data…
Create a class Create a class called SportsGame. Include the following fields (S
Create a class Create a class called SportsGame. Include the following fields (String league, String team1, String team2, team1Score, team2Score). Include all setters, getters, co…
Create a class Customer to hold customer information including customer id, cust
Create a class Customer to hold customer information including customer id, customer name. Create a sub class CashCustomer. Cash customers get a discount of 2% on the order price.…
Create a class Dir2d simulating 2-dimentional vectors, using the following UML d
Create a class Dir2d simulating 2-dimentional vectors, using the following UML diagram: - xCoord : double - yCoord: double + Dir2d () Constructs the vector object (0, 0) + Dir2d (…
Create a class Employee that has the attributes first name, last name, Job title
Create a class Employee that has the attributes first name, last name, Job title, salary, phone number, address, and Employee ID. First name, last name, and address are all of typ…
Create a class Employee, which has three private class variables (Name, Address,
Create a class Employee, which has three private class variables (Name, Address, PhoneNumber), access methods to get and set each of these properties, and two constructors (one 0-…
Create a class Employee, which has three private class variables (Name, Address,
Create a class Employee, which has three private class variables (Name, Address, PhoneNumber), access methods to get and set each of these properties, and two constructors (one 0-…
Create a class Herbivore and a class Carnivore. Each herbivore can eat a Plant t
Create a class Herbivore and a class Carnivore. Each herbivore can eat a Plant to survive and each carnivore eats herbivore to survive. Herbivores and carnivores can move to a loc…
Create a class Herbivore and a class Carnivore. Each herbivore can eat a Plant t
Create a class Herbivore and a class Carnivore. Each herbivore can eat a Plant to survive and each carnivore eats herbivore to survive. Herbivores and carnivores can move to a loc…
Create a class HugeInteger that uses a 40-element array of digits to store integ
Create a class HugeInteger that uses a 40-element array of digits to store integers as large as 40 digits each. Provide member functions input, output, add and subtract. For compa…
Create a class HugeInteger which uses a 40-element array of digits to store inte
Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40 digits each. Provide methods Input, ToString, Add and Subtract. For comparing H…
Create a class HugeInteger which uses a 40-element array of digits to store inte
Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40 digits each. Provide methods input, output, add, subtract. For comparing HugeIn…
Create a class Int with the following components: a. A field to store an Int val
Create a class Int with the following components: a. A field to store an Int value. b. A constructor so that new Int (x) creates an Int object that stores the int value x. c. An i…