To make things faster, instead of using your mouse to navigate multiple Microsoft Excel sheets that are in the same document, you can use a shortcut instead. This is what Sally will be doing to copy data from her first worksheet to the fifth. 
The shortcut function that Sally needs to use to achieve this is (A) Ctrl and Page Up or Page Down Keys.
 
        
                    
             
        
        
        
Answer:
#include <iostream>
#include <time.h>
#include <string>
using namespace std;
int main(){
srand(time(NULL));
cout<<"Throw dice"<<endl;
int b =0;
int a=0;
a=rand()%6;
b=rand()%6;
for (int i =0;i<1;i++)
{cout<<"dice one: "<<a<<endl;}
for (int i =0;i<1;i++)
{cout<<"dice two: "<<b<<endl;}
if(a>b)
{cout<<"first dice won"<<endl;}
if(b>a)
{cout<<"second dice won"<<endl;}
else{cout<<"they are same"<<endl;
return main();
}
return 0;
}
Explanation:
/*maybe it help you it is almost done*/
 
        
             
        
        
        
Explanation:
  Determinism in an industrial local area network (LAN) basically improve the network and allow different types of technology use in various applications. 
It basically refers to the network communication that uses various types of technology in the system like time scheduling to improve the deterministic real-time communication. It basically improve the transmission and provide ability to transfer data from one point to another. 
The main importance of industrial LAN that it provide more flexible and efficient ethernet network in the system. It provide communication and interconnect various types of devices in the internet for efficient communication. 
 
        
             
        
        
        
Answer:
Listed below are the few ways Linux Server can be secured
1. Group policies: This is a way to ensure security by applying group policies and permissions both on the group level and the files level. Through proper permission configuration we can easily restrict other users from accessing those files and directories.
2. Implementation of the firewall: Implementing firewall in each of the Linux server will definitely help in securing your machine from outside threats. Iptables will help in filtering the network traffic that are entering into the system and even going out of the system.
3.Enabling SELINUX: Enabling SELINUX is another way to secure your system especially a Linux Server. Selinux is a powerful security that checks and allows applications to run into the system. It won't allow any untrusted application to run into the system.
 
        
             
        
        
        
In a relational database application, a <u>foreign key</u> is used to link one table with another.
<h3>What is a 
foreign key?</h3>
In database management system (DBMS), a foreign key can be defined as a column whose value provides a link between the data that are stored in a table or relational database. 
This ultimately implies that, a <u>foreign key</u> is used to link one table with another in a relational database application.
Read more on keys here: brainly.com/question/8131854
#SPJ12