Answer:
a. hardware - 3. motherboard
b. software - 2. Microsoft Word
c. input device - 4. mouse
d. operating system - 1. windows
Answer:
to allow administrators to assign rights and permissions to multiple users
Explanation:
Answer:
Windows 8.1 Core
Explanation:
In this particular example, we're going to use Windows 8.1 Core, is the most basic of the window's family, in this case, only we need an OS to connect the hardware with the cloud computing for security and is not necessary another license, in addition, Windows 8.1 core is easiest to use, is so friendly with the user.
False. Integrated circuits have transistors within them, not the other way around
Answer:
The solution code is written in Java.
- public class Main {
- public static void main(String[] args) {
- int n = 5;
- int j;
- do{
- System.out.print("*");
- n--;
- }while(n > 0);
- }
- }
Explanation:
Firstly, declare the variable n and assign it with value 5 (Line 4). Next declare another variable j.
Next, we create a do while loop to print the n-number of asterisks in one line using print method. In each iteration one "*" will be printed and proceed to the next iteration to print another "*" till the end of the loop. This is important to decrement the n by one before the end of a loop (Line 9) to ensure the loop will only run for n times.