The computer produces result as an Output, by the central processing unit.
<h3>What are the function of power supply in system unit?</h3>
The key functions of a power supply unit are:
- It helps to change AC to DC.
- It transmit DC voltage to the motherboard, adapters, and others
- It gives cooling and lead to more air flow via its case.
<h3>What is the result of the computer?</h3>
The result shown by a computer is known as an output, the result is known to be made by the central processing unit, that is said to be a computer's whole aim for existing.
Hence, The computer produces result as an Output, by the central processing unit.
Learn more about computer from
brainly.com/question/24540334
#SPJ1
Loop is a control structure that causes a statement or group of statements to repeat.Before entering a loop, the first input, or the accumulator where the total will be kept is retrieved to an initial value, usually zero.
A network that operates without relying on a server is the nternet network
Answer:
computer works on electricity
Explanation:
Answer:
public static String onlyDigits(String in){
String digitsOnly = in.replaceAll("[^0-9]", "");
return digitsOnly;
}
A Complete program is wrtten in the explanation section
Explanation:
public class TestClass {
public static void main(String[] args) {
String a = "-jaskdh2367sd.27askjdfh23";
System.out.println(onlyDigits(a));
}
public static String onlyDigits(String in){
String digitsOnly = in.replaceAll("[^0-9]", "");
return digitsOnly;
}
}
The output: 23672723
The main logic here is using the Java replaceAll method which returns a string after replacing all the sequence of characters that match its argument, regex with an empty string