Answer:
True
Explanation:
Everything typed into a computer is saved as data and logged.
Answer:
the two methods that can spread viruses are touching and breathing
Explanation:
When there are viruses being spread breathing near another person can caused it to spread because viruses can travel through air. if the viruse is in your systems coming out through the mouth is one way it can travel to another person. That's why wearing a mask is helpful
The other was is touching. Viruses can travel through physical contact. Is hands arent being wash regularly after eating brushing teeth etc it leaves germs and bacteria which is some of the ways and sometimes the main reason as to how viruses are made or created. That's why washing hands are important
Hope's this helps
Answer:
Random Access Memory, it's used to store working data and machine codes
Explanation:
Hope it helped !
Adriel
Answer:
public class Main
{
public static void main(String[] args) {
System.out.println(starString(4));
}
public static String starString(int n){
double p = Math.pow(2,n);
String s = "";
for(int i=0; i<p; i++)
s += "*";
return s;
}
}
Explanation:
Create a method named starString that takes an integer parameter, n
Get the 2 to the nth power using pow method and set it to the p
Create an empty string that will hold the asterisks
Create a for loop that will iterate p times. Inside the loop, concatenate an asterisk to the s
Return the s
Inside the main method, call the method with an integer parameter
The software package that I would use is packaged software producer. They are defined as potential sources of application software.
<h3>Software</h3>
A software can be defined as a series of sequential instructions that indicate a computer what to do.
Packaged software producers are defined as potential sources of application software.
The industries develop these softwares to run them on different types of platforms.
Learn more about software here:
brainly.com/question/1022352