Using lens equation;
1/o + 1/i = 1/f; where o = Object distance, i = image distance (normally negative), f = focal length (normally negative)
Substituting;
1/o + 1/-30 = 1/-43 => 1/o = -1/43 + 1/30 = 0.01 => o = 1/0.01 = 99.23 cm
Therefore, the object should be place 99.23 cm from the lens.
The answer for this question should be "false".
Answer:

Explanation:
Let assume that 100 kg of the compound is tested. The quantity of kilomoles for each element are, respectively:




Ratio of kilomoles oxygen to kilomole nitrogen is:


It means that exists 1.499 kilomole oxygen for each kilomole nitrogen.
The empirical formula for the compound is:

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:
The correct answer is 24.
Explanation: