Answer:
Business Plan: for a Car Wash company
Tools and ingredients required: Water tanker: $250s, Self-service water supply set up: $160s. two helpers one for washing, and one as cashier: $1000s per month Salary, water supply: through boring, one-time expense :$1000s. A place ( in the ready state apart from above-mentioned requirements) one rent: $800s monthly rent.
Total investment required: $4210s + $2000s( as security).= $6210s.
Work Details:
The car will be washed with water. And we have not mentioned the Mobil here, as that work will be outsourced. A petrol pump employee will always be at the car wash center to apply the Mobil to the vehicle after washing. And the only vehicle entertained is the car, however, the model of the car does not matters.
The income is daily deposited in the company bank account, and digital payment is also accepted.
Hope our car wash business succeeds.
Explanation:
Please check the answer section.
<span>Global configuration mode can be accessed by entering the enable command.</span><span>
The device prompt for this mode ends with the ">" symbol.</span>
Answer:
Types of energy sources include;
- Geothermal energy
- Solar energy
- Wind power
- Nuclear energy
- Hydropower
- Coal burning
- Natural gas
- Biomass energy
The correct answer to this open question is the following.
Although there are no options attached we can say the following.
Do earthquakes ever happen in Malaysia?
Yes, they do. And they are very frequent and high in intensity.
For instance, the Sabah earthquake in 2015.
On June 5, 2015, the region of Malaysia was hit by a strong earthquake, 6.0 of magnitude on the Ritcher scale. The telluric movement lasted 30 seconds and caused much destruction.
Experts and scientists confirm that this had been the strongest earthquake since the one presented in 1976.
Answer:
public class Triangle
{
public static void main( String[] args )
{
show( 5 );
}
public static void show( int n )
{
int i,j,k;
for (i = 0; i < n - 1; i++ )
{
for (j = 0; j < i; j++ )
{
System.out.print( " " );
}
for (k = n - i; k > 0; k-- )
{
System.out.print( "* " );
}
System.out.println();
}
for (i = 0; i < n; i++ )
{
for (j = n - i; j > 1; j-- )
{
System.out.print( " " );
}
for (k = 0; k < i + 1; k++ )
{
System.out.print( "* " );
}
System.out.println();
}