Answer:
B.lenses bounce light from their surface, mirrors do not
Answer:
The final velocity of cart 1 is 3m/s
Explanation:
From principle of conservation of linear momentum, which states that sum of the momentum before collision is equal to the sum of the momentum after collision.
Momentum, P is given as mass x velocity.
ΔP = Δmv = m₁u₁ +m₂u₂ = m₁v₁ + m₂v₂
Assumptions:
- If the two carts are moving on frictionless track, then limiting frictional forces due to their weights are negligible.
- After the elastic collision, the two carts will move separately with different velocity
u₁ + u₂ = v₁ + v₂;
where;
u₁ and u₂ are the initial velocity for cart 1 and cart 2 respectively
v₁ and v₂ are the final velocity for cart 1 and cart 2 respectively
1 m/s + 5 m/s = v₁ + 3m/s
6 m/s = v₁ + 3m/s
v₁ = 6 m/s - 3m/s = 3m/s
Therefore, the final velocity of cart 1 is 3m/s
Answer:
C. Dark Matter
Explanation:
Dark matter is estimated to make up 90 percent of the mass of the galaxy.
The dark matter (as astronomers have come to call the invisible material) extends to a distance of at least 200,000 light-years from the center of the Galaxy.
Answer:
The tennis ball.
Explanation:
Because the baseball is heavier, it requires more force to move it, whereas the tennis ball requires less force, so it will move more. Hope that makes sense!
Answer:
True, check attachment for code
Explanation:
To convert java strings of text to upper or lower case, we can use and inbuilt methods To Uppercase and To lower case.
The first two lines of code will set up a String variable to hold the text "text to change", and then we print it out.
The third line sets of a second String variable called result.
The fourth line is where the conversion is done.
We can compare the string
We can compare one string to another. (When comparing, Java will use the hexadecimal values rather than the letters themselves.) For example, if we wanted to compare the word "Fat" with the word "App" to see which should come first, you can use an inbuilt string method called compareTo.
Check attachment for the code