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;
}
Complying with DSEAR involves:
Assessing risks. ...
Preventing or controlling risks. ...
Control measures. ...
Mitigation. ...
Preparing emergency plans and procedures. ...
Providing information, instruction and training for employees. ...
Places where explosive atmospheres may occur ('ATEX' requirements)
hse uk
OSHA inspections are generally unannounced. In fact, except in four exceptional circumstances when advance notice may be given.
It is a criminal offense for any person to give unauthorized advance notice of an OSHA inspection.
Answer:
Otto engine
Explanation:
As we know that
Power = Torque x speed
So we can say that when speed of engine then power of engine also will increases.
The speed of Otto engine is more as compare to Diesel engine so the power of Otto engine is more.But on the other hand torque of Diesel engine is more as compare to Otto engine but the speed is low so the product of speed and torque is more for Otto engine .It means that when requires large amount of power then Otto engine should be use.