Answer:
They are use to hold garment or fabric pieces together before pernament stitches are made
Answer:
B) 5.05
Explanation:
The wall thickness of a pipe is the difference between the diameter of outer wall and the diameter of inner wall divided by 2. It is given by:
Thickness of pipe = (Outer wall diameter - Inner wall diameter) / 2
Given that:
Inner diameter = ID = 25 ± 0.05, Outer diameter = OD = 35 ± 0.05
Maximum outer diameter = 35 + 0.05 = 35.05
Minimum inner diameter = 25 - 0.05 = 24.95
Thickness of pipe = (maximum outer wall diameter - minimum inner wall diameter) / 2 = (35.05 - 24.95) / 2 = 5.05
or
Thickness = (35 - 25) / 2 + 0.05 = 10/2 + 0.05 = 5 + 0.05 = 5.05
Therefore the LMC wall thickness is 5.05
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;
}
What is the question? It looks like a statement...