Answer:
Business Plan: for a Car Wash company
Tools and ingredients required: Water tanker: $250s, Self-service water supply set up: $160s. two helpers one for washing, and one as cashier: $1000s per month Salary, water supply: through boring, one-time expense :$1000s. A place ( in the ready state apart from above-mentioned requirements) one rent: $800s monthly rent.
Total investment required: $4210s + $2000s( as security).= $6210s.
Work Details:
The car will be washed with water. And we have not mentioned the Mobil here, as that work will be outsourced. A petrol pump employee will always be at the car wash center to apply the Mobil to the vehicle after washing. And the only vehicle entertained is the car, however, the model of the car does not matters.
The income is daily deposited in the company bank account, and digital payment is also accepted.
Hope our car wash business succeeds.
Explanation:
Please check the answer section.
Answer:
The total const is 13025 KWh
Explanation:
These are the steps to solve this problem:
- Convert all the powers from W to KW dividing by 1000.
- Convert all the times on minutes to hours dividing by 60.
- Then you can apply energy consumption formula
for any of the appliances. the results will be at KWh. - Sum all the consumtions and you will have the total cost.
Attached you will have a spreadsheet as a guidance. Any questions, just let me know.
Answer:
Following is the code in python language
team_names = ('Rockets','Raptors','Warriors','Celtics')#holding the string value
print(team_names[0],team_names[1],team_names[2],team_names[3])#display
Output:
Rockets Raptors Warriors Celtics
Explanation:
Following is the description of above statement .
- Create a dictionary "team_names" that is holding the string value Rockets Raptors Warriors and Celtics.
- Finally we used the print function in that function we pass the index of corresponding dictionary i.e team_names[0] . it will display the first index value similarly we pass team_names[1], team_names[2] team_names[3].