The maintenance is in charge of controlling that all the machines of a company are constantly running in order to avoid damages that cause loss of money when the machines fail.
The maintenance based on vibration monitoring allows to predict failures in some rotating machines such as:
1. worn bearings
2.alignment
3.balance
4. affected gears
5. bent shafts
6. rocks
7.gags
8. eccentricity
9. failures of electrical origin
Answer:
D
Explanation:
Masonry uses stone work, making a stone wall requires perfect masonry.
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:
1. How energy is harnessed?
Another way to tap solar energy is by collecting the sun's heat. Solar thermal power plants use heat from the sun to create steam, which can then be used to make electricity. On a smaller scale, solar panels that harness thermal energy can be used for heating water in homes, other buildings, and swimming pools.
2. How is solar energy converted into useful energy?
Solar panels convert the sun's light into usable solar energy using N-type and P-type semiconductor material. When sunlight is absorbed by these materials, the solar energy knocks electrons loose from their atoms, allowing the electrons to flow through the material to produce electricity.
Explanation:
hope it helps, please mark as brainliest
Answer:
View Image
Explanation:
Initialize your variable as a float or double since you're going to be using fractions in your answer.
User scanf() to get user input.
Print out the sum, product, quotient, and difference between the two numbers.