Answer:
A. Incremental Development
Explanation:
Great question, it is always good to ask away and get rid of any doubts that you may be having.
The answer to this question is Incremental Development, this is when the development of the system is implemented little by little as time goes on. On the other hand phase development is when a development cycle is rolled out in phases such as the brainstorming phase, Construction phase, marketing , and roll out phase. Since this development doesn't contribute to the system's functionality it is not the correct answer.
I hope this answered your question. If you have any more questions feel free to ask away at Brainly.
Explanation:
1). the os basically is what makes your puter run correctly.
2). u can set a time every day for computer updates.
Answer:
// Here is SammysRentalPrice.java file
// import package
import java.util.*;
// class definition
class SammysRentalPrice
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// object to read value from user
Scanner scr=new Scanner(System.in);
// ask to enter rented minutes
System.out.print("enter rented minutes: ");
// read minutes
int min=scr.nextInt();
// find hours
int hour=min/60;
//reamining minutes
min=min%60;
// total cost
int cost=hour*40+min*1;
// print cost
System.out.println("total cost is: "+cost);
}catch(Exception ex){
return;}
}
}
Explanation:
Read rented minutes from user and assign it to variable "min".Find the hours from minutes and then update the remaining minutes.After this multiply hours with 40 and remaining minutes with 1.Sum them and this will be the cost of rented a sports equipment.
Output:
enter rented minutes: 145
total cost is: 105
Answer: Power P at distance 0.7 km is: 0.234 µW
Explanation:
We know that
inverse cube-power law.
Thus Power, P = c / d³
Substituting we have
15 µW = c / (175 m)³
c = (15 µW) x (175 m)³
Then finally Power value at 0.7 km.
Will be
P = c / d³
P = ((15 µW) x (175 m)³) / (700 m)³
= (15 µW) x (175 / 700)³
= (15 µW) x (0.25)³
=(15 µW) x (0.015625)
P = 0.234 µW