Answer:d
Explanation:
Given
Temperature
Also 
R=287 J/kg
Flow will be In-compressible when Mach no.<0.32
Mach no.
(a)
Mach no.
Mach no.=0.63
(b)
Mach no.
Mach no.=0.31
(c)
Mach no.
Mach no.=1.27
(d)
Mach no.
Mach no.=0.127
From above results it is clear that for Flow at velocity 200 km/h ,it will be incompressible.
Sorry bro people do this22.2 pls
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:

Explanation:
Given that
Vrms= 60 V
Vf= 0.7 V
We know that peak value of AC voltage given as

Now by putting the values

The output voltage of the DC current given as



Therefore output voltage of the DC current is 84.15 V.
Answer:
D is the correct choice.
Explanation:
I'm assuming that this is probably a phase in the textbook or progarm you are studying, and this is just a matter of reading thoroughly.
Engineers usually benefit from catching a mistake, and would also benfit from keeping record of a misstep in order to remain clear of that mistake in the future.
Have a great day, and mark me brainliest if I am most helpful!
:)