Answer Explanation:
the efficiency of the the engine is given by=1-
where T₂= lower temperature
T₁= Higher temperature
we have given efficiency =70%
lower temperature T₂=27°C=273+27=300K
higher temperature T₁=627°C=273+627=900K
efficiency=1-
=1-
=1-0.3333
=0.6666
=66%
66% is less than 70% so so inventor claim is wrong
Answer: you can watch a video on how to solve this question on you tube
Answer:
hazardous chemicals leaving the workplace is labeled, tagged or marked with the following information: product identifier; signal word; hazard statement
Explanation:
this is so you know what chemicals are in it
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}