AACAdvanced Audio Coding Computing » Software -- and more..
Answer:
4
Explanation:got it right on edg.
Most computer devices are connected to the computer through port
Keyboard through usb port
Printer through usb port
Hand point device through usb port
Also computer equipped with LPT port for printers and COM port for additional devices like external modems e.t.c
Explanation:
1. Seeing people do technological innovations, so you have some motivation and inspiration to be fluent in computer
2. Try experimenting and trying stuff, like trying to learn how to code, how the internet work, etc.
3. work more with computers, for example, make a note with OneNote, making digital art with blender, adobe illustrator etc.
4. Try to learn how to be better at learning computer, like, if you do mistakes in your learning journey, try to avoid it next time
5. good luck ;)
Answer:
public static void printDottedLine()
{
System.out.println(".....");
}
Explanation:
The above written code is in JAVA and it is the method definition of the method mentioned in the question.Since the method returns nothing hence it's return type is void and it does not have any arguments hence there is nothing written in the parenthesis.In JAVA System.out.println is used for standard output and trminates them by newline.