Answer:
A good design for a portable device to mix paint minimizing the shaking forces and vibrations while still effectively mixing the paint. Is:
The best design is one with centripetal movement. Instead of vertical or horizontal movement. With a container and system of holding structures made of materials that could absorb the vibration effectively.
Explanation:
First of all centripetal movement would be friendlier to our objective as it would not shake the can or the machine itself with disruptive vibrations. Also, we would have to use materials with a good grade of force absorption to eradicate the transmission of the movement to the rest of the structure. Allowing the reduction of the shaking forces while maintaining it effective in the process of mixing.
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:
375 KPa
Explanation:
From the question given above, the following data were obtained:
Initial pressure (P₁) = 125 KPa
Initial temperature (T₁) = 300 K
Final temperature (T₂) = 900 K
Final pressure (P₂) =?
The new (i.e final) pressure of the gas can be obtained as follow:
P₁/T₁ = P₂/T₂
125 / 300 = P₂ / 900
Cross multiply
300 × P₂ = 125 × 900
300 × P₂ = 112500
Divide both side by 300
P₂ = 112500 / 300
P₂ = 375 KPa
Thus, the new pressure of the gas is 375 KPa
True will be your answer have a great day