Answer:
1200KJ
Explanation:
The heat dissipated in the rotor while coming down from its running speed to zero, is equal to three times its running kinetic energy.
P (rotor-loss) = 3 x K.E
P = 3 x 300 = 900 KJ
After coming to zero, the motor again goes back to running speed of 1175 rpm but in opposite direction. The KE in this case would be;
KE = 300 KJ
Since it is in opposite direction, it will also add up to rotor loss
P ( rotor loss ) = 900 + 300 = 1200 KJ
Answer:
a)R= sqrt( wt³/12wt)
b)R=sqrt(tw³/12wt)
c)R= sqrt ( wt³/12xcos45xwt)
Explanation:
Thickness = t
Width = w
Length od diagonal =sqrt (t² +w²)
Area of raectangle = A= tW
Radius of gyration= r= sqrt( I/A)
a)
Moment of inertia in the direction of thickness I = w t³/12
R= sqrt( wt³/12wt)
b)
Moment of inertia in the direction of width I = t w³/12
R=sqrt(tw³/12wt)
c)
Moment of inertia in the direction of diagonal I= (w t³/12)cos 45=( wt³/12)x 1/sqrt (2)
R= sqrt ( wt³/12xcos45xwt)
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: True
Explanation: Ceramics have the property that when the band gap present between the atoms are larger than the light energy then the tend to become opaque because the light scattering is caused . They also show the property of being translucent when there are chances of the light to get a path through the surface of ceramic so they get the light at some parts e.g.porcelain .Therefore the statement given is true that ceramics can be optically opaque or semi-transparent(translucent).