Answer:
All of the above
Explanation:
An interrupt priority scheme is a system which decides the priority at which various work is done and it perform all of the above mention task so therefore all of the above is the right answer.
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.");
}
}
Answer:
Hello, There!
<h2>Your Question↓</h2>
What is the function of ROM?
<h2>Answer↓</h2>
Allows parts of the computer to communicate is the Correct Answer.
Explanation:
<h2>Now you May Ask What does it do or How it works↓</h2>
- ⇒ROM provides the necessary instructions for communication between various hardware components.
- ⇒ it is essential for the storage and operation of the BIOS, but it can also be used for basic data management, to hold software for basic processes of utilities.
Tip: Wanna know how to earn points back for asking your Question?
If you do it's easy just when two people answer your question whichever answer you think is the best click the crown on the side to get 25% of your points back! :D
Therefore, I hope this helps!
<span>select the New Slide option from the Insert menu</span>