Answer:
All of the above
Explanation:
firstly, a creep can be explained as the gradual deformation of a material over a time period. This occurs at a fixed load with the temperature the same or more than the recrystallization temperature.
Once the material gets loaded, the instantaneous creep would start off and it is close to electric strain. in the primary creep area, the rate of the strain falls as the material hardens. in the secondary area, a balance between the hardening and recrystallization occurs. The material would get to be fractured hen recrstallization happens. As temperature is raised the recrystallization gets to be more.
Answer:
Architectural plans.
Explanation:
An architectural plan is called the drawings made by architects, civil engineers or designers of spaces or interiors, in which these professionals capture their building projects, organizing the distribution of the spaces to be used, the elements to be located in them and, fundamentally, to give construction planning a projection into reality. Thus, the plans help professionals to have a better understanding of the expected end result of the projects they are carrying out.
Answer: (a) 9.00 Mega Newtons or 9.00 * 10^6 N
(b) 17.1 m
Explanation: The length of wall under the surface can be given by

The average pressure on the surface of the wall is the pressure at the centeroid of the equilateral triangular block which can be then be calculated by multiplying it with the Plate Area which will provide us with the Resultant force.
![F(resultant) = Pavg ( A) = (Patm + \rho g h c)*A \\= [100000 N/m^2 + (1000 kg/m^3 * 9.81 m/s^2 * 25m/2)]* (140*25m/sin60)\\= 8.997*10^8 N \\= 9.0*10^8 N](https://tex.z-dn.net/?f=F%28resultant%29%20%3D%20Pavg%20%28%20A%29%20%3D%20%28Patm%20%2B%20%20%5Crho%20g%20h%20c%29%2AA%20%5C%5C%3D%20%5B100000%20N%2Fm%5E2%20%2B%20%281000%20kg%2Fm%5E3%20%2A%209.81%20m%2Fs%5E2%20%2A%2025m%2F2%29%5D%2A%20%28140%2A25m%2Fsin60%29%5C%5C%3D%208.997%2A10%5E8%20N%20%5C%5C%3D%209.0%2A10%5E8%20N)
Noting from the Bernoulli equation that

From the second image attached the distance of the pressure center from the free surface of the water along the surface of the wall is given by:
Substituting the values gives us the the distance of the surface to be equal to = 17.1 m
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;
}
Cut that photo by
1. Left click your mouse on the photo
2. Click cut
Then enter the file where you want to transfer and press
1. ctrl+v