Answer:
d
Explanation:
is the because that's the amount of work in making machine can do producing heat
Answer:
Time of submersion in years = 7.71 years
Explanation:
Area of plate (A)= 16in²
Mass corroded away = Weight Loss (W) = 3.2 kg = 3.2 x 106
Corrosion Penetration Rate (CPR) = 200mpy
Density of steel (D) = 7.9g/cm³
Constant = 534
The expression for the corrosion penetration rate is
Corrosion Penetration Rate = Constant x Total Weight Loss/Time taken for Weight Loss x Exposed Surface Area x Density of the Metal
Re- arrange the equation for time taken
T = k x W/ A x CPR x D
T = (534 x 3.2 x 106)/(16 x 7.9 x 200)
T = 67594.93 hours
Convert hours into years by
T = 67594.93 x (1year/365 days x 24 hours x 1 day)
T = 7.71 years
Answer:
Explanation:
I do not have access to your diagram but based on what I know, a food web cannot sustain itself without decomposers. They are the main guys who break down dead animals, plants into organic or inorganic nutrients which are needed by the primary producers to grow. So if decomposers are not there then producers cannot produce and thus herbivores cannot live and carnovers die out as well. Hope this makes sense.
Check out: https://www.nationalgeographic.org/encyclopedia/decomposers/
Answer:
#include <iostream>
#include <string>
#include "user.h"
#include "password.h"
using namespace Authenticate;
using namespace std;
int main()
{
inputUserName();
inputPassword();
cout << "Your username is " << getUserName() <<
" and your password is: " <<
getPassword() << endl;
return 0;
}
user.h:
#ifndef USER_H
#define USER_H
#include <string>
using namespace std;
namespace Authenticate
{
namespace
{
bool isvalid();
}
void inputUserName();
string getUserName();
}
#endif
user.cpp:
#include <iostream>
#include "user.h"
namespace Authenticate
{
string username="";
namespace
{
bool isvalid()
{
if(username.length() == 8)
return true;
else
return false;
}
}
void inputUserName(){
do
{
cout << "Enter your username (8 letters only)" << endl;
cin >> username;
}
while(!isvalid());
}
string getUserName()
{
return username;
}
}
password.h:
#ifndef PASSWORD_h
#define PASSWORD_h
#include <string>
using namespace std;
namespace Authenticate
{
namespace
{
bool isValid();
}
void inputPassword();
string getPassword();
}
#endif
password.cpp:
#include <iostream>
#include <string>
using namespace std;
namespace Authenticate
{
string password="";
namespace
{
bool isValid()
{
if(password.length() >= 8)
{
for(int i=0; i<password.length(); i++)
if(password[i] >= '0' && password[i] <= '9')
return true;
return false;
}
else
return false;
}
}
void inputPassword(){
do
{
cout << "Enter your password (at least 8 characters " <<
"and at leat one non-letter)" << endl;
cin >> password;
}
while(!isValid());
}
string getPassword()
{
return password;
}
}