Answer:
Engineering is a broad category that includes a variety of occupations and attempts to solve problems using math and systematic and scientific processes.
Explanation:
Engineering is the scientific discipline that deals with the implementation of science on materials, constructions, machines, systems and processes to realize a specific goal. It is an area of technical activity that includes a number of specialized areas and disciplines aimed at the practical application of scientific, economic, social and practical knowledge in order to turn natural resources for the benefit of humans.
The goals of engineering activities are the invention, development, creation, implementation, repair, maintenance and / or improvement of equipment, materials or processes. Engineering is closely intertwined with science, relying on the postulates of fundamental science and the results of applied research. In this sense, it is a branch of scientific and technical activity.
Answer:
b) Endothermic Chemical Reactions in a solid
Explanation:
Endothermic reactions consume energy, which will result in a cooler solid when the reaction finishes.
Answer:
russ ruwabsd ljabnlndszdnjndfsmsdf,bsd
Explanation:
Answer:

Explanation:
speed of motor (N)=1500 rpm
power=4 hp =
=2.9828 KW
service factor(k)= 2.75
now,


torque rating

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