Answer:
Hearing protection would be your answer!
Explanation:
This includes earplugs,muffs etc.
Hope it helps!
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:
Spindle
Explanation:
Please mark me brainliest
Answer: B
Explanation:
One good way to improve your gas mileage is to accelerate smoothly and directly to a safe speed.
Hope this helps!
Answer: Some activities that I do in my daily life that require energy are:
1. Doing ballet
2. Studying
3. Walking up and down stairs
4. Stretching
5. Running on the treadmill
Hope this helps! :)
Explanation: