write a python program that has the function "draw_hexagon()" that draws a hexagon. use loops in your function and remember to call it

Answers

Answer 1

In this exercise we have to use the knowledge of computational language in python to write a code that program that has the function "draw_hexagon()" that draws a hexagon.

Writting the code:

import turtle as t

def how_many():

   while True:  

       print "  How many of then do you want to draw?"

       print "  -Range is from 1 to 5-"

       global shape_no

       shape_no = raw_input('  Enter your choice: ')

       try:

           shape_no = int(shape_no)

           if (1 <= shape_no <= 5):

               print "Your number is ok"

               break

           else:

               print

               print "from 1 to 5 only"

       except:

           print "Only numbers allowed - Please try again"

   return True

def start_point():

   t.penup()

   t.setpos(-240,0)

   t.pendown()

def draw_hexagon(howmanyof):

   start_point()

   for a in range(howmanyof):

       for a in range(6):

           t.forward(50)

           t.left(60)

       t.penup()

       t.forward(110)

       t.pendown()

def main():

   while True:

       print

       print "  Draw a Shape"

       print "  ============"

       print

       print "   Draw a hexagon"

       print

       print "  X - Exit"

       print

       choice = raw_input('  Enter your choice: ')

       if (choice == 'x') or (choice == 'X'):

           break

       elif choice == '1':

           how_many()

           draw_square(shape_no)

       elif choice == '2':

           how_many()

           draw_triangle(shape_no)

       elif choice == '3':

           how_many()

           draw_rectangle(shape_no)

       elif choice == '4':

           how_many()

           draw_hexagon(shape_no)

       elif choice == '5':

           how_many()

           draw_octagon(shape_no)

       elif choice == '6':

           how_many()

           draw_circle(shape_no)

       else:

           print

           print '  Try again'

           print

See more about python at brainly.com/question/13208346

#SPJ1

Write A Python Program That Has The Function "draw_hexagon()" That Draws A Hexagon. Use Loops In Your

Related Questions

Which of the following is the most likely disadvantage caused by the inability to access the internet?

A. inability to access educational and other resources
B. inability to communicate with business partners
C. inability to apply for jobs that use online recruitment
D. inability to relate to others in a social network

Answers

The one that is the disadvantage caused by the inability to access the internet is inability to relate to others in a social network. The correct option is D.

What is social networks?

The use of world wide web social media sites to stay connected with family and friends, community, colleagues, or customers is referred to as social networking.

Through all the sites, online communication can serve a social, business, or both purposes.

The disadvantage caused by a lack of internet access is the inability to interact with others in a social network.

Thus, the correct option is D.

For more details regarding social network, visit:

https://brainly.com/question/14312767

#SPJ1

if they run the tool again (but still with the destination ip address for code.org), in what way could the next packet's path be different? ????️note that there may be multiple answers to this question.

Answers

Answer:

Explanation:

stay the same  

move

What is the value of numC when this program is executed?
numA = 7
numB = 5
if numA== 5:
numC = 10
elif numA> numB:
numC = 20
else:
numC = 30

Answers

Answer: numC = 30

Explanation: got it right

When this program is run, the values of numA and numB are 7 and 5, respectively. The if statement must be executed if numA equals 2, which it does not. To execute the elif statement, numA must be greater than numB, which it is not. As a result of the else statement, numC = 30.

What is else if statement?Use the if statement to tell a block of code to run only if a certain condition is met. If the same condition is true, else is used to specify that a different block of code should be executed. If the first condition is false, use else if to define a new test condition. Otherwise if, as the name suggests, combines the words if and else. It is similar to else in that it extends an if statement to execute a separate command if the original if expression returns false.An if else statement in programming will execute a different set of statements depending on whether an expression is true or false.

To learn more about else if, refer to:

brainly.com/question/18736215

#SPJ1

Which key combination can a user press to toggle between formula view and normal view within excel?.

Answers

The user can press the "Ctrl" and "~" keys at the same time to toggle between formula view and normal view.

What is toggle?
In general computing, a toggle is a switch from one setting to another. The name suggests that it is a switch with only two options: on or off, or A or B. A list of options or preferences can be found in practically every computing-related element. Toggles are any option items that may be toggled on or off. A toggle can be used to switch hardware or software. For instance, the Caps Lock & Num Lock keys on the keyboard serve as toggles for those particular features. When one of these keys is depressed once, it activates the corresponding function, but when it is depressed twice, it turns it off. These functions are initially off.

To learn more about toggle
https://brainly.com/question/28776085
#SPJ4

in this micro-assignment, you will be implementing some missing code for a class bst template provided. you must work within your linux environment. please use the project given on canvas. specifically, you will need to implement code for the following 4 functions in bst.h and make sure all existing test cases in main() have the correct outputs. the only file you need to change is bst.h.

Answers

Applications employ Linux environment variables, which are variables having a name and a corresponding value, to obtain information about the environment.

An environment in computer operating systems is a section that houses data on how particular programs and applications behave. Linux user environments make it easier to find the command you require and do a lot without knowing the specifics of how the system is set up. Another issue is where the settings originate from and how they can be changed. Applications launched in shells or subshells employ environment variables, which are dynamic values saved on a system and used by such programs. These variables have respected names and values. The environment variable alters the system's functionality and an application's behavior.

Learn more about environment here-

https://brainly.com/question/13107711

#SPJ4

what feature allows a firewall to permit traffic to flow from a trusted network (for example, a corporate intranet) to an untrusted network (for example, the internet) and then allow return traffic for that session, while blocking sessions initiated on the untrusted network?

Answers

       A firewall is a security tool, either computer hardware or software, that can assist safeguard your network by filtering traffic and preventing unwanted access to the sensitive information on your computer by outsiders.

It entails running software on a host in order to defend against attacks that have been thoroughly documented?

Firewalls based on hosts

       It is a piece of software—or a group of software—that is included with the operating system. Each host is shielded from assaults and unauthorized access by a host firewall.

Different Forms of Network Security Measures

        Firewall. Network traffic is managed by firewalls using pre-established security rules. Network segmentation, remote access VPN, email security, data loss prevention (DLP), intrusion prevention systems (IPS), sandboxing, and hyperscale network security are a few examples of network security measures.

     Which of the following is another name for a firewall that performs router functions?  A sacrificial host is a firewall that provides protection behind the organization's router. Another name for a sacrificial host is a bastion host.

To Learn more About firewall, Refer:

https://brainly.com/question/13693641

#SPJ4

What happens at the end of each iteration of the repeat loop in this code?

A. The program pauses for 2 seconds.
B. The shark's position on the screen changes.
C. The number of sharks increases
D. The shark follows the fish at a speed of 2000

Answers

Answer:

B. The shark's position on the screen changes.

problem 2 (38 points): write a c program to prompt the user to enter a number between 1 and 15462. the final goal is to display the individual digits of the numbers on a line with three spaces between the digits. the first line is to start with the right-most digit and print it five times; the second line is to start with the second digit from the right and print it four times, and so forth. in order to do that, you must first separate the digits. no conversion from string to integers is allowed, neither are arrays. for example, if 1234 is entered, the following should be printed: 4 4 4 4 4 3 3 3 3 2 2 2 1 1 0 then, write c code to accomplish a similar print, where the digits are displayed flush left and in order. again, the digits must be separated programmatically. no conversion from string to integers is allowed, neither are arrays. for example: 0 1 2 3 4 0 1 2 3 0 1 2 0 1 0

Answers

#include <bits/stdc++.h>

std::string f;

void fi(int d) {

   std::cout << "First step:\n";

   if(d<5) {

       for(int i=5-d; i>0; i--) {

           f.insert(0,"0");

       }

   }

   for(int n=5;n>0;n--) {

       for(int m=n;m>0;m--) {

           std::cout << f.at(n-1) << "   ";

       }

   }

   std::cout << std::endl;

}

void se(int d) {

   std::cout << "Second step:\n";

   int n = 5;

   if(d<5) {

       for(int i=5-d; i>0; i--) {

           f.insert(0,"0");

       }

   }

   do{

       for(auto const& m: f) {

           std::cout << m << "   ";

       }

       f.pop_back();

       n--;

   }while(n>0);

   std::cout << std::endl;

}

int main(int argc, char* argv[]) {

   std::cin>>f;

   fi(f.size());

   se(f.size());

   return 0;

}

you have assigned a junior administrator to create a windows server 2016 failover cluster. the administrator does not have the create computer objects permission in active directory. what should you tell the junior administrator to do?

Answers

         Microsoft's server operating system is Microsoft Windows Server 2016. (OS). It was created with the intention of acting as a platform for networked applications. Windows Server 2016 was created concurrently with Windows 10 and made generally available on October 12, 2016.

What capability of Windows Server 2016 tries to stop a split vote from happening?

       Split-brain situations, which can occur when a network is divided and portions of the nodes are unable to communicate with one another, are avoided by quorum. Due to this, both groups of nodes may attempt to control the workload and write to the same disk, which can result in a number of issues.

       You can use the Cluster-Aware Updating (CAU) capability in Windows Server 2012 R2. On clustered servers, CAU automates software updating while preserving availability.

      The same version of Windows Server 2016 must be used by all servers. An Active Directory domain must be joined by all servers. Hardware components must be the same across all servers.

To Learn more About Windows Server 2016, Refer:

https://brainly.com/question/14526761

#SPJ4

Which of these is the lowest layer of the Internet?
Copper Cable / Fiber Cable / WiFi
HTTP/DNS
TCP/UDP
IP

Answers

Answer:

Explanation:

The physical layer is the lowest level and it consists of cables for the internet. So, the option with cables in it would be the best answers.

you want a security solution that protects the entire hard drive and prevents access even if the drive is moved to another system. which solution should you choose?

Answers

A smart way to keep your private information safe from prying eyes is to encrypt your hard disk. Naturally, if our careless, it could also serve to hide our info from us.

In contrast to an unencrypted computer, our data cannot be easily recovered if we forget your password. Hard-disk encryption is a method that employs complex mathematical operations to encrypt the data kept on a hard drive. Anyone without the necessary key or password cannot access the data on an encrypted hard drive. Regularly backup and save our files in several secure locations. before we see the first indicators of a failing hard drive, create an image backup. Update our anti-virus software.

Learn more about unencrypted here-

https://brainly.com/question/11083372

#SPJ4

what solutions will help slow or sluggish website and page loading performance? consent mode analytics 4 gtm template libraries universal analytics server side tagging tag assistant

Answers

The solutions will help slow or sluggish website and webpage loading performance include the following:

GTM Template Libraries Server Side Tagging Universal Analytics Go-ogle Analytics 4

What is a website?

A website is a collective name which connotes a series of webpages that are interconnected and linked together with the same domain name, so as to provide certain information to end users.

In Computer technology, Server Side Tagging is a solution that would help a website to improve its performance and the amount of time it takes to load. Other solutions that can help to better mitigate and reduce slow or sluggish website and webpage loading performance include the following:

Go-ogle Tag Manager (GTM) Template Libraries Universal Analytics Go-ogle Analytics 4

Read more on website here: https://brainly.com/question/15827053

#SPJ1

given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a vending machine object that performs the following operations: purchases input number of drinks restocks input number of bottles reports inventory

Answers

A vending machine object that performs the following operations: purchases input number of drinks restocks input number of bottles reports inventory is given below

The Program

public boolean removeItemType(int index)

 {

   if (index < 0)

   {

     return false;

 }

   else

   itemCount = index;

   index--;

  return true;

 }

 public boolean reStock(int which, int qty)

{

   if (index < 0)

   {

     return false;

 }

   else

     

  return true;

 }

public class ItemType

{

private String name;

 private double price;

 private int quantity;

 public ItemType(String n, int p)

 {

   this.quantity = 0;

   this.name = n;

   if (p <= 0){

     this.price = 5;

   }

   else{

     this.price = p;

   }

 }

 public String getName()

 {

   return this.name;      

 }

 public int getPrice()

 {

   return (int) this.price;      

 }

 public int getQuantity()

 {

   return this.quantity;

 }  

public int addQuantity(int n)

 {

   if (quantity <0) {

   return -9999;  

   }

   else{

     if (quantity + n <= 10)

       quantity += n;

    return quantity;

 }

 }

 public int getItem()

 {

   if (quantity < 1){

     return -9999;

   }

   else

     this.quantity --;

   return quantity;

   

 }

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

a company is looking to lower its total cost of ownership (tco) by moving the file system used for its business-critical, linux-based applications to a managed file system in the cloud. which service meets their needs?

Answers

Any application required for business continuity is considered a business critical application.Normal business operations for the organization cannot continue if a business-critical application fails or is stopped.

Why Linux is popular in industries and in business application?

Because Linux is so adaptable and cost-free, businesses use it to run servers, appliances, cellphones, and more. Many people agree that Linux crashes less frequently than Windows.Additionally, updating the system is simpler than having to reset it, as is necessary in a Windows environment.This translates into higher productivity and system uptime. Mission-critical application examples differ amongst industries.An automatic vehicle location (AVL) app, for instance, would be mission-critical for an ambulance firm, but if a plumbing company utilizes the same software, it might be considered significant but not vital. Business Critical Services are those that must be restored first in the case of a disaster and include the elements indicated in the descriptions of the disaster recovery services in Section 5 of Exhibits A and F, where appropriate. How heavily an enterprise depends on an application is the first essential definition of a critical application.Critical apps are by definition distributed internationally, contain large data storage, versatile processing engines, and are tightly connected with other dependent application services. Linux is open-source and free.Developers and programmers can save money on software and licenses.Users can enable Windows apps to run on Linux by using open-source software like Wine.Wine is mainly used by gamers, however the Wine database also contains a sizable variety of productivity appsDue to its lower cost, adaptability, and other various advantages, Linux has recently risen to the top position as the preferred operating system for servers.Linux is used by a huge number of successful companies to keep their operations running efficiently and with little downtime. Because Linux is open-source and has the potential for a very small OS footprint, it might end up in a variety of linked devices, including our homes, cars, and places of business.There is a good likelihood that Linux will dominate the field of high-performance computing.

        To learn more about  business linux applications refer

        https://brainly.com/question/27937626

        #SPJ1

 

tonya needs to buy a new laptop. she compares models from apple, dell, and hewlett-packard on criteria such as processor speed, memory, screen size, and price. what type of consumer product does this represent?

Answers

The shopping product is the second category of consumer goods. Shopping products are those that a client typically compares while picking and buying based on factors like quality, price, and style.

The type of user and two main product categories are related in marketing. Consumer goods are goods bought by the final consumer. Business products (also known as industrial or B2B products) are things that businesses purchase to help create other goods that can be sold. A well defined target market, precise customer needs and wants, and information about what the product will be and do to meet those demands should all be included in the protocol. The protocol's shortcomings would cause issues with product development.

Learn more about product here-

https://brainly.com/question/22852400

#SPJ4

a level 1 security system is used to protect against unauthorized access. group of answer choices a. users' workstations b. back-end systems c. internal database servers d. front-end servers

Answers

Option D is correct. A software firewall is a software program that you install on your computer that protects your computer from unauthorized incoming and outgoing data.

A software firewall only protects the computer on which it is installed. Additionally, many antivirus scanners include a software firewall. Unauthorized use of computer data for personal gain. B. Transfer funds from someone else's account or debit purchases from someone else's account. Monitor and record keystrokes. It can be a software device or a hardware device. Network traffic capture and recording. "Unauthorized Access" means accessing, breaking into, communicating with, storing data, obtaining data, or otherwise intercepting and modifying computer resources without consent. These laws pertain to these and other actions that disrupt computers, systems, programs, or networks.

Learn more about network here-

https://brainly.com/question/15088389

#SPJ4

in c++ Write a program that will read in an array of 10 numbers. Have the program find the largest, the smallest, find the numbers above 0, find how many numbers = 0, or find the numbers less than 0.

Answers

Using the knowledge in computational language in C++ it is possible to write a code that have the program find the largest, the smallest, find the numbers above 0, find how many numbers = 0, or find the numbers less than 0.

Writting the code:

#include<stdio.h>

main()

{

int a[10],i,sum=0;

printf("enter array\n");

for(i=0;i<10;i++)

{

scanf("%d",&a[i]);

sum=sum+a[i];

}

printf("sum of array =%d",sum);

}

See more about C++ at  brainly.com/question/19705654

#SPJ1

A C++ program is one that is used to create high-performance programs. A program that will read an array of 10 numbers can be created by using a chart array.

What is a program?

A program is a specified set of codes that are used to run the computer. They are set instructions for the computer.

The C++ program is;

#include<stdio.h>

main()

{

int a[10],i,sum=0;

printf("enter array\n");

for(i=0;i<10;i++)

{

scanf("%d",&a[i]);

sum=sum+a[i];

}

printf("sum of array =%d",sum);

}

Therefore, a C++ program that will read an array of 10 numbers is given above.

To learn more about the program, refer to the below link:

https://brainly.com/question/28959658

#SPJ1

why is it so common in internet protocols that clients speak before servers do? (in other words, what would be an important advantage of having a client speak first, or, thought differently, an important disadvantage of having a server speak first instead?)

Answers

Answer:

The client will send a request through the API with the TCP protocol, which the server then receives and delivers your request. This makes sure a connection is established. This is the standard quota for all web pages!

Explanation:

Hope this helps you out!

create a program, gpacalc.py, that takes four letter grade arguments and prints out the corresponding gpa, to two decimals. your program should work both in arguments are upper-case and lower-case.

Answers

Today's environment is highly automated, making computer programming essential. The relationship between people and machines needs to be under human control.

We utilize computer programming to harness such computational power because computers and machines can perform tasks so precisely and effectively. A computer follows a collection of instructions called a program to carry out a certain task. [computing] The size of a computer program affects the likelihood that an error may occur. A program is a group of initiatives that are managed collectively to generate scale-based efficiencies. Program management is the coordination of linked initiatives that are grouped together, just like project management involves the coordination of individual activities.

Learn more about Programming here-

https://brainly.com/question/11023419

#SPJ4

write a console-based application named sumdoubles that allows the user to enter any number of doubles continuously until the user enters 0.99. display the sum of the values entered, not including 0.99.

Answers

The program of console-based application will be:

public class sumdoubles {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

double num = 0.0;

double sum = 0.0;

while (num != 0.99) {

System.out.print("Enter a double value (0.99 to quit): ");

num = input.nextDouble();

if (num != 0.99)

sum += num;

}

System.out.println("Sum of values entered: " + sum);

}

}

What is console application?

A console application is a computer programme that is intended to be used through a text-only computer interface, such as a text terminal, some operating systems' command-line interface, or even the text-based interface it's included in most graphical user interface (GUI) operating systems, like the Windows Console in Microsoft Windows, the Terminal throughout macOS, and xterm in Unix.

To learn more about console application

https://brainly.com/question/27031409

#SPJ4

what is a ledger? multiple choice records classified and summarized transactional data processes and manages algorithms across many machines in a computing environment simply means unchangeable a type of distributed ledger, consisting of blocks of data

Answers

A ledger is an accounting book or group of books where account transactions are noted.

A ledger is an accounting book or group of books where account transactions are noted. Each account has a beginning or carry-forward balance, as well as the ending or closing balance, and would record each transaction as either a debit or credit in distinct columns.

All amounts entered in supporting journals, which identify specific transactions by date, are permanently summarized in the ledger. Every transaction originates in a journal and ends up in one or more ledgers. The summary totals in the ledgers are used to create a company's financial statements.

The general, debtors, and creditors ledgers are the three different categories. Information from journals is accumulated in the general ledger. The General Ledger is updated each month with the sum of all journals. Therefore, the General Ledger's function is to compile and organize each transaction mentioned in each journal. The sales journal feeds data into the Debtors Ledger. The Debtors Ledger's function is to reveal which clients and how much money they owe the company. The purchasing journal feeds data into the creditors ledger. The Creditors Ledger's function is to reveal which suppliers the company owes money to and how much.

To know more about ledger click on the link:

https://brainly.com/question/14976010

#SPJ4

An image that looks pixelated is one with:

Question 10 options:

A) high resolution.


B) low resolution.


C) typical resolution.


D) rasterized resolution.

Answers

Answer:

B) low resolution.

Explanation:

Low resolution means few pixels. Then, pixels are relatively big, so you can see them.

any computer that stores hypermedia documents and makes them available to other computers on the internet is called a . group of answer choices a. client b. server c. station d. domain

Answers

Option B is correct. A computer program or apparatus that offers a service to another computer program and its user, also known as the client, is referred to as a server.

The term "client" refers to any computer that keeps hypermedia documents and makes them accessible to other computers over the Internet. Anywhere in the world can be used to store hypermedia documents. The Advances Research Projects Agency Network is the owner of the Internet (ARPANET). The Domain Name System (DNS) protocol converts domain names to IP addresses when data is moved between networks. DNS servers are servers that run this protocol and keep a list of computer and website addresses as well as the IP addresses that go with them.

Learn more about documents here-

https://brainly.com/question/20696445

#SPJ4

When computing a bootstrap confidence interval for a parameter, at least how many times should we re-sample from the original sample?.

Answers

Bootstrap - There is no definitive answer to this question, but a common rule of thumb is to resample at least 1000 times.

What is Bootstrap?
An HTML, CSS, and JS library called Bootstrap aims to make the creation of educational web pages as simple as possible (as opposed to web apps). The main goal of adding to a web project would be to apply the colour, size, font, and layout options of Bootstrap to that project. Therefore, the main determinant is whether the responsible developers like those options. All HTML components have basic style declarations once Bootstrap is introduced to a project. As a result, texts, tables, and form components appear consistently in all web browsers. In order to further personalise the appearance of their contents, developers can make use of the CSS classes defined in Bootstrap.

To learn more about Bootstrap
https://brainly.com/question/8908486
#SPJ4

your system is currently running the multi-user.target. what would you enter at the command prompt to find out whether the atd.service is configured to start every time the multi-user.target is loaded?

Answers

You would enter systemctl is-enabled atd.service at the command prompt to find out whether the atd.service is configured to start every time the multi-user.target is loaded.

What is command prompt?

Command Prompt is the primary command-line interpreter for the OS/2, eComStation, ArcaOS, Microsoft Windows (Windows NT family and Windows CE family), and ReactOS operating systems. On Windows CE.NET 4.2, Windows CE 5.0,, it is known as the Command Processor Shell. Command Prompt communicates with the user via a command-line interface. On OS/2 and Windows, for example, it is possible to use real pipes in command pipelines, allow both sides of the pipeline to operate concurrently. As a result, the standard error stream can be redirected.

To learn more about command prompt

https://brainly.com/question/25808182

#SPJ4

write a java program using switch that determine if the employee will not be allowed to attend the class if his/her attendance is less than 80% and you will ask your user to input:
a. How many classes were held?
b. Attendance at classes
c. Display the percentage of class attended
d. Output if he/she allowed to attend the class or not

Answers

import java.util.Scanner;

class check_st {

public static void main(String[] args) {

Scanner f = new Scanner(System.in);

double x,y,d;

System.out.println("How many classes were held?: ");

x = f.nextInt();

System.out.println("Attendance in class: ");

y = f.nextInt();

d = (y/x)*100.0;

float k = (float) Math.round(d * 100) / 100;

System.out.println("The percentage of class attended: %"+k);

int m = (k<80.0) ? 0 : 1;

switch(m)

case 0:

System.out.println("Failed the course!");

break;

case 1:

System.out.println("Passed the course!");

break;

default:

;;

}

}

you are given two sequences a and b of n numbers each, possibly containing duplicates. describe an efficient algorithm for determining if a and b contain the same set of numbers, possibly in different orders. what is the running time of this algorithm?

Answers

Given are two sequences, S1 and S2, both with n items and possibly including duplicates. Efficient algorithm would be extremely wasteful to compare two sets of sequences if they were in some random order.

"A collection of finite rules or instructions to be followed in calculations or other problem-solving procedures" is what the word algorithm signifies. Or, "A finite-step process for solving a mathematical problem that frequently uses recursive operations."

As a result, an algorithm is a set of limited procedures used to solve a certain problem. Depending on what you want to do, algorithms might range from simple to sophisticated.

By using the process of making a novel recipe as an example, it can be understood. When following a new recipe, one must read the directions and carry out each step in the correct order. The new meal is cooked to perfection as a result of this procedures.

You employ algorithms every time you use a phone, computer, laptop, or calculator. Similar to this, algorithms assist programmers in carrying out tasks to produce desired results. The developed algorithm is language-independent, meaning that it consists only of simple instructions that can be used to build it in any language and still produce the desired results.

To know more about algorithm click on the link:

https://brainly.com/question/22984934

#SPJ4

what occurs when a redundant storage server offers an exact replica of the real-time data, and if the primary server crashes, the users are automatically directed to a secondary server?

Answers

Failover will occur when a redundant garage server gives a reproduction of the real-time data, and if the number one server crashes, the customers are directed to a secondary server.

Failover may be defined as returning to a redundant or standby pc server, gadget, hardware factor, or community upon the failure or strange termination of the formerly lively application, server, gadget, hardware factor, or community in a pc community. Failover can be used to protect pc structures from failure, wherein the standby gadget mechanically takes over while the principal gadget fails.

Learn more about failover at https://brainly.com/question/13790367

#SPJ4

abu is creating a virtual machine template to enable rapid server deployment at his organization. he creates a virtual machine named vm1. on vm1, he installs windows server 2019 and names the server serverx. next, he installs server roles and features and adds third-party software. he then runs the system preparation tool.

Answers

The System preparation tool will most likely remove the computer name SERVERX

What is a system preparation tool?

System Preparation Tool also known as Sysprep is a tool by Microsoft made for the purpose of duplicating, testing and deliverying new installations for the Windows operating system based on an established installation. It is a command-line tool that can be run using a scrpt or manually.

Here's the complete question:

Abu is creating a virtual machine template to enable rapid server deployment at his organization. He creates a virtual machine named VM1. On VM1, he installs Windows Server 2019 and names the server SERVERX. Next, he installs server roles and features and adds third-party software. He then runs the System Preparation Tool.

What will this tool most likely to do?

Learn more about Microsoft from:

https://brainly.com/question/19557118?referrer=searchResults

#SPJ4

What is output by the following line of code? print(5*2 + 9)

Answers

The output of the given line of code is 19.

What is a Computer Code?

This refers to the sequence of instructions that are given to a computer system in order to perform an action or execute a task.

Hence, we can see that the given computer code tells the computer to print the value of the mathematical operation 5 * 2 + 9 which would be given down below.

Using the BODMAS/PEMDAS rule,

5 * 2= 10

Then 10 + 9 = 19.

This is what the output of the computer code would be as the print function would be executed.

Read more about computer codes here:

https://brainly.com/question/23275071

#SPJ1

Other Questions
one step equations b+0.25=1.15 technician a says that an accumulator is used to reduce fluid pressure in a servo that is applying to produce a softer upshift. technician b says that an orifice is used to reduce fluid pressure in a servo that is applying to produce a softer upshift. who is correct? Can someone please help me with PART B) its very confusing to me. Thank you. What would be the best way to revise highlighted passage to provide astronger connection between cause and effect?Text to SpeechA. While NASA internally reviewed the fatal accident, both houses ofCongress launched independent investigations in order to ensurecomprehensive and impartial findings.B. NASA internally reviewed the fatal accident, and both houses ofCongress launched independent investigations. Therefore,everyone wanted to ensure comprehensive and impartialfindings.C. NASA internally reviewed the fatal accident, but both houses ofCongress launched independent investigations. Everyone wantedto ensure comprehensive and impartial findings. Vector vector v equals vector RS has points R(2, 12) and S(7, 6). What are the magnitude and direction of vector RS question mark Round the answers to the thousandths place. If AB = 10 ft, AC = 14 ft, and BC = 20 ft, what is RS?O 10 ft14 ft20 ft24 ft In the case of falling, the time will double how much the height will increase when you take your exam in psychology, you have to follow certain instructions: first, log into the computer. then, open the psy 1001 website. this step-by-step procedure which allows you to successfully navigate to the exam is best described as . is set of even number closed under operation of addition ? Jennifer has a collection of weights that each weigh 4, 6, or 9 pounds. If altogether, the weights weigh 42 pounds, what is the largest number of weights Jennifer could own? SportSoccerJoggingWalkingSkiingFootballTotal72Hrs5201051050Calculate the portion for soccer in degrees.[?]5 hrs.Total Sport Hours 5x+6y=37 2x + 3y = 4 3 out of 20 cars passing through an intersection did not fully stop, what is the probability that a car arriving at this intersection will not fully stop The number of legislators has increased approximately linearly from 1138 positions in 2003 to 1222 positions in 2009 . Let n be the number of legislators at t years since 2000. Find an equation of a linear model to describe the data. -3x^2-24x+7=0 is written in the form (x-p)^2=q what do you say to como sadice What is the slope of the equation: 2x + 3y = 12? Hath your property been destroyed before your face? Are your wife and children destitute of a bed to lie on, or bread to live on? Have you lost a parent or a child by their hands, and yourself the ruined and wretched survivor? If you have not, then are you not a judge of those who have.How does Paine's style contribute to the persuasiveness of the text? (choose 2)Question 4 options:A. He uses questions to highlight several ways Great Britain abuses Americans to persuade readers of the urgency to resist.B. He raises questions about Americans' ability to take care of themselves independently to convince readers to remain loyal to Great Britain.C.Paine addresses readers as "you" and "yours" to emphasize he feels a personal connection to readers who are undecided about British rule.D.Paine describes readers as "wretched survivors " and "judges" to make them feel guilty for turning away from the protection of the British government. Please help! Choose the right answer.Por cinco aos ella no (poder) viajar al extranjeroa, Pudiera b. pudo c. podad. pueda Number 1. Part b: what are the final kinetic energy of the system