Answer:
The answers of the following blanks are:
1). utility
2). malware
3). Trojan horses
4). platform
5). device drivers
Explanation:
Utility Program, these programs are that program which appears when you start your system at your desktop window. Such as, calculator, calendar, CPU meter, and many other little programs. It also known as gadgets and widgets.
Malware is also known as malicious software, it is a program or a file that corrupt your software and it is a virus that harms your system.
Trojan Horses is a program or a file which access your password and personal details. It not just like a virus because it does not harm your computer but it access your things.
Operating system is also known as a Platform that manages your software and the hardware.
Device Drivers are the drivers that are needed in your system to work the hardware devices and without it, some of the important software and the hardware do not work.
Well if you forgot your password you can click "Forgot Password" at the bottom and it should ask you some questions and send you an email with the password
Answer:
beacon
Explanation:
At regular intervals the AP in an infrastructure network or wireless device in an adhoc network sends a beacon frame both to announce its presence and to provide the necessary information for other devices to join the network.
The answer is a. utility bills
Answer:
printStars(35);
Explanation:
public class Question {
public static void main(String args[]) {
printStars(35);
}
public static void printStars(int numberOfStars){
for(int i = 1; i <= numberOfStars; i++){
System.out.print("*");
}
System.out.print("\n");
}
}