Answer:
a) V = 0.354
b) G = 25.34 GPA
Explanation:
Solution:
We first determine Modulus of Elasticity and Modulus of rigidity
Elongation of rod ΔL = 1.4 mm
Normal stress, δ = P/A
Where P = Force acting on the cross-section
A = Area of the cross-section
Using Area, A = π/4 · d²
= π/4 · (0.0020)² = 3.14 × 10⁻⁴m²
δ = 50/3.14 × 10⁻⁴ = 159.155 MPA
E(long) = Δl/l = 1.4/600 = 2.33 × 10⁻³mm/mm
Modulus of Elasticity Е = δ/ε
= 159.155 × 10⁶/2.33 × 10⁻³ = 68.306 GPA
Also final diameter d(f) = 19.9837 mm
Initial diameter d(i) = 20 mm
Poisson said that V = Е(elasticity)/Е(long)
= - <u>( 19.9837 - 20 /20)</u>
2.33 × 10⁻³
= 0.354,
∴ v = 0.354
Also G = Е/2. (1+V)
= 68.306 × 10⁹/ 2.(1+ 0.354)
= 25.34 GPA
⇒ G = 25.34 GPA
Answer:
(b) False
Explanation:
The specific internal energy of the system does not depend on the path of the process, it is a state function means its depend on only on the initial and the final position it does not depend on the path which it follow in the process.Internal energy is associated with the random motion of the molecules.
So it is false statement as internal energy is not a path function
Answer:
Minimum electrical power required = 3.784 Watts
Minimum battery size needed = 3.03 Amp-hr
Explanation:
Temperature of the beverages, 
Outside temperature, 
rate of insulation, 
To get the minimum electrical power required, use the relation below:

V = 5 V
Power = IV

If the cooler is supposed to work for 4 hours, t = 4 hours

Minimum battery size needed = 3.03 Amp-hr
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: C.) John Herschel