Its 0.001
0.01 x100 = 1mm
0.001x100=0.1mm
0.1=10mm
1m
Answer:
7.9 kilometers per second
Explanation:
Answer: parabola
Explanation:
•Parabolic Trajectory:
In conclusion, projectiles travel with a parabolic trajectory due to the fact that the downward force of gravity accelerates them downward from their otherwise straight-line, gravity-free trajectory.
Answer:
The resultant moment is 477.84 N·m
Explanation:
We note that the resultant moment is given by the moment about a given point
The length of the sides of the formed triangles are;
l = sin(40°) × 4/sin(110°) ≈ 2.736
Taking the moment about the lower left hand corner of the figure, with the convention that clockwise moments are positive, we have;
The resultant moment, ∑m, is given as follow;
∑M = 250 N × 4 m + 400 N × cos(40°) × 4 m - 400 N × cos(40°) × 2 m + 400 N × sin(40°) × 2 m × tan(40°) - 600 N × cos(40°) × 2 m - 600 N× sin(40°) × 2 m × tan(40°) = 477.837084 N·m
Therefore, the resultant moment, ∑m ≈ 477.84 N·m clockwise.
Write a statement that assigns freeBooks the appropriate value based on the values of the boolean variable isPremiumCustomer and the int variable nbooksPurchased is described below
Explanation:
Online Book Merchants offers premium customers 1 free book with every purchase of 5 or more books and offers 2 free books with every purchase of 8 or more books. It offers regular customers 1 free book with every purchase of 7 or more books, and offers 2 free books with every purchase of 12 or more books.
A statement that assigns freeBooks the appropriate value based on the values of the boolean variable isPremiumCustomer and the int variable nbooksPurchased. Here's what we have:
if(isPremiumCustomer = true){
if(nbooksPurchased >= 5));
freeBooks = 1;
}else if(nbooksPurchased >= 8){
freeBooks = 2;
}else {
if(nbooksPurchased >= 7);
freeBooks = 1;
}else if(nbooksPurchased >= 12){
freeBooks = 2;
}
We are getting an error of "illegal start of expression".
Two of the hints are "You are using an incorrect number somewhere in your solution" and "We think you might want to consider using: ==".
I do not want the answer, I just want pointed in the right direction.