Answer:
True
Explanation:
Mass burn technology is a type of waste-to-energy technology commonly used in the mass-burn system, where unprocessed municipal solid waste is burned in a large incinerator with a boiler, to generate heat used in the production of electricity.
Answer:
Aqueous solution of ionic compounds conduct electricity while solid ionic compounds don't.
Explanation:
Ionic compound conduct electricity when liquid or in aqueous solution that is resolved in water because the ionic bonds of the compound become weak and the ions are free to move from place to place.
Ionic compounds don't conduct electricity while in solid state because the ionic bonds are to strong and ions cannot move around with lack of space for movement which makes the electric conductivity zero.
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:
a) 280MPa
b) -100MPa
c) -0.35
d) 380 MPa
Explanation:
GIVEN DATA:
mean stress 
stress amplitude 
a) 
--------------1

-----------2
solving 1 and 2 equation we get

b) 
c)
stress ratio

d)magnitude of stress range

= 280 -(-100) = 380 MPa
Answer:
The S. I unit of current is Amphere