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:
See attached images for the diagrams and tables
Answer:
11 toes on one foot? and 5 one the other or just 11 toes?
your NO HINT threw me off
Explanation:
Answer:
Rate of heat transfer to the room air per meter of pipe length equals 521.99 W/m
Explanation:
Since it is given that the radiation losses from the pipe are negligible thus the only mode of heat transfer will be by convection.
We know that heat transfer by convection is given by

where,
h = heat transfer coefficient = 10.45
(free convection in air)
A = Surface Area of the pipe
Applying the given values in the above formula we get
