Answer:
0.099C
Explanation:
First, we need to get the common potential voltage using the formula

Where V is the common voltage, C and V represent capacitance and charge respectively. Subscripts 1 and 2 to represent the the first and second respectively. Substituting the above with the following given values then

Therefore

Charge, Q is given by CV hence for the first capacitor charge will be 
Here, 
At any crime scene, the two greatest challenges to the physical evidence are contamination and loss of continuity.
<h3>What is the meaning of physical evidence?</h3>
In evidence law, physical evidence (also called real evidence or material evidence) is any material object that plays some role in the matter that gave rise to the litigation, introduced as evidence in a judicial proceeding (such as a trial) to prove a fact in issue based on the object's physical characteristics.
The two types of evidence at crime scenes:
Biological evidence (e.g., blood, body fluids, hair and other tissues)
Latent print evidence (e.g., fingerprints, palm prints, footprints)
The biggest impediment to an investigation is the removal or loss of a piece of evidence from the scene of a crime.
Hence, at any crime scene, the two greatest challenges to the physical evidence are contamination and loss of continuity.
Learn more about the physical evidence here:
brainly.com/question/13505766
#SPJ1
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.