Answer:
<h3>a. controls all the cell activities.</h3>
Thank you ☺️
Answer:
Argon
Explanation:
Argon is a noble gas and has a full outer shell of electrons so it doesn't need to form bonds with other atoms as it is stable
The choices are:
<span>A. The first gas sample has a temperature of 273 K, and the second gas sample has a temperature of 0</span>°<span>C.
B. The first gas sample has a temperature of 273 K, and the second gas sample has a temperature of 298 K.
C. The first gas sample has a temperature of 273 K, and the second gas sample has a temperature of 273</span>°<span> C.
D. The first gas sample has a temperature of 273 K, and the second gas sample has a temperature of 100</span>°<span> C.
The correct answer is A because the two gases will have the same temperature and 273 K = 0</span>°C
Answer:
// 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 quarter, dimes, nickel, cent;
// Enter values for each
cout<<"Quarter: ";
cin>>quarter;
cout<<"Dimes: ";
cin>>dimes;
cout<<"Nickels: ";
cin>>nickel;
/*
In the United States, these coins have the following values
Quarter = 25 cents
Done = 10 cents
Nickel = 5 cent
Total cent is calculated below
*/
cent = 25 * quarter + 10 * dimes + 5 * nickel;
// Print Total
cout<<"The coins are worth "<<cent<<" cents";
return 0;
}
I think it’s 4 bonding correct me if I’m wrong