Answer:
There are five work sheets in this excel file, they are equipment, company, company, person and computer. Excel worksheets are made up of cells, with the columns labelled alphabetically and the rows numbered.
Explanation:
The columns of a worksheet is called a field while row are called records. They are used to locate a cell in the worksheet. There are so many statistical, mathematical and engineering functions in excel. It is used to display the analysis of data.
Answer:
import java.util.Scanner;
class SquareDisplay {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.print("Enter an integer in the range of 1-15: ");
int num = scan.nextInt();
if ((num > 0) && (num <= 15)) {
String s = "X".repeat(num) + "\n";
System.out.print(s.repeat(num));
} else {
// your error handling
}
scan.close();
}
}
Explanation:
An alcohol server attending to a client in a restaurant may decide to discontinue services for many reason. When the decision to discontinue service has been made, the server should IDENTIFY A BACK UP CO WORKER who will support in the situation, in case things get out of hand. So, in this situation, the first thing to do is to SEEK FOR ASSISTANCE AND DISCONTINUE SERVICE.
Answer:
You install the access point at the centre of each floor
Explanation:
When installing Access Points, the location matters a lot. They are not called Access Point for calling sake but because a user can use it to access internet through them.
By installing access points at the centre of each floor, the users can roam freely from room to room without experiencing network interruptions.
Answer:
The C code is given below with appropriate comments
Explanation:
#include <stdio.h>
int main()
{
//array declaration
int arr[3][7], cumulativeSum = 0;
//initialize the array
for(int i=0; i<3; i++)
{
for(int j=0; j<7; j++)
{
arr[i][j] = i+j;
}
}
//calculate the cumulative sum
for(int i=0; i<3; i++)
{
for(int j=0; j<7; j++)
{
if((arr[i][j] % 5) != 0)
{
cumulativeSum += arr[i][j];
arr[i][j] = 0;
}
}
}
//display the final array
printf("The final array is: \n\n");
for(int i=0; i<3; i++)
{
for(int j=0; j<7; j++)
{
printf("%d ", arr[i][j]);
}
printf("\n");
}
//display the cumulative sum
printf("\nCumulative Sum = %d", cumulativeSum);
return 0;
}