Go to a blank cell and type
=AVERAGE(A1:A10) then <ENTER>
As if by magic, the average of those cells
will appear where you typed the formula.
To modulate your voice is to modify or gain more control of your voice. It basically means to change or adjust the pitch or tone.
Answer:
You may see:
The taskbar
The startmenu
Program icons within the taskbar
Shortcuts
Documents
Folders
Media files
Text files
The Recycle Bin
and so on...
Answer:
a. The user access agreement
Explanation:
The first document that should be created would be the user access agreement. This is a document that holds all of the policies and guidelines that the employees of a company need to follow when using the companies equipment, software, or network. This includes behavior on the internet such as browsing specific sites, illegal activity, or personal hobbies during work hours, as well as offline such as using company hardware for personal gain. This is a document that is absolutely required for every company in order to protect the company from the consequences of certain employee activity.
Answer:
// here is code in c++.
// include headers
#include <bits/stdc++.h>
using namespace std;
// function that calculate days, hours, minutes and seconds
void howLong(int sec)
{
// find days
int days=sec/86400;
// update the seconds
sec=sec%86400;
// find hours
int h=sec/3600;
// update the seconds
sec=sec%3600;
// find minutes
int min=sec/60;
// update the seconds
sec=sec%60;
// output
cout<<sec<<"seconds is "<<days<<" days,"<<h<<" hours,"<<min<<" minutes,and "<<sec<<"seconds."<<endl;
}
// driver function
int main()
{ // variable
int sec;
cout<<"Enter seconds:";
// read the seconds
cin>>sec;
// call the function
howLong(sec);
return 0;
}
Explanation:
Read the seconds from user.Then call the function howLong() with parameter seconds. In the function, it will first find the number of days by dividing the seconds with 86400 then update the remaining seconds.Next it will find the hours by dividing the remaining seconds with 3600 and update the remaining seconds.After that it will find the minutes by dividing the remaining seconds with 60 and update the remaining second.Then it will print the days, hours, minutes and seconds.
Output:
Enter seconds:70000
40seconds is 0 days,19 hours,26 minutes,and 40seconds.