Answer:
The correct answer is A. maker.
Explanation:
The manufacturing industry (manufacturing) is the production of added value of merchandise for use or sale using labor and machinery, tools, chemical and biological processes, or formulation. The term can refer to a wide range of human activities, from handicraft to high technology, but it is more commonly applied to industrial production, in which raw materials are transformed into finished products on a large scale. Such finished products can be used to manufacture other more complex products, such as airplanes, appliances or cars, or be sold to wholesalers, which in turn sell them to retailers, which they then sell to end users or consumers.
Answer:
// Program is implemented using Coral Programming Language
int X
int Y
int Sum
Put "Enter any two numbers" to output
x = Get next input
Y = Get next input
if Y < X
Put "Second integer can't be less than the first" to output
else
for Sum = X; Sum <= Y; Sum = Sum + 10
Put Sum to output
Explanation:
The above program is written using Coral Programming Language
The first line is a comment
The next 3 lines declares 3 integer variables
Which are X, Y and Sum
X and Y represent the two input numbers as seen on line 6 and 7
X, being the first and Y being the second
Line 8 tests the larger of the two numbers
If Y is less than X, the output is "Second integer can't be less than the first" without the quotes
Else
The last two lines perform iterative operations that assigns the addition of 10 and X to Sum
It continues printing sum as long as sum is less than the value of Y.
Less than 10% is the percentage of Greek students that would participate in a hazing activity, even if it made them uncomfortable. This percentage is justifiable because student participation in hazing activities is prohibited and the accompanying danger to physical and mental health induced to a student is one factor that makes it more off-putting.
Answer:
Exact = $34.5
Ordinary = $35
Explanation:
Given that :
Principal, P = $1500
Interest rate = 14% = 0.14
Number of days = 60
For exact :
Exact simple interest uses 365 days :
Simple interest = principal * rate * time
Simple interest = $1500 * 0.14 * 60 / 365 = 34.520547 = $34.5
For ordinary simple interest :
Simple interest = principal * rate * time
Simple interest = $1500 * 0.14 * 60 / 360 = $35