Answer:
The statement is: True.
Explanation:
In Business writing, there are two methods of composing a message. The direct strategy starts by providing the purpose of the message at the beginning and adds supporting details in the body. The indirect strategy starts by providing supporting details to attract the audience and ends giving the main idea of the speech.
Answer: $40
Explanation:
Selling price can be calculated through the contribution margin equation;
Contribution margin = (Selling Price - Variable cost) / Selling Price
Contribution margin = Fixed costs/break-even point
= 660,000/1,100,000
= 60%
60% = (Selling Price - 16) / Selling Price
Selling price * 60% = Selling price - 16
16 = Selling price - (0.6 * selling price)
16 = Selling price * 40%
16/40% = Selling price
Selling price = $40
Solution:
Given Information,
Heat input is (
) = 5.5 ×
Btu/h
Combustion efficiency of the boiler (
) = 0.7
Combustion efficiency after turn up (
) = 0.8
Operation Hour (t) = 5200h
Unit cost (c) = 
Calculate heat output from the boiler
=
x 
= 5.5 x
x 0.7
= 3.85 x
Btu/h
Calculate the heat input to the boiler after the tune-up
=
/ 
= 3.85 x
/ 0.8
= 4.8125 x
Btu/h
Calculate the saved energy after the tune-up
=
- 
= 5.5 x
- 4.8125 x
Btu/h
= 0.6875 x
Btu/h
Calculate the annual energy saving (
)
=
x t
= ( 0.6875 x
Btu/h ) ( 5200 hr/yr)
= 3575 x
Btu/h
Calculate the annual cost saving
Annual cost saving =
x Unit cost
= 3575 x
Btu/h x 
= 82225
The correct answer for the for loop is:
for (int i=1; i<200; i++){
if ((i%2)==0 && (i%3)==0){
cout << i << " ";
}
}
Python offers three options for running the loops. For iterating repeatedly through a sequence, use a for loop (that is either a list, a tuple, a dictionary, a set, or a string). This functions more like an iterator method seen in other object-oriented programming languages and is less like the for keyword found in other programming languages. The for loop allows us to run a series of instructions once for each element of a list, tuple, set, etc. There is no need to set an indexing variable before using the for loop.
Write a for loop that prints, in ascending order, all the positive integers less than 200 that are divisible by both 2 and 3, separated by spaces.
Learn more about loops here:
brainly.com/question/25955539
#SPJ4