D. Magnetism this is shown by the planet's magnetic pull on moons and space debris.
Answer:
They contain iron.
Explanation:
Iron is made of metal and magnets attract to metal Iron.
All the radiation from stars is the result of nuclear fusion in their cores.
Answer:
Decreases the transparency of the atmosphere to infrared light.
Explanation:
When a large amount of green-house gases are present in the atmosphere, the layer of these gases become opaque to infrared radiation and radiation from the sun get trapped into these gases molecules. These excited molecules radiate this energy into our own atmosphere and that why the temperature of Earth is rising due to the Green-House effect.
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.