Less, if it’s too big: hard to control and maneuverability for shooting wouldn’t be that good. a smaller wheelchair allows for faster movement and control, along with easier shooting and upper body movement
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:
thickness1=1.4m
thickness2=2.2m
convection coefficient=0.33W/m^2K
Explanation:
you must use this equation to calculate the thickness:
L=K(T2-T1)/Q
L=thickness
T=temperature
Q=heat
L1=0.04*(0--350)/10=1.4m
L2=0.1(220-0)/10=2.2m
Then use this equation to calculate the convective coefficient
H=Q/(T2-T1)
H=10/(250-220)=0.33W/m^2K