Answer: 33.35 minutes
Explanation:
A(t) = A(o) *(.5)^[t/(t1/2)]....equ1
Where
A(t) = geiger count after time t = 100
A(o) = initial geiger count = 400
(t1/2) = the half life of decay
t = time between geiger count = 66.7 minutes
Sub into equ 1
100=400(.5)^[66.7/(t1/2)
Equ becomes
.25= (.5)^[66.7/(t1/2)]
Take log of both sides
Log 0.25 = [66.7/(t1/2)] * log 0.5
66.7/(t1/2) = 2
(t1/2) = (66.7/2 ) = 33.35 minutes
The rate of heat transfer by the air conditioner using constant specific heat of 1.004kj/kg.K is 15.06 kW.
<h3>What is the rate of heat transfer?</h3>
Rate of heat transfer is the power rating of the machine.
Work done and changes in potential and kinetic energy are neglected since it is a steady state process.
The specific heat in terms of specific heat capacity and temperature change is given as:


The rate of heat transfer, is then determined as follows:
- Qout = flow rate × specific heat
Qout = 0.75 × 20.08 = 15.06 kW
Therefore, the rate of heat transfer by the air conditioner is 15.06 kW.
Learn more about rate of heat transfer at: brainly.com/question/17152804
#SPJ1
Answer:
manda a senha do brainly bloquearam os amigos e você vai ver o meu perfil completo a minha amiga Jeciane estamos fazendo uma academia de lima e você vai ver o meu perfil completo a minha amiga Jeciane estamos completo a minha amiga Jeciane estamos fazendo uma academia de lima e você vai ver o meu perfil você vai ver o meu perfil você vai ver o meu perfil completo a minha amiga Jeciane estamos fazendo uma academia de lima e fazendo uma academia de lima e fazendo uma academia de lima e fazendo uma academia de lima e fazendo uma academia de lima e fazendo uma academia de lima e você vai ver o meu perfil completo a minha amiga Jeciane estamos fazendo
Explanation:
Marcar como melhor porfavo
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}