What feature in virtualization automatically takes snapshots at a given interval to enable quick recovery? a) Snapshot manager b) Live migration c) Fault tolerance d) Snapshot scheduler

Answers

Answer 1
Answer:

Answer:

Explanation:

The AutoProtect feature preserves the state of a virtual machine by taking snapshots at regular intervals that you specify. This process is in addition to manual snapshots, which you can take at any time.


Related Questions

The elements of an integer-valued array can be set to 0 (i.e., the array can be cleared) recursively as follows: An array of size 0 is already cleared; Otherwise, set the last of the uncleared elements of the array to 0, and clear the rest of the array Write a void method named clear that accepts an integer array, and the number of elements in the array and sets the elements of the array to 0.
How does having a flexible mind help you become a better employee?
PowerPoint provides a wide variety of ____ shapes that can add visual interest to a slide.
A user is complaining about sluggish performance on her Linux system, and the technician suspects a running process is consuming excessive processor resources. Which of the following commands will the technician most likely use to locate the offending process?a. psb. killc. ddd. vi
A ____ error occurs when an instruction does not follow the grammar of the programming language

Consider the given code fragment. Determine the output of the program fragment.m = 2 repeat until (m > 500) { display(m) m = m * 2 } a) 2, 4, 8, 16, 32, 64, 128, 256, 512 b) 2, 4, 8, 16, 32, 64, 128, 256 c) 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 d) 2, 4, 8, 16, 32, 64, 128, 256, 1024

Answers

Explanation:

a "repeat until" loop checks the criteria at the end of the loop.

but the sequence of the instructions inside the loop writes m before it gets increased (multiplied by 2).

so,

b) 2, 4, 8, 16, 32, 64, 128, 256

is correct, because at the end m = 256, it gets displayed, then m gets multiplied by 2 (now it is 512). and NOW the loop checks the end criteria (m > 500) and ends the loop.

so, the number 512 never gets displayed. and we are not getting to any larger number anyway.

Media refers to a worldwide educational movement that aims to teach to people to understand how the mediaaffect both individuals and society as a whole.

literacy

consolidation

socialization

effects

NEXT QUESTION

READ NEXT SECTION

ASK FOR HELP

TURN IT IN

2014 Glynlyon, Inc. All rights reserved

Answers

Answer:

Media literacy refers to a worldwide educational movement that aims to teach people to understand how the media affects both individuals and society as a whole.

Explanation:

Media literacy is the ability to know and learn about the various practices that allow a person to be knowledgeable about the various elements of the media. It allows people to gain access to any content, evaluate or even create and use the media in whatever way they wish to.

But at the same time, while educating people about the media, it also helps people learn about the effects of media, be it individually or socially. Thus, in short, media literacy can be defined as educating or imparting information about the advantages and disadvantages of the media for a person.

In which part of a professional email should you try to be brief, but highly descriptive? A. The subject line
B. The blind carbon copy (bcc)
C. The emoticons
D. The domain

Answers

The correct answer is A - the part of a professional email in which you should try to be brief, but highly descriptive, would be the subject line. It is important to write a good subject line, because this will effect the amount of attention paid to your email in the busy inbox of a professional company.

In the Microsoft Office Suite, what tells a database what to insert information in the document? A. Placeholder
B. Table
C. Event handler
D. Object

Answers

A. a placeholder tells you were database should be inserted

Write a SELECT statement that returns three columns: EmailAddress, OrderID, and the order total for each customer. To do this, you can group the result set by the EmailAddress and OrderID columns. In addition, you must calculate the order total from the columns in the OrderItems table.Write a second SELECT statement that uses the first SELECT statement in its FROM clause. The main query should return two columns: the customer’s email address and the largest order for that customer. To do this, you can group the result set by the EmailAddress column.

Answers

Answer:

Select EmailAddress,max(total) from (Select EmailAddress, OrderID, sum(total) as total from OrderItems group by EmailAddress, OrderID) group by EmailAddress

Explanation:

First step is group the rows by email and order id and sum de total of orders

Select EmailAddress, OrderID, sum(total) as total from OrderItems group by EmailAddress, OrderID

Then you use the above query as a subquery grouping by the email and selecting the max value by client

Select EmailAddress,max(total) from (Select EmailAddress, OrderID, sum(total) as total from OrderItems group by EmailAddress, OrderID) group by EmailAddress

Which of the following statements about computer graphics formats is true? A. Unlike word processing programs, computer graphics formats can be interchanged on most systems.
B. You may need a utility program to convert graphics to a format compatible with your software.
C. Computer graphics formats are universally compatible with any graphic design software.
D. Graphics formats can't be converted to different formats.

Answers

The answer about computer graphics formats that is true is b) you may need a utility program to convert graphics to a format compatible with your software.