Answer:
D. PORT
Explanation:
A Port is the interface used to connect external devices to computer.
Ports are of various types based on the type of communication interface:
For example:
- Serial port : information transfer takes place one bit at a time.
- Parallel port : transfer of multiple bits at a time.
- Ethernet : used for connecting network cable
- USB : Universal Serial Bus
Computer peripherals like mouse,keyboard, modem, printer etc connect to the computer via the port which is in accordance with their specified communication interface.
Answer:
Could you post the full question please
Explanation:
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.
What is the question here?
If i'm not mistaken it's "boot.ini"