Explanation:
you can find that question in social media
Answer:
Upgrade refers to upgrading to a new version from old version
Clean Install: Removing old version completely and install from scratch
Explanation:
Let you want to upgrade windows server 2008 to windows server 2016.There are 2 options
1. you can directly migrate windows server 2008 to 2016 by keeping everything as it is , so all the data and applications on the system remains as it is and only OS will upgrade.
2. uninstall everything and clean install windows server 2016.Here all previous applications and data are erased
In the above case if all applications on the system are compatible with windows server 2016 from 2008 we can go for upgrade directly otherwise it is better to go with clean install as we need different version of application which is compatible with windows server 2016
Answer:
import java.util.Scanner;
public class num1 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
//Prompt and receive user input
System.out.println("Enter number of Steps");
int numSteps = in.nextInt();
double numMiles = numSteps/2000;
//Print the formated number of miles
System.out.printf("The equivalent miles is %.2f ",numMiles);
}
}
Explanation:
- This is solved using Java programming language
- Scanner class is imported and used to receive user input (number of steps walked)
- To convert number of steps to number of miles, we divide by 2000, Since the question says the pedometer treats walking 2,000 steps as walking 1 mile.
- Output the number of miles to 2 decimal places using java's printf() method