Answer:
Explanation:
according to ohms law we know that
v=IR
given current =2 amps
given resistance =6Ω
so voltage is
v=2*6 =12 V
Answer:
Any incident ray traveling parallel to the principal axis of a converging lens will refract through the lens and travel through the focal point on the opposite side of the lens. ... These rays of light will refract when they enter the lens and refract when they leave the lens.
Hope this helps...
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.
Answer:
(b) B
Explanation:
The direction of force on a current carrying wire in a magnetic field can be found using the right hand rule, which states that-"stretch the thumb in the direction of the current, and point the fingers in the direction of magnetic field. The direction of palm will then give the direction of force on the wire
On wire B the forces due to A and C act in the same direction and so strengthen each other. they get added up because the forces act in the same direction.
on wires A and C the forces (due to B and C and A and B
respectively) act in opposite directions and therefore tend to cancel out.