Answer:
Dry lubricants or solid lubricants are materials that, despite being in the solid phase, are able to reduce friction between two surfaces sliding against each other without the need for a liquid oil medium.
Explanation:
Answer:
12 ml
Explanation:
The initial volume in the cylinder is 20 ml
adding the rock adds volume to the cylinder
the new volume is 32 ml .....the increase in volume is the volume of the rock : 32 - 20 = 12 ml volume of rock
Answer:
<h2>
6.36 cm</h2>
Explanation:
Using the formula to first get the image distance
1/f = 1/u+1/v
f = focal length of the lens
u = object distance
v = image distance
Given f = 16.0 cm, u = 24.8 cm
1/v = 1/16 - 1/24.8
1/v = 0.0625-0.04032
1/v = 0.02218
v = 1/0.02218
v = 45.09 cm
To get the image height, we will us the magnification formula.
Mag = v/u = Hi/H
Hi = image height = ?
H = object height = 3.50 cm
45.09/24.8 = Hi/3.50
Hi = (45.09*3.50)/24.8
Hi = 6.36 cm
The image height is 6.36 cm
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.
The length of the inclined plane is approximately 12 ft
The situation forms a right angle triangle.
<h3>Right triangle</h3>
Right triangle have one of its angle as 90 degrees.
Therefore,
The length of the inclined plane is the hypotenuse of the triangle. The length of the inclined plane can be found using trigonometric ratios.
height = 4 ft
angle(∅) = 19.45°
sin 19.45 = 4 / h
h = 4 / 0.33298412235
h = 12.0125847796
h = 12 ft
Therefore, the length of the inclined plane is approximately 12 ft
learn more on inclined plane:brainly.com/question/14163589?referrer=searchResults