Answer:
the compound light microscope
Explanation:
The stereomicroscope is to study section to study the entire objects in three dimensions at low magnification. A Compound light microscope is used for small or thinly sliced objects under higher magnification than stereomicroscope.
Answer:
extrusive,
Explanation:
lava exlodes outwards, making it extrusive and not intrusive.
Answer:
Force per unit plate area is 0.1344 
Solution:
As per the question:
The spacing between each wall and the plate, d = 10 mm = 0.01 m
Absolute viscosity of the liquid, 
Speed, v = 35 mm/s = 0.035 m/s
Now,
Suppose the drag force that exist between each wall and plate is F and F' respectively:
Net Drag Force = F' + F''

where
= shear stress
A = Cross - sectional Area
Therefore,
Net Drag Force, F = 

Also
F = 
where
= dynamic coefficient of viscosity
Pressure, P = 
Therefore,


Answer:
From the question, we have two variables
1. userNum1
2. userNum2
And we are to print "userNum1 is negative" if userNum1 is less than 0.
Then Assign userNum2 with 2 if userNum2 is greater than 10.
Otherwise, print "userNum2 is less or equal 10.".
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include<iostream>
using namespace std;
int main ()
{
// Declare variables
int userNum1, userNum2;
// Accept input for these variables
cin>>userNum1, userNum2;
// Condition 1
if(userNum1 < 0)
{
cout<<"userNum1 is negative"<<'\n';
}
// Condition 2
if(userNum2 > 10)
{
userNum2 = 2;
}
// If condition is less than 10
else
{
cout<<"userNum2 is less or equal to 10"<<\n;
}
return 0;
}
// End of Program.