Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}
EPA Regulations provides a certified course for the technicians involved in the Air-conditioning system.
Answer: Option (b)
<u>Explanation:</u>
The EPA regulation has implemented an act called the "Clean Air Act" under the "section of 609".
This act provides some basic requirements for EPA Regulation such as follows;
- Refrigerant: This unit must be approved by EPA Regulations before being implemented into the atmosphere.
- Servicing: This system provides a certified course for technicians in service and also approve them with proper refrigerant equipment.
- Reuse Refrigerants: The use of recycled refrigerants must be properly monitored before it comes in to serve.
Answer:
the three part are mass, spring, damping
Explanation:
vibrating system consist of three elementary system namely
1) Mass - it is a rigid body due to which system experience vibration and kinetic energy due to vibration is directly proportional to velocity of the body.
2) Spring - the part that has elasticity and help to hold mass
3) Damping - this part considered to have zero mass and zero elasticity.