Answer:
Developer tab
Explanation:
Inserting the Macro dialog box can be confusing for many people because the "Developer tab," where it can be found, is <em>hidden by default</em> in Microsoft Word. In order to add this to the ribbon, all you have to do is to go to the File tab, then click Options. After this, click Customize Ribbon. Under this, choose Main Tabs, then select the Developer check box. The Developer tab will then become visible. You may now insert a macro.
Answer:
r = 1
Explanation:
Average processing time ( p ) = 3 minutes
Average inter-arrival time ( a ) = 3 minutes
number of servers ( m ) = 3
<u>Determine the value of r </u>
r ( offered load ) = p/a
= 3 / 3 = 1
∴ value of r ( offered load ) = 1
After installing your anti-virus, you must do the following to make sure that your computer will be virus free moving forward:
1. Scan every drive of your computer.
2. Scan every program, photo, video, etc before opening those.
3. Avoid visiting restricted sites.
4. Update your antivirus application. This way, the application gets new virus database.
5. Schedule antivirus scanning.
6. If your antivirus application do not have scheduled scanning, plan it.
7. Install antivirus widgets or extension in your web browser.
8. For maximum protection, you can install another antivirus application.
9. Uninstall risky applications.
10. Scan flashdrives before opening or exploing those. Avoid borrowing flashdrives.
11. Avoid inserting your flashdrives to other devices.
12. Defrag your system. Some virus can't be detected because your system's drive may be badly fragmented.
Answer:
Answered below
Explanation:
//Program is written in Java.
public void first three elements(int[] nums){
int I;
//Check if array has up to three elements
if(nums.length > 3){
for(I = 0; I < nums.length; I++){
while (I < 3){
System.out.println(nums [I]);
}
}
else{
System.out.print("Array does not contain up to three elements");
}
}
}