Answer:
Downloading and/or Burning it on to your computer
Hope this helped! if so please mark it as brainliest
Explanation:
Answer:
computer is a device for storing and processing data and also to communicate with people
Answer:
You would identify the problem together with the person or persons involved.
Explanation:
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!
Answer:
public static String repeat(String text, int repeatCount) {
if(repeatCount < 0) {
throw new IllegalArgumentException("repeat count should be either 0 or a positive value");
}
if(repeatCount == 0) {
return "";
} else {
return text + repeat(text, repeatCount-1);
}
}
Explanation:
Here repeatCount is an int value.
at first we will check if repeatCount is non negative number and if it is code will throw exception.
If the value is 0 then we will return ""
If the value is >0 then recursive function is called again untill the repeatCount value is 0.