Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

A student would like to select a suitable T-shirt from local shops. The colour could be red, blue or white, the size needs to be medium and the shop must be no more than 10 miles away. Write a python program for the given scenario.

Using Visual Studio Create a simple application Manny Management Consulting charges P2,000 for training fee

and P150 per person for registration fee. Create an application

to help the accountant make a billing statement showing the

customer's name, address, number of participants, training fee,

registration fee and total amount due


write a program which loads(from the keyboard)variables of four basic types

1.integer number(preferably short)

2.floating point number(preferably double)

3.single character(char)

4.text(using array text representation char text[30])

5.boolean(logical TRUE/FALSE)(int?)

and the display the collected values in five following rows in a formated form:

on 15 positions

aligned /justified to right

with maximally 2 fraction digits


1.      Create a function that would help you compute the average expense of car fueling in a month. It would take as an input number of times in a month that you have refueled. Create a dynamic array of the given size. Then you would be required to input that may times the amount used to refuel and store values in this dynamic array. Now compute the .using in c++.

a.      average of these cost

b.      most expensive refueling

c.      Least expensive refueling.

2.      Overload the function from 1 to read the number of entries in a file. Create a dynamic array of the given size. Then you would be required to input that may times the amount used to refuel and store values in this dynamic array. Now compute the

a.      average of these cost

b.      most expensive refueling

c.      Least expensive refueling.

3.      Write back results from 1 in the file “manual_input.txt”

4.      Write back results from 2 in the file “automated_input.txt”




Solve the Integer LP problem using the GOMORY'S cutting plane method. Maximize Z = 2Y1+ 20Y2-10Y3 subject to the constraints (0) 2Y1+20Y2+4Y3 ≤ 15, (ii) 6Y1+ 20Y2+4Y3=201 and Y1, Y2, Y3 20 and are integers.


Financial application: compound value) Suppose you save $100 each month into a savings account with the annual interest rate 5%. Thus, the monthly interest rate is After the first month, the value in the account becomes 100 * (1 + 0.00417) = 100.417 After the second month, the value in the account becomes (100 + 100.417) * (1 + 0.00417) = 201.252 After the third month, the value in the account becomes (100 + 201.252) * (1 + 0.00417) = 302.507 and so on. Write a program that prompts the user to enter a monthly saving amount and displays the account value after the sixth month. (In Exercise 4.30, you will use a loop to simplify the code and display the account value for any month.
Science: calculating energy) Write a program that calculates the energy needed to heat water from an initial temperature to a final temperature. Your program should prompt the user to enter the amount of water in kilograms and the initial and final temperatures of the water. The formula to compute the energy is Q = M * (finalTemperature – initialTemperature) * 4184 where M is the weight of water in kilograms, temperatures are in degrees Celsius, and energy Q is measured in joules.
Physics: acceleration) Average acceleration is defined as the change of velocity divided by the time taken to make the change, as shown in the following formula: Write a program that prompts the user to enter the starting velocity in meters/second, the ending velocity in meters/second, and the time span t in seconds, and displays the average acceleration
Sum the digits in an integer) Write a program that reads an integer between 0 and 1000 and adds all the digits in the integer. For example, if an integer is 932, the sum of all its digits is 14. Hint: Use the % operator to extract digits, and use the / operator to remove the extracted digit. For instance, 932 % 10 = 2 and 932 / 10 = 93.
5.Write a program that reads the subtotal and the gratuity rate, then computes the gratuity and total. For example, if the user enters 10 for subtotal and 15% for gratuity rate, the program displays $1.5 as gratuity and $11.5 as total.
LATEST TUTORIALS
APPROVED BY CLIENTS