Answer:
Detail is given below
Explanation:
Atomic radii trend along group:
As we move down the group atomic radii increased with increase of atomic number. The addition of electron in next level cause the atomic radii to increased. The hold of nucleus on valance shell become weaker because of shielding of electrons thus size of atom increased.
As the size of atom increases the ionization energy from top to bottom also decreases because it becomes easier to remove the electron because of less nuclear attraction and as more electrons are added the outer electrons becomes more shielded and away from nucleus.
In A we can see that there is one positive charge and force of attraction is 2.30×10⁻⁸ N and distance is 0.10 nm
In B we can see that negative charge is further away from nucleus because of greater distance thus force of attraction will be less. 0.58×10⁻⁸ N
In C this distance further increases and force also goes in decreasing 0.26×10⁻⁸ N.
Earthquakes release seismic waves which can move along a sea.
Answer:
By contracting, muscles pull on bones and allow the body to move. ... For example, the biceps and triceps muscles work together to allow you to bend and straighten your elbow. When you want to bend your elbow, your biceps muscle contracts (Figure below), and, at the same time, the triceps muscle relaxes.
Explanation:
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;
}