Answer:
The answer is "Option A".
Explanation:
Series:
Solving the above series:
So, the series is:
Answer:
i)ω=3600 rad/s
ii)V=7059.44 m/s
iii)F=1245.8 N
Explanation:
i)
We know that angular speed given as
We know that for one revolution
θ=2π
Given that time t= 2 hr
So
ω=θ/t
ω=2π/2 = π rad/hr
ω=3600 rad/s
ii)
Average speed V
Where M is the mass of earth.
R is the distance
G is the constant.
Now by putting the values
V=7059.44 m/s
iii)
We know that centripetal fore given as
Here given that m= 200 kg
R= 8000 km
so now by putting the values
F=1245.8 N
Answer:
// The method is defined with a void return type
// It takes a parameter of integer called numCycles
// It is declared static so that it can be called from a static method
public static void printShampooInstructions(int numCycles){
// if numCycles is less than 1, it display "Too few"
if (numCycles < 1){
System.out.println("Too few.");
}
// else if numCycles is less than 1, it display "Too many"
else if (numCycles > 4){
System.out.println("Too many.");
}
// else it uses for loop to print the number of times to display
// Lather and rinse
else {
for(int i = 1; i <= numCycles; i++){
System.out.println(i + ": Lather and rinse.");
}
System.out.println("Done");
}
}
Explanation:
The code snippet is written in Java. The method is declared static so that it can be called from another static method. It has a return type of void. It takes an integer as parameter.
It display "Too few" if the passed integer is less than 1. Or it display "Too much" if the passed integer is more than 4. Else it uses for loop to display "Lather and rinse" based on the passed integer.
Answer:
c) site preparation
Explanation:
A construction process can be defined as a series of important physical events (processes) that must be accomplished during the execution of a construction project.
Generally, in the construction of any physical asset such as offices, hospitals, schools, stadiums etc, the first step of the construction process is site preparation. Site preparation refers to processes such as clearing, blasting, levelling, landfilling, surveying, cutting, excavating and demolition of all unwanted objects on a piece of land, so as to make it ready for use.
This ultimately implies that, site preparation should be the first task to be accomplished in the construction process.
Hence, the construction process typically begins with site preparation before other activities such as the laying of foundation can be done.
Additionally, construction costs can be defined as the overall costs associated with the development of a built asset, project or property. The construction costs is classified into two (2) main categories and these are; capital and operational costs.