1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
bixtya [17]
4 years ago
10

List all information for each order item. Include an item total, which can be calculated by multiplying the Quantity and Paid ea

ch columns. Use a column alias for the calculated value to show the heading "Item Total" in the output
Engineering
1 answer:
Zigmanuir [339]4 years ago
3 0

Answer:

#include<iostream>

Using namespace std;

int main()

{

int n, qty;

double price, amount;

cout<<"Number of items ";

cin>>n;

cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";

for(int i= 1; I<= n; i++)

{

cin>>qty;

cin>>price;

amount = qty * price;

cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;

}

}

Explanation

The above program is written in C++ programming language

5 variables are declared and used in the program

n is declared as an integer to represent the total number of items

qty is declared as integer to represent the total quantity of each item

price is declared as double to represent the amount of each individual item

amount is declared as double to represent the total amount of an item; it is gotten by qty * price

i is declared as integer to iterated between each items

The amount of each item is calculated within the iteration and also printed immediately

You might be interested in
Identify the measurement shown in figure 7 and state in centimeters ​
Sav [38]

Answer:

1.3cm

Explanation:

the arrow is 3 lines past the 1 so it is 1.3cm

6 0
3 years ago
An air conditioning system is to be filled from a rigid container that initially contains 5 kg of saturated liquid at 24° Celsiu
gtnhenbr [62]
And air-conditioning system is to be filled for my ridge the containerBut that internally contains 5 kgDetermine the final quality of the arm 134
7 0
2 years ago
Which of the following is NOT true concerning the color of minerals? A. Some minerals have a consistent color, but many have a r
mixer [17]

Answer:

Option D

A mineral’s color reflects the wavelengths of light that are absorbed by the mineral.

Explanation:

Color is one of the physical properties of minerals. Many minerals have a wide range of colors but there are some minerals with one consistent color and such minerals are referred as monochromatic minerals for example azurite. Normally, the streak color tends to be less variable than the color of the whole mineral and impurities or minor chemical components in a mineral react and often control the display color of resultant mineral. Option D is incorrect since mineral's color don't reflect wavelengths of light absorbed by such minerals.

5 0
3 years ago
When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the str
Murljashka [212]

The question is incomplete. The complete question is :

The solid rod shown is fixed to a wall, and a torque T = 85N?m is applied to the end of the rod. The diameter of the rod is 46mm .

When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the strains vary linearly along radial lines. Within the proportional limit, the stress also varies linearly along radial lines. If point A is located 12 mm from the center of the rod, what is the magnitude of the shear stress at that point?

Solution :

Given data :

Diameter of the rod : 46 mm

Torque, T = 85 Nm

The polar moment of inertia of the shaft is given by :

$J=\frac{\pi}{32}d^4$

$J=\frac{\pi}{32}\times (46)^4$

J = 207.6 mm^4

So the shear stress at point  A is :

$\tau_A =\frac{Tc_A}{J}$

$\tau_A =\frac{85 \times 10^3\times 12 }{207.6}$

$\tau_A = 4913.29 \ MPa$

Therefore, the magnitude of the shear stress at point A is 4913.29 MPa.

3 0
3 years ago
Which of the following requirement statements is an example of a breakdown of the accuracy standard?
const2013 [10]

Answer:

<u>The automobile rental prices shall show all taxes (including a 6% state tax).</u>

Explanation:

Im pretty sure

4 0
3 years ago
Other questions:
  • Answer every question of this quiz
    7·1 answer
  • Which of the following should NOT be included in an emergency kit?
    13·2 answers
  • A student is using a 12.9 ft ramp to raise an object 6 ft above the ground.
    5·1 answer
  • Liquid water enters an adiabatic piping system at 15°C at a rate of 8kg/s. If the water temperature rises by 0.2°C during flow d
    12·1 answer
  • At what stage of development is an engineering team the most productive?
    6·2 answers
  • A 13.7g sample of a compound exerts a pressure of 2.01atm in a 0.750L flask at 399K. What is the molar mass of the compound?a. 3
    15·1 answer
  • In the situation shown below, what would the Moon look like from Earth? Sun, Earth and Moon Four Moon Views A. View A B. View B
    8·1 answer
  • g A thin-walled pressure vessel 6-cm thick originally contained a small semicircular flaw (radius 0.50-cm) located at the inner
    5·1 answer
  • A jointed arm robot can rotate on the following 6 axes?
    8·1 answer
  • Given the inherent costs of regulation it is safe to say that there is always a negative economic impact associated with regulat
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!