A company has 10 on-premises SQL databases. The company plans to move the
databases to SQL Server 2012 that runs in Azure Infrastructure-as-a-Service (IaaS).
After migration, the databases will support a limited number of Azure websites in the
same Azure Virtual Network. You have the following requirements: You must restore
copies of existing on-premises SQL databases to the SQL servers that run in Azure laas.
You must be able to manage the SQL databases remotely.
You must not open a direct connection from all of the machines on the on-premises
network to Azure. Connections to the databases must originate from only five
Windows computers. You need to configure remote connectivity to the databases.
Which technology solution should you implement?
1. Azure Virtual Network site-to-site VP
2. Azure Virtual Network multi-point VPN
3. Azure ExpressRoute
4. Azure Virtual Network point-to-site VPN from
5 workstations only
Answers
Answer:
O4. There are 8 teams which are playing in the IPL this year, out of which you are given the scores of four teams in form of 4 different arrays of length 11 each. You are also given 4 arrays of length 11 each which represent the total number of balls faced by that batsman. Please write a program which takes the input from these arrays and decides the maximum runs that your favourite player has to score so far in order to get the orange cap. [The orange cap is awarded to the person who scores maximum runs in the tournament]. Also, please find out the maximum strike rate achieved by a batsman so far. [10]
Note: In total you are given 8 arrays where the first 4 arrays represent the runs scored and the next 4 represent the total number of balls faced.
Sample Run:
Input:
[10, 45, 500, 400, 45, 56, 67, 78, 100, 8, 11]
[100, 450, 510, 410, 415, 56, 68, 87, 101, 9, 9]
[404, 445, 520, 450, 415, 156, 167, 488, 110, 4, 2]
[505, 445, 554, 410, 445, 556, 167, 178, 70, 4, 1]
[20, 100, 500, 345, 45, 65, 86, 69, 100, 7, 10]
[101, 246, 500, 355, 145, 165, 45, 45, 54, 8, 9]
[434, 456, 550, 395, 445, 165, 96, 369, 100, 4, 6]
[520, 340, 500, 405, 345, 565, 186, 169, 67, 3, 2]
Output:
Maximum Runs Scored: 556
Maximum Strike Rate: 286.206897
Explanation:
O4. There are 8 teams which are playing in the IPL this year, out of which you are given the scores of four teams in form of 4 different arrays of length 11 each. You are also given 4 arrays of length 11 each which represent the total number of balls faced by that batsman. Please write a program which takes the input from these arrays and decides the maximum runs that your favourite player has to score so far in order to get the orange cap. [The orange cap is awarded to the person who scores maximum runs in the tournament]. Also, please find out the maximum strike rate achieved by a batsman so far. [10]
Note: In total you are given 8 arrays where the first 4 arrays represent the runs scored and the next 4 represent the total number of balls faced.
Sample Run:
Input:
[10, 45, 500, 400, 45, 56, 67, 78, 100, 8, 11]
[100, 450, 510, 410, 415, 56, 68, 87, 101, 9, 9]
[404, 445, 520, 450, 415, 156, 167, 488, 110, 4, 2]
[505, 445, 554, 410, 445, 556, 167, 178, 70, 4, 1]
[20, 100, 500, 345, 45, 65, 86, 69, 100, 7, 10]
[101, 246, 500, 355, 145, 165, 45, 45, 54, 8, 9]
[434, 456, 550, 395, 445, 165, 96, 369, 100, 4, 6]
[520, 340, 500, 405, 345, 565, 186, 169, 67, 3, 2]
Output:
Maximum Runs Scored: 556
Maximum Strike Rate: 286.206897
Answer:
1) Azure Virtual Network point-to-site VPN from 5 workstations only
Explanation:
- Similar to a typical network that you may run in your own data centre, a VNet also offers the size, availability, and isolation that come with Azure's infrastructure.
- Azure resources can securely communicate with each other, the internet, and internal networks thanks to the Azure virtual network. A virtual network can be used for a variety of tasks, including connecting Azure resources to the internet, connecting Azure resources with one another, connecting Azure resources to on-premises resources, filtering and rerouting network traffic, and integrating Azure services.
- To manage your outbound connections, you can alternatively utilise a public load balancer or public IP address.
#SPJ5
https://brainly.in/question/37201870