Answer:
true
Explanation:
A well designed product will increase in sells and in stock.
Answer:
%Reduction in area = 73.41%
%Reduction in elongation = 42.20%
Explanation:
Given
Original diameter = 12.8 mm
Gauge length = 50.80mm
Diameter at the point of fracture = 6.60 mm (0.260 in.)
Fractured gauge length = 72.14 mm.
%Reduction in Area is given as:
((do/2)² - (d1/2)²)/(do/2)²
Calculating percent reduction in area
do = 12.8mm, d1 = 6.6mm
So,
%RA = ((12.8/2)² - 6.6/2)²)/(12.8/2)²
%RA = 0.734130859375
%RA = 73.41%
Calculating percent reduction in elongation
%Reduction in elongation is given as:
((do) - (d1))/(d1)
do = 72.14mm, d1 = 50.80mm
So,
%RA = ((72.24) - (50.80))/(50.80)
%RA = 0.422047244094488
%RA = 42.20%
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;
}