Answer:
The program is as follows:
i = 1
while(i<11):
j = 1
while(j<=i):
print('*', end = '')
j += 1
i += 1
print()
Explanation:
Initialize i to 1
i = 1
The outer loop is repeated as long as i is less than 11
while(i<11):
Initialize j to 1
j = 1
The inner loop is repeated as long as j is less than or equal i
while(j<=i):
This prints a *
print('*', end = '')
This increments j and ends the inner loop
j += 1
This increments i
i += 1
This prints a blank and ends the inner loop
print()
Answer:
Answer for the question:
In , the industries with the most complaints to the Better Business Bureau were banks, cable and satellite television companies, collection agencies, cellular phone providers, and new car dealerships (USA Today, April 16, 2012). The results for a sample of complaints are contained in the DATAfile named BBB. Click on the datafile logo to reference the data."
is explained in the attachment.
Explanation:
Answer:
a) 0.489
b) 54.42 kg/s
c) 247.36 kW/s
Explanation:
Note that all the initial enthalpy and entropy values were gotten from the tables.
See the attachment for calculations