Answer:
Bottom-up Estimation
Explanation:
Bottom-up estimation is a type of project cost estimation that considers the cost of individual project activities and finally sums them up or finds the aggregates. The summation gives an idea of what the entire project will cost.
This is an effective way of estimating the cost of a project as it evaluates the costs on a wholistic basis. It also considers the tiniest details during the estimation process. The process moves from the simpler details to the more complicated details.
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}
Given:

frequency, f = 60.0 Hz
frequency, f' = 45.0 Hz

Solution:
To calculate max current in inductor,
:
At f = 60.0 Hz


L = 0.1326 H
Now, reactance
at f' = 45.0 Hz:


Now,
is given by:
Therefore, max current in the inductor,
= 2.13 A
Answer:
Load carried by shaft=9.92 ft-lb
Explanation:
Given: Power P=4.4 HP
P=3281.08 W
<u><em>Power: </em></u>Rate of change of work with respect to time is called power.
We know that P=
rad/sec
So that P=
So 3281.08=
T=13.45 N-m (1 N-m=0.737 ft-lb)
So T=9.92 ft-lb.
Load carried by shaft=9.92 ft-lb