Answer:
1. Location of enemy ground troops - EARTH OBSERVING.
Using earth observing satellite imagery, the military can observe vast expanses of land and in so doing, find the location of enemy ground troops.
2. Routine reconnaissance of an unfamiliar climate - WEATHER
In other to find out more about the climate of an area, a weather satellite can be used to observe the areas and its changing weather patterns.
3. Analyze waterways in an unfamiliar location - NAVIGATION
Using navigation satellites, navigation conduits such as roads and waterways can be observed.
4. Provide warning of an attack - COMMUNICATION.
Communications satellites enable people to communicate over great distances and so can be used by the military to warn of an impending attack.
Answer:
Water enters a centrifugal pump axially at atmospheric pressure at a rate of 0.12 m3/s and at a velocity of 7 m/s, and leaves in the normal direction along the pump casing, as shown in Fig. PI3-39. Determine the force acting on the shaft (which is also the force acting on the bearing of the shaft) in the axial direction.
Step-by-step solution:
Step 1 of 5
Given data:-
The velocity of water is .
The water flow rate is.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:
Gross building area
Explanation:
The Gross building area refers to the entire area of a building covering all the floors. The measurement is expressed in square feet. The Gross building area also includes basements, penthouses, and mezzanines. It is calculated by estimating the exterior dimension of the building. Storage rooms, laundries, staircases are also a part of the gross building area.