Answer:
A toy car and with the rest of the money buy big house.
Answer and Explanation:
Dead state can be defined as the state in which both the are ambient properties and the system properties are coincident to each other.
Since the surroundings are similar and these surroundings are fixed also, there will be no kinetic energy and also the gravitational potential energy for both the systems is also equal.
Practically, in thermodynamic studies, the Gravitational potential energy of the system is negligible. This state holds significance because it leads to the termination of all the processes that are spontaneous in nature.
Answer:
it goes low to high off and on
Explanation:
because i wrote it
Answer:
From the question, we have two variables
1. userNum1
2. userNum2
And we are to print "userNum1 is negative" if userNum1 is less than 0.
Then Assign userNum2 with 2 if userNum2 is greater than 10.
Otherwise, print "userNum2 is less or equal 10.".
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include<iostream>
using namespace std;
int main ()
{
// Declare variables
int userNum1, userNum2;
// Accept input for these variables
cin>>userNum1, userNum2;
// Condition 1
if(userNum1 < 0)
{
cout<<"userNum1 is negative"<<'\n';
}
// Condition 2
if(userNum2 > 10)
{
userNum2 = 2;
}
// If condition is less than 10
else
{
cout<<"userNum2 is less or equal to 10"<<\n;
}
return 0;
}
// End of Program.