What is the final temperature when 150.0 g of water at 90.0oC is added to 100.0 g of water at 30.0 oC?
1. A marketing research conducted by firm company result shows the firms production function and its demand as the following equation. And the demand function is given by 100. Using the given information answer the following question.
a. If you are this firms manager how are you suggest your firms owner to add the input x in order to be at maximum average production? Support your suggestion with evidence from the production function given.
b. If the firms owner decide to add the 10th x what is your advice to this owner as an economist? Support your answer with graph
c. If the firms market is perfectly competitive, how many outputs must be produced to be at maximum profit? At maximum point how many input(x) is required? Hint assumes the above equation as total cost of production.
d. Identify and show the production stage of the given production function. After identifying each stage recommend the owner as an advisor of this company at each final points of the stage.
Write a program that mimics a calculator. The program should take as input two integers and the operation to be performed. It should then output the number, the operator and the result. (For division, if the denominator is zero, output an appropriate message). CODING C#
the goal of this coding exam is to quickly get you of the ground with this in the object methods
tax criteria
salary tax percentage
>= 50000 5
>= 1000000 10
quick tip
tax = salary * taxPercentage/100
input 1
stuart
developer
840000
output 1
42000
"use strict";
process.stdin.resume();
process.stdin.setEncoding("utf-8");
let inputString = "";
let currentLine = 0;
process.stdin.on("data", (inputStdin) => {
inputString += inputStdin;
});
process.stdin.on("end", (_) => {
inputString = inputString.trim().split("\n").map((str) => str.trim());
main();
});
function readLine() {
return inputString[currentLine++];
}
function main() {
const name = readLine();
const role = readLine();
const salary = JSON.parse(readLine());
function Employee(name, role, salary) {
// Write your code here
}
const employee1 = // Write your code here
/* Please do not modify anything below this line */
console.log(employee1.getTaxAmount());
}
AD is string hung from a horizontal ceiling at A and D. A weight of 75kN is hung from point B.
Determine the magnitude of weight that should be hung from point C such that the portion BC of the string is horizontal. Point B is 0.6cm from A and point C is 0.35cm from D as shown below. Also calculate the tension in the various portion AB,BC and CD of the string
The world’s largest gold bar in the toi gold museum in japan can be seen and touched by visitors. it has an irregular shape with dimensions about 17.9 in. by 8.9 in. by 6.7 inches, with a volume of 12.94 l. determine the mass and weight (1 kg = 2.205 lb).
what is the centroid of x^2=y, x+y=6, x=0. with solution
For the following total-revenue and total-cost functions of a firm:
TR = 22Q - 0.5Q ^ 2 ,
TC=\ Q^ 2 -8.5Q^ 2 +50Q+90
(a) Determine the level of output at which the firm maximizes its total profit. (b) Determine the
A firm's total-revenue and total-cost functions are
TR=4Q
TC=0.040¹-0.90³ + 100+5
(a) Determine the best level of output. b) Determine the total profit of the firm at its
write a program that determines whether an input number is an
integer or a real number.