Answer:
The power developed by engine is 167.55 KW
Explanation:
Given that
Mean effective pressure = 6.4 bar
Speed = 2000 rpm
We know that power is the work done per second.
So
We have to notice one point that we divide by 120 instead of 60, because it is a 4 cylinder engine.
P=167.55 KW
So the power developed by engine is 167.55 KW
Why 1+12+ Y3 < 1100
Says the state of university Need to purchase 1100 computers in total, we have the following answer on the way top
Answer:
Frequency =
Wavenumber =
Energy =
Energy = 1.4579 eV
Energy =
Explanation:
As we are given the wavelength = 850 nm
conversion used :
So, wavelength is
The relation between frequency and wavelength is shown below as:
Where, c is the speed of light having value =
So, Frequency is:
Wavenumber is the reciprocal of wavelength.
So,
Also,
where, h is Plank's constant having value as
So,
Also,
So,
Also,
So,
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;
}