Answer:
1. Venus
471°C
2. Mercury
(430°C) during the day, (-180°C) at night
3. Earth
16°C
4. Mars
-28°C
5. Jupiter
-108°C
6. Saturn
-138°C
7. Uranus
-195°C
8. Neptune
-201°C
Explanation:
.
Answer:
"Soaps are made from natural ingredients, such as plant oils (coconut, vegetable, palm, pine) or acids derived from animal fat. Detergents, on the other hand, are synthetic, man-made derivatives. While soap is limited in its applications, detergents can be formulated to include other ingredients for all sorts of cleaning purposes. Perhaps the most common and versatile of these ingredients are surfactants … surface active agents.
The main difference between soap and detergent is the ingredients. Soaps are made with biodegradable ingredients such as oils, lye and fats. ... Both clean clothes well, but detergents are more effective on stains and with brightening clothes. However, soap is kinder on the environment and skin. "
Hope this helps
Excerpt from textbook
I think it would be Kriptonite
Answer: c = 710 J/kg°C or 0.71 J/g°C
Explanation: Heat is expressed in the formula Q = mc∆T. Derive to find the specific heat c. So the formula will become c = Q / m∆T
c = Q / m∆T
= 42600 J / 2 kg ( 55°C - 25°C )
= 710 J /kg°C
Or can be expressed by converting kg to g.
c = 0.71 J /g°C
Answer:
class sum (
public static void sumofvalue (int m, int n, int p)
{
System.out.println(m);
System.out.println(n);
System.out.println(p);
int SumValue=m+n+p;
System.out.println("Average="+Sumvalue/3);
}
)
Public class XYZ
(
public static void main(String [] args)
{
sum ob=new sum();
int X=3;
int X=4;
int X=5;
ob.sumofvalue(X,Y,Z);
int X=7;
int X=8;
int X=10;
ob.sumofvalue(X,Y,Z);
}
)
Explanation:
The above program is made in Java, in which first we have printed value in a separate line. After that, the average value of those three values has been printed according to the question.
The processing of the program is given below in detail
* The first one class named 'sum' has been created which contains the function to print individual value and the average of those three values.
* In seconds main class named 'XYZ', the object of that the above class had been created which call the method of the above class to perform functions.
* In the main class values are assigned to variables X, Y, Z.