1-Input unit
2-output unit
3-storage
4-central processing unit
5-arithmetic and logic unit
Answer:
DOMAIN
Explanation:
A utility that provides names to each computer on a network is called a DOMAIN naming service.
Answer:
Digitalization
Explanation:
Instead of doing it manually they created one web site to interact with the customers through Internet and computer. so it is an example of digitalization where user avoids manual interaction
I think it means that people are good with files and organizing the files.
Answer:
The solution code is written in Java.
- public static void swapArrayEnds(int myArray[]){
- int lastIndex = myArray.length-1;
- int temp = myArray[0];
- myArray[0] = myArray[lastIndex];
- myArray[lastIndex ] = temp;
- }
Explanation:
First create the swapArrayEngs method that take one input array parameter (Line 1).
Since we need to swap the first and last element of the array, we need to get the first index and last index of the array. The first index is 0 and the last index can be calculated by subtracting the length of array from 1 (Line 2).
Next, we can create a temp variable to hold the value of the first element (Line 3). Then we use the lastIndex the get the value of last element and assign it to the first element of array (Line 4). Lastly, we assign the temp (holding the initial first element value) to the last element of array (Line 5).