Answer:
Following is the order of steps needed to move a slide to different location:
First: Select the slide
Second: Hold the slide button down
Third: Drag the slide to the desired place.
N/A : Enter the slide position desired.
N/A: Select Move from the Tools menu.
N/A: Switch to the Notes view.
I hope it will help you!
a.tasks
b.stability
Sharing a workbook helps to complete (A, tasks) on time. Multiple people acssessing the workbook help to build (B, stability)
Answer:
September 30, 1985
Explanation: Source: https://www.google.com/search?q=When+Microsoft+excel+helps+is+first+opened&oq=When+Microsoft+excel+helps+is+first+opened&aqs=chrome..69i57j69i61.129j0j7&sourceid=chrome&ie=UTF-8
Answer:
Millisecond
Explanation:
We might know millisecond is very small and it is
not used now as computer speed
Answer:
Java code is given below
Explanation:
import java.util.Random;
class Die{
private int sides;
public Die(){
sides = 6;
}
public Die(int s){
sides = s;
}
public int Roll(){
Random r = new Random();
return r.nextInt(6)+1;
}
}
class DieRoll{
public static void main(String[] args) {
Die die = new Die();
int arr[] = new int[6];
for(int i=0; i<6; i++)
arr[i] = 0;
for(int i=0; i<100; i++){
int r = die.Roll();
arr[r-1]++;
}
for(int i=0; i<6; i++)
System.out.println((i+1)+" was rolled "+arr[i]+" times.");
}
}