Answer:
The option that identifies why the bicycle cannot yet be created as a model in the scenario is;
Suzanne forgot to include the exact units of measurement that should be used
Explanation:
The design sketch turned over to the team that will work on the prototype by Suzanne should present all aspects of the design that will enable others working on the design and that make use of the sketch to have a clear understanding of what is required of them
Given that Suzanne has included the numbers that explain the relationship between the sketch and the real world object, the scale that shows the ratios and proportions of the sketch and the actual bicycle has been provided, however, given that the the machinist still need more information, the units of the measurement indicated in the drawing was not included, therefore, the actual dimensions and size that gives the length of the parts of the sketch and of the prototype to be made cannot be determined.
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;
}
}
Answer:
Refrigerant R-134a is to be cooled by waterin a condenser.The refrigerant enters thecondenser with a mass flow rate of 6 kg/minat 1 MPa and 70 C and exits at 35 C. The cool-ing water enters at 300 kPa and 15 C andleaves at 25 C. Neglecting pressure drops,determine a) the required mass flow rate ofthe cooling water, and b) the heat transferrate from the refrigerant to the water.SolutionFirst consider the condenser as the control volume. The process is steady,adiabatic and no work is done. Thus over any time intervalΔt,ΔEΔt=0and thusXin˙E=Xout˙Ewhere˙E=˙m h+12V2+gz650:351 Thermodynamics·Prof. Doyle Knight37
Background image
I only know this
sorry for errors
Answer:
Fatigue factor of safety is 2.0267
Explanation:
Solution is attached below.