Answer:
A DNS Server
Explanation:
DNS (Domain Name Server) is a server or a computer that holds the records of IP addresses on the internet or any network with their associated names of hosts, the job of the DNS is to resolve the domain name to an ip address that corresponds to the requested name everytime there is a request on a particular domain name.
Answer:
the first one is A
the second question is B,C,F
Explanation:edg2020
Answer:
public class Main
{
public static void printString(String strText, int intNumber) {
for(int i=0; i<intNumber; i++){
System.out.println(strText);
}
}
public static void main(String[] args) {
printString("Brainly", 3);
}
}
Explanation:
- Define a function called <em>printString</em> that takes two parameters - a String and an int. Since the function will print out the given String, it's type will be <u>void</u>.
- Use <em>for loop</em> to iterate according to the given number and print the given string
- In the main, call the <em>printString </em>function with some parameters.