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

Browse D

Alphabetical listing with fast deep pagination.
30085 items • Page 127 / 602

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
Declare a structure called SoftDrink which contains the three members mentioned
Declare a structure called SoftDrink which contains the three members mentioned in the exercise. Your program needs to create an array of structures. The size of the array is 5 an…
Declare a structure called SoftDrink which contains the three members mentioned
Declare a structure called SoftDrink which contains the three members mentioned in the exercise. Your program needs to create an array of structures. The size of the array is 5 an…
Declare a structure date that includes the integer members month, day, and year.
Declare a structure date that includes the integer members month, day, and year. Declare a structure customer_info that includes a character array customer_id with 10 elements, a …
Declare a structure of type Car to represent a motor car including the elements:
Declare a structure of type Car to represent a motor car including the elements: make (string, ie either an array of chars or a pointer to a char) manufactureDate (Date - see belo…
Declare a structure of type Car to represent a motor car including the elements:
Declare a structure of type Car to represent a motor car including the elements: make (string, ie either an array of chars or a pointer to a char) manufactureDate (Date - see belo…
Declare a structure to represent a circle. Each circle stores information about
Declare a structure to represent a circle. Each circle stores information about the center and the radius. Center is represented with x and y coordinates. Both center and radius u…
Declare a structure to represent a circle. Each circle stores information about
Declare a structure to represent a circle. Each circle stores information about the center and the radius. Center is represented with x and y coordinates. Both center and radius u…
Declare a structure type Element to represent one element from the periodic tabl
Declare a structure type Element to represent one element from the periodic table of elements. Components are to include: the atomic number (as an int), the name (as a string), an…
Declare a structure type named Product for the following records (data items): y
Declare a structure type named Product for the following records (data items): you must choose a name for each of its members: A product record consisting of: The product name (da…
Declare a structure weightType that has two integer members:pounds and ounces. P
Declare a structure weightType that has two integer members:pounds and ounces. Part A: Write a program that uses structure weightType. That is,declare a variable of weightType, ge…
Declare a structure whose tag name is Emp and that contains these fields (in the
Declare a structure whose tag name is Emp and that contains these fields (in the following order): a double field named d, a character pointer named str, and an array of eleven in…
Declare a structure whose tag name is Emp and that contains these fields (in the
Declare a structure whose tag name is Emp and that contains these fields (in the following order): a double field named d, a character pointer named str, and an array of eleven in…
Declare a structure whose tag name is Emp and that contains these fields (in the
Declare a structure whose tag name is Emp and that contains these fields (in the following order): a double field named d, a character pointer named str, and an array of eleven in…
Declare a strucure named TempScale, with the followingmembers: fahrenheit : a do
Declare a strucure named TempScale, with the followingmembers: fahrenheit : a double centigrade : a double Next, declare a structure named Reading, with the followingmembers: wind…
Declare a two arrays called array A and array B that holds integer and the size
Declare a two arrays called array A and array B that holds integer and the size of each array is given by the user. The main method calls a method called fill Array(...) of type v…
Declare a two dimensional array initialized as follows: int A[4][4] = { {10,11,1
Declare a two dimensional array initialized as follows: int A[4][4] = { {10,11,12,13), /* initializers for row indexed by 0 */ indexed by 1 */ {14,15,16,17}, /* initializers for r…
Declare a two dimensional array of the type char named Table of the size 5 x 4,
Declare a two dimensional array of the type char named Table of the size 5 x 4, i.e. 5 rows and 4 columns. Initialize the array with random capital alphabets and display the array…
Declare an ArrayList of Strings. Add 5 names to the collection. \"Bob\" \"Susan
Declare an ArrayList of Strings. Add 5 names to the collection. "Bob" "Susan Output the Strings onto the console using the enhanced for loop 3. import java util. 4. public class A…
Declare an array of integers: .data size: .word 8 array: .word 23, -12, 45, -32,
Declare an array of integers: .data size: .word 8 array: .word 23, -12, 45, -32, 52, -72, 8, 13 Write a program that determines the minimum and the maximum element in the array. A…
Declare an array of pointers of char type where each pointer points to a string.
Declare an array of pointers of char type where each pointer points to a string. As an example, the array may be declared and initialized as follows, char *dictionary[10] ; dictio…
Declare an array of type double values of size 52 to store the average weekly te
Declare an array of type double values of size 52 to store the average weekly temperature for one year. Using this data structure which you should assume someone has filled up wit…
Declare an array to hold 4 integers and fill it with the numbers 2, 4, 6, and 8.
Declare an array to hold 4 integers and fill it with the numbers 2, 4, 6, and 8. Assume an array called AR contains 4 integers. Write a loop to print out the values of the 4 integ…
Declare and define the following in the .cpp and .h files . Modify the BigInt cl
Declare and define the following in the .cpp and .h files . Modify the BigInt class by adding the > operation to determine whether one BigInt object is bigger than another. add…
Declare and define user-defined function \" minimum\" thatwill take 3 integers a
Declare and define user-defined function "minimum" thatwill take 3 integers as arguments/parameters, and will compute andreturn the minimum of the 3 numbers. inside main() --Ask t…
Declare and implement a class called Linear that is an abstraction of a linear e
Declare and implement a class called Linear that is an abstraction of a linear equation A linear equation is an equation of the form f(x)=ax+b, where a is the equation's a coeffic…
Declare and implement a class named Pythagorean . The class will contain the fol
Declare and implement a class named Pythagorean.  The class will contain the following three methods: getTriples(int n) prints all Pythagorean triples (a, b, c) such that a2 + b2 …
Declare and implement the Employee class as a derived class of the Person class
Declare and implement the Employee class as a derived class of the Person class with the code down below: #include "person.h" Person::~Person() { if ( emails != NULL ){    delete …
Declare and implement the Employee class as a derived class of the Person class
Declare and implement the Employee class as a derived class of the Person class with the code down below: #include "person.h" Person::~Person() { if ( emails != NULL ){    delete …
Declare and implement the following four functions: 1. void encrypter(char* text
                    Declare and implement the following four functions:                                      1. void encrypter(char* text, int csize, int* integers, int *nsize) - …
Declare and initialize arrays/variables Display menu 1. create a dynamic array o
Declare and initialize arrays/variables Display menu 1. create a dynamic array of random elements (array size indicated by the user) and write it into a file indicated by the user…
Declare and initialize arrays/variables Display menu. 1. Create a dynamic array
Declare and initialize arrays/variables Display menu. 1. Create a dynamic array of random elements (array size indicated by the user) and write it into a file indicated by the use…
Declare and use an array of 10 integers in your main function. Collect 10 intege
Declare and use an array of 10 integers in your main function. Collect 10 integer values from the user and store these in the array Create and call a function that takes the array…
Declare eligible to be a boolean variable, and assign it the value true. Write a
Declare eligible to be a boolean variable, and assign it the value true. Write a statement that sets the boolean variable available to true if numberOrdered is less than or equal …
Declare five ( 5 ) one-dimensional arrays t hat are named stuCode, stuHours, hou
Declare five (5) one-dimensional arrays that are named stuCode, stuHours, hourlyPay, grossPay, & netPay to store values for the student detail fields for each record. stuCode …
Declare five ( 5 ) one-dimensional arrays t hat are named stuCode, stuHours, hou
Declare five (5) one-dimensional arrays that are named stuCode, stuHours, hourlyPay, grossPay, & netPay to store values for the student detail fields for each record. stuCode …
Declare k , d , and s so that they can store an integer , a real number, and a s
Declare k, d, and s so that they can store an integer , a real number, and a small word (under 10 characters ). Use these variables to first read in an integer , a real number, an…
Declare k, d, and s so that they can store an integer , a real number, and a sma
Declare  k, d, and s so that they can store  an integer , a real number, and a small word (under 10 characters ). Use these variables  to first read in an integer , a real number,…
Declare k, d, and s so that they can store an integer, a real number, and a smal
Declare k, d, and s so that they can store an integer, a real number, and a small word (under 10 characters). Use these variables to first read in an integer, a real number, and a…
Declare k, d, and s so that they can store an integer, a real number, and a smal
Declare k, d, and s so that they can store an integer, a real number, and a small word (under 10 characters). Use these variables to first read in an integer, a real number, and a…
Declare selection as int Display “Menu” Display “1. Open a new document” Display
Declare selection as int                Display “Menu”                Display “1. Open a new document”                Display “2. Close the current document”                Displa…
Declare selection as int Display “Menu” Display “1. Open a new document” Display
Declare selection as int                Display “Menu”                Display “1. Open a new document”                Display “2. Close the current document”                Displa…
Declare the interface of a C++ class, showing all public and private information
Declare the interface of a C++ class, showing all public and private information, of a digital image on a cell phone. An image has both a height and width (in pixels), is either g…
Declare three constants, one for the maximum number of rows, one for the maximum
Declare three constants, one for the maximum number of rows, one for the maximum number of columns, and one for the seed number for the random number generator (310589). Inside ma…
Declare two integer variables, one named i (initialized to 0) to be used as a su
Declare two integer variables, one named i (initialized to 0) to be used as a subscript variable and a second named priceCount. Declare two double variables, one named grandTotal …
Declare two integer variables, one named i (initialized to 0) to be used as a su
Declare two integer variables, one named i (initialized to 0) to be used as a subscript variable and a second named priceCount. Declare two double variables, one named grandTotal …
Declare two integer variables, one named i (initialized to 0) to be used as a su
Declare two integer variables, one named i (initialized to 0) to be used as a subscript variable and a second named priceCount. Declare two double variables, one named grandTotal …
Declare two variables for max and next Read first number Assign value of the fir
Declare two variables for max and next Read first number Assign value of the first number to max Use a while-loop to read all other numbers Compare each number with max; if new nu…
Declare variables for outer counter, inner counter, size offigure Initialize cou
Declare variables for outer counter, inner counter, size offigure Initialize counters to 0 Start outer loop to count up the lines Start inner loop to count up the number of * Star…
Declare, by a hand, the interface of a C++ class, showing all public and private
Declare, by a hand, the interface of a C++ class, showing all public and private information, of a digital image on a cell phone. An image has both a height and width (in pixels),…
Declare, by a hand, the interface of a C++ class, showing all public and private
Declare, by a hand, the interface of a C++ class, showing all public and private information, of a digital image on a cell phone. An image has both a height and width (in pixels),…