A wall with a thermal conductivity of 0.50W/m·K is maintained at 40.0°C. The heat transfer through the wall is 250.0W. The wall surface area is 1.50m2 and its thickness is 1.00cm. Determine the temperature at the other surface.
On complete combustion, 0.246 g of an organic compound gave 0.198 g of CO2 and 0.1014 g of H2O. What is the ratio of carbon and hydrogen atoms in the compound?
QUESTION 1
A wave out in the deep ocean has an amplitude of 1.51 m, a wavelength of 212 m and a period of 14.3 s
What is the speed of such a wave? (in ms-1 to 3 s.f)
what happens to the (1) resistance and (2) current flow through a conductor if:
b. conductivity increases
c. decrease in temperature
11. The battery life of a certain battery is normally distributed with a mean of 90 days and a standard deviation of 3 days.
For each of the following questions, construct a normal distribution curve and provide the answer.
a) About what percent of the products last between 87 and 93 days?
b) About what percent of the products last 84 or less days?
For each of the following questions, use the standard normal table and provide the answer.
c) About what percent of the products last between 89 and 94 days?
d) About what percent of the products last 95 or more days?
Provide at least two applications of Nuclear Chemistry in your respective Engineering Technology and explain each.
Consider the normal distribution of IQs with a mean of 100 and a standard deviation of 16. What percentage of IQs are
a. greater than 95?
b. less than 120
c. between 90 and 110
Create an Employee class with the following specifications.
1. EmployeeName as string.
2. BasicSalary, HRA, DA, TAX, GrossSalary and NetSalary as double.
3. Calculate the HRA (15% of BasicSalary), DA (10% of BasicSalary), GrossSalary (BasicSalary + HRA + DA), Tax (8% of GrossSalary) and NetSalary (GrossSalary – Tax).
4. A Constructor to define the EmployeeName and BasicSalary.
5. A method CalculateNetPay to calculate the HRA, DA, Tax, GrossSalary and NetSalary values using the criteria mentioned in the Point 3.
6. A method Display to display the Salary structure
Equilibrium in any market can be described as that point where demand is equal to supply.
"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() {
let person = JSON.parse(readLine().replace(/'/g, '"'));
/* Please do not modify anything above this line */
/* Write your code here and log the output */
}
length is undefined