Answer:
15.64 MW
Explanation:
The computation of value of X that gives maximum profit is shown below:-
Profit = Revenue - Cost
= 15x - 0.2x 2 - 12 - 0.3x - 0.27x 2
= 14.7x - .47x^2 - 12
After solving the above equation we will get maximum differentiate for profit that is
14.7 - 0.94x = 0
So,
x = 15.64 MW
Therefore for computing the value of X that gives maximum profit we simply solve the above equation.
Answer:
The solution code is written in Java.
System.out.println(numItems);
Explanation:
Java <em>println() </em>method can be used to display any string on the console terminal. We can use <em>println()</em> method to output the value held by variable <em>numItems.</em> The <em>numItems </em>is passed as the input parameter to <em>println()</em> and this will output the value of <em>numItems</em> to console terminal and at the same time the output with be ended with a newline automatically.