Answer:A transit of Venus across the Sun takes place when the planet Venus passes directly between the Sun and a superior planet, becoming visible against (and hence obscuring a small portion of) the solar disk. ... Transits of Venus are among the rarest of predictable astronomical phenomena.
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;
}

B. Add 233 g of KCl to a 3.5 L container; then add enough water to dissolve the KCl and fill the container to the 3.5 L mark.
Answer:
Since there are 3 Hydrogen atoms present, the formula mass of H is 1.0 × 3 = 3.0 g/mol. Therefore, by adding them up, the formula mass of ammonia is: [14.0 g/mol + 3.0 g/mol] = 17.0 g/mol.