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:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}
Answer:
Diesel cycle:
All diesel engine works on diesel cycle.It have four processes .These four processes are as follows
1-2.Reversible adiabatic compression
2-3.Heat addition at constant pressure
3-4.Reversible adiabatic expansion
4-1.Heat addition at constant volume
When air inters in the piston cylinder after that it compresses and gets heated due to compression after that heat addition take place at constant pressure after that power is produces when piston moves to bottom dead center.
From the diagram of P-v And T-s we can understand so easily.