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 1047 / 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 program code in C. 1. Read rocket,txt. rocket.txt contains acceleration
Write a program code in C. 1. Read rocket,txt. rocket.txt contains acceleration data. 2. Find the maximum of the acceleration. Print it on the screen. 3. Find the positive acceler…
Write a program code in assembly language for an elementary decimal number calcu
Write a program code in assembly language for an elementary decimal number calculator, that will be capable of multiplying two 2-digit integer number. Follow the below requirent: …
Write a program code(assembly language) to calculate the following equation by u
Write a program code(assembly language) to calculate the following equation by using below commands. And compare the length of the program code(assembly language). X = (A + B) / (…
Write a program compare.c that reads two strings from command line and outputs w
Write a program compare.c that reads two strings from command line and outputs whether one is the reverse of the other while ignoring the case. If the user does not run the progra…
Write a program containing 4 seperate C++ functions to perform the following on
Write a program containing 4 seperate C++ functions to perform the following on a one dimensional integer array called "LIST". (The array is populated with N random numbers): 1. D…
Write a program containing a class named CaseConversion. CaseConversion should c
Write a program containing a class named CaseConversion. CaseConversion should contain 3 methods: ToLowercase, ToUppercase, and ToPropercase. None of these 3 methods should call a…
Write a program containing a function that sorts three numbers of int type in no
Write a program containing a function that sorts three numbers of int type in nondecreasing order using the following function heading. void sort(int& num1, int& num2, int…
Write a program containing two linked list of 6 user profiles each. Each person
Write a program containing two linked list of 6 user profiles each. Each person is identified by his/her first name, last name and 10-digit telephone number member variables. Be s…
Write a program containing two linked list of 6 user profiles each. Each person
Write a program containing two linked list of 6 user profiles each. Each person is identified by his/her first name, last name and 10-digit telephone number member variables. Be s…
Write a program create a vector with random numbers. Use merge sort to reorder t
Write a program create a vector with random numbers. Use merge sort to reorder the vector. Prompt user to enter a number to search in the vector. If there are more than one number…
Write a program creating a 10 integer array and fill it with random integers bet
Write a program creating a 10 integer array and fill it with random integers between 1and 100. Then using the exchange sort, sort it so that the lowest values are first in the arr…
Write a program cylinder.c that accomplishes the following: Read a list of radii
Write a program cylinder.c that accomplishes the following: Read a list of radii and heights from a file(cylinder_input.data). For each pair of values, calculate the cylinder's vo…
Write a program dataSum. c that takes as command-line arguments an input-file na
Write a program dataSum. c that takes as command-line arguments an input-file name and an output- file name. The input file consists of several lines of space-separated integers. …
Write a program designed to compile on the gcc linux compiler to play the game o
Write a program designed to compile on the gcc linux compiler to play the game of Blackjack where the user of the program is the player, and the program acts as the dealer. The pr…
Write a program diff.py that takes two file names from the command line. The fil
Write a program diff.py that takes two file names from the command line. The file names may NOT have spaces in them! It then writes either files differ or files are the same. Exam…
Write a program display a menu allowing user to select an addition, subtraction,
Write a program display a menu allowing user to select an addition, subtraction, or multiplication problem. The final selection on the menu should let user quit the program. The p…
Write a program driver that uses the class Statistics to gather statistical data
Write a program driver that uses the class Statistics to gather statistical data on a set of random numbers between 0 and max using dynamic arrays. The main program should ask the…
Write a program elements.c that loads the chemical elements from a file into a s
Write a program elements.c that loads the chemical elements from a file into a struct array and allows the user to search it and edit it. First, declare a struct to store properti…
Write a program email. c that asks the user for a first and last name, and print
Write a program email. c that asks the user for a first and last name, and prints out the user's UCSD email ID consisting of the first letter of the first name followed by at most…
Write a program email. c that asks the user for a first and last name, and print
Write a program email. c that asks the user for a first and last name, and prints out the user's UCSD email ID consisting of the first letter of the first name followed by at most…
Write a program even_odd.c that include the following function. void is_even(int
Write a program even_odd.c that include the following function. void is_even(int numbers[], int n, int result[]); The is_even function determines if an element in the array is an …
Write a program for C++ 5. (11 pts) Cost of shipping: Write, compile, and test a
Write a program for C++ 5.   (11 pts) Cost of shipping: Write, compile, and test a C++ program that uses an if-else structure for problem 3.11 on page 108. Use the format specifie…
Write a program for C++ that creates two rectangular shapes and then animates th
Write a program for C++ that creates two rectangular shapes and then animates them. The two shapes should start on opposite ends of the screen and then move toward each other. Whe…
Write a program for C++ that will take a depth (in kilometers) inside the earth
Write a program for C++ that will take a depth (in kilometers) inside the earth as input data; compute and display the temperature at this depth in degrees Celsius and degree Fahr…
Write a program for C++ to help a local restaurant automate its breakfast billin
Write a program for C++ to help a local restaurant automate its breakfast billing system. The program should do the following: Show the customer the different breakfast items offe…
Write a program for Eddie’s Equipment Rental Build a windows form similar to the
  Write a program for Eddie’s Equipment Rental Build a windows form similar to the one above Load the list box with the equipment shown below in design mode Use 3 parallel arrays …
Write a program for Horizon Phones, a provider of cellular phone service. Prompt
Write a program for Horizon Phones, a provider of cellular phone service. Prompt a user for maximum monthly values for talk minutes used, text messages sent, and gigabytes of data…
Write a program for Horizon Phones, a provider of cellular phone service. Prompt
Write a program for Horizon Phones, a provider of cellular phone service. Prompt a user for maximum monthly values for talk minutes used, text messages sent, and gigabytes of data…
Write a program for Nation\'s Bank in Hyatesville that will find the total numbe
Write a program for Nation's Bank in Hyatesville that will find the total number of days its employees were out sick for the specified past few years. The program will prompt the …
Write a program for Q4 of P81 from the book (shown right below) with the followi
Write a program for Q4 of P81 from the book (shown right below) with the following changes: Restaurant Bill Write a program that computes the tax and tip on a restaurant bill for …
Write a program for Stack using Doubly Linked-List, and implement the following
Write a program for Stack using Doubly Linked-List, and implement the following functionalities: 1. Push 2. Pop 3. IsEmpty 4. MakeEmpty 5. Display forward (from the most recent to…
Write a program for Stack using Linked-List, and implement the following functio
Write a program for Stack using Linked-List, and implement the following functionalities: 1. Push 2. Pop 3. IsEmpty 4. MakeEmpty Write a main program (C++) which reads the attache…
Write a program for a Payroll System in Java Solution import javax.swing.*; impo
Write a program for a Payroll System in Java
Write a program for a bank system. Your program should use a linked list to save
Write a program for a bank system. Your program should use a linked list to save customer name and linked list to save account number and the balance of the account .your program …
Write a program for a car dealership that has a database of information for diff
Write a program for a car dealership that has a database of information for different automobiles. Each automobile has one or more attributes associated with it (color, Looks spor…
Write a program for a car dealership that has a database of information for diff
Write a program for a car dealership that has a database of information for different automobiles. Each automobile has one or more attributes associated with it (color, Looks spor…
Write a program for a company that sells 7 different types of smartphones. The p
Write a program for a company that sells 7 different types of smartphones. The program should help the company to keep track of their sales. The program should use two arrays both…
Write a program for a dealership that displays information and cost about a part
Write a program for a dealership that displays information and cost about a particular car model. Allow the program to take in the car model as user-input, as well as the initial …
Write a program for a deterministic push-down automata simulator. In this case,
Write a program for a deterministic push-down automata simulator. In this case, though, your simulator should include a stack that follows the rules of a push-down automata. Keep …
Write a program for a digital clock using pic16f1829 microcontroller Solution //
Write a program for a digital clock using pic16f1829 microcontroller
Write a program for a furniture company that determines the price of a table. As
Write a program for a furniture company that determines the price of a table. Ask the user to choose 1 for pine, 2 for oak, or 3 for mahogany. The output is the name of the wood c…
Write a program for a game called \"connect four\" (in C++) ***I\'m not sure how
Write a program for a game called "connect four" (in C++) ***I'm not sure how to even begin writing this. Any help provided would be greatly appreciated!*** ***Please use The foll…
Write a program for a game called \"connect four\" (in C++14) ***I\'m not sure h
Write a program for a game called "connect four" (in C++14) ***I'm not sure how to even begin writing this. Any help provided would be greatly appreciated!*** This program: 1. Lay…
Write a program for a graphics system that has classes for rectangles, squares,
Write a program for a graphics system that has classes for rectangles, squares, circles and triangles. Each of these must be derived from a base class, Figure. You must include me…
Write a program for a meteorologist that calculates the wind chill factor and cl
Write a program for a meteorologist that calculates the wind chill factor and cloud base altitude for the inputs temperature in Fahrenheit, wind speed in mph, and the dew point in…
Write a program for a police department that has collected a database of informa
Write a program for a police department that has collected a database of information on various suspects for a given crime. (Luckily for you, the department is only investigating …
Write a program for a police department that has collected a database of informa
Write a program for a police department that has collected a database of information on various suspects for a given crime. (Luckily for you, the department is only investigating …
Write a program for a retail store that only sells three (category) types of mer
Write a program for a retail store that only sells three (category) types of merchandises: Appliance, Kitchenware and Tool. This program shall use a structure to store the followi…
Write a program for a retail store that only sells three (category) types of mer
Write a program for a retail store that only sells three (category) types of merchandises: Appliance, Kitchenware and Tool. This program shall use a structure to store the followi…
Write a program for a retail store that only sells three (category) types of mer
Write a program for a retail store that only sells three (category) types of merchandises: Appliance, Kitchenware and Tool. This program shall use a structure to store the followi…