The average atomic mass of element X is 14.007 u.
The average atomic mass of X is the <em>weighted average</em> of the atomic masses of its isotopes.
We multiply the atomic mass of each isotope by a number representing its <em>relative importance</em> (i.e., its % abundance).
Thus,
0.996 36 × 14.003 u =13.952 03 u
0.003 64 × 15.000 u = <u>0.054 60 u</u>
__________TOTAL = 14.007 u
Answer:
False
Explanation:
Cell division is a primary procedure by all cells. This process in the life cycle of cells ensures that new cells (daughter cells) are produced. The two major process are; meiosis and mitosis.
Normal cells would divide if the nutrients required are not present, since water is the main nutrient required. But in some cases, the division process may lead to an effect on one or both daughter cells. This effect is called mutation, thereby mutated cells may be produced.
There are two types of fermentation aerobic and anaerobic. Aerobic are those that need oxygen to ferment while anaerobic are those who do not need oxygen. Products of fermentation are usually water, ethanol, lactic acid and carbon dioxide. Other products are acetone and butyric acid.
Answer:
please mark as brainliest!!
Explanation:
// C++ program to print initials of a name
#include <bits/stdc++.h>
using namespace std;
void printInitials(const string& name)
{
if (name.length() == 0)
return;
// Since touuper() returns int, we do typecasting
cout << (char)toupper(name[0]);
// Traverse rest of the string and print the
// characters after spaces.
for (int i = 1; i < name.length() - 1; i++)
if (name[i] == ' ')
cout << " " << (char)toupper(name[i + 1]);
}
// Driver code
int main()
{
string name = "prabhat kumar singh";
printInitials(name);
return 0;
}
Answer:
Direct evidence from rock samples and indirect evidence from seismic waves may account for why scientists have two ways of thinking about earth's layers
Explanation:
Scientists who study about the earth's structure and components called geologists have two main types of evidence to learn about Earth's interior namely
1. direct evidence from rock samples
2. indirect evidence from seismic waves
Direct evidence From Rock Samples
Scientists examine rocks from inside the Earth and these rocks give them clues about Earth’s structure. Some scientists have drilled holes as much as 12 kilometers into Earth and bring up samples of rock. From these samples, they can make inferences about conditions deep inside Earth, where these rocks formed. In addition, forces inside Earth sometimes blast rock to the surface from depths of more than 100 kilometers. These rocks from deep within the Earth provide more information about the interior.
Indirect evidence From Seismic Waves
Since scientist cannot look inside Earth, they have devised an indirect methods of observation by using seismic waves. When earthquakes occur, they produce seismic waves. Scientists record the seismic waves and study how they travel through Earth. The speed of seismic waves and the paths they take reveal the structure of the planet. Using data from seismic waves, scientists have learned that Earth’s interior is made up of several layers with each layer surrounding the layers beneath it.