Answer:
a. 318.2k
b. 45.2kj
Explanation:
Heat transfer rate to an object is equal to the thermal conductivity of the material the object is made from, multiplied by the surface area in contact, multiplied by the difference in temperature between the two objects, divided by the thickness of the material.
See attachment for detailed analysis
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer: c) 450 kPa
Explanation:
Boyle's Law: This law states that pressure is inversely proportional to the volume of the gas at constant temperature and number of moles.
(At constant temperature and number of moles)
where,
= initial pressure of gas = 150 kPa
= final pressure of gas = ?
= initial volume of gas = v L
= final volume of gas =
Therefore, the new pressure of the gas will be 450 kPa.