Answer:
//Define the header file
#ifndef PLAYER_H
#define PLAYER_H
//header file.
#include <string>
//Use the standard namespace.
using namespace std;
//Define the class Player.
class Player
{
//Declare the required data members.
string name;
int score;
public:
//Declare the required
//member functions.
void setName(string par_name);
void setScore(int par_score);
string getName();
int getScore();
}
//End the definition
//of the header file.
#endif
Player.cpp:
//Include the "Player.h" header file,
#include "Player.h"
//Define the setName() function.
void Player::setName(string par_name)
{
name = par_name;
}
//Define the setScore() function.
void Player::setScore(int par_score)
{
score = par_score;
}
//Define the getName() function.
string Player::getName()
{
return name;
}
//Define the getScore() function.
int Player::getScore()
{
return score;
}
Answer:
The answer is "0.187 lbm and 1 lbf".
Explanation:
The mass = 
Calculating mass on Mars:




Answer: true
Explanation:
A key is a machine element that us used to connect the element of a rotating machine to a shaft. It should be noted that the key hinders the relative rotation that may take place between the two parts.
Key length is designed to provide desired factor of safety. It should also be noted that the factor of safety shouldn't be much and the key length is typically limited to the hub length.