Answer:d
Explanation:
(d) chain drive belt drive gear drive
Answer:
A supercapacitor, also called an ultracapacitor, is a high-capacity capacitor with a capacitance value much higher than other capacitors, but with lower voltage limits, that bridges the gap between electrolytic capacitors and rechargeable batteries.
Explanation:
Answer:

Explanation:
The adiabatic throttling process is modelled after the First Law of Thermodynamics:


Properties of water at inlet and outlet are obtained from steam tables:
State 1 - Inlet (Liquid-Vapor Mixture)





State 2 - Outlet (Superheated Vapor)




The change of entropy of the steam is derived of the Second Law of Thermodynamics:


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;
}