You need to move a VM from one Hyper-V server to another while maintaining the VM’s availability. What Hyper-V feature should you use?
A. Live Migration
B. Hyper-V Checkpoint
C. Hyper-V Replica Broker
D. Live Replication
Answer: A. Live Migration
You might also like to view...
Data that has been organized is called ________
A) binary digits B) information C) bytes D) output
With explicit ____, an acknowledgment frame (abbreviated ACK) is sent by the receiving device back to the sending device to confirm that the data frame arrived intact.
A. packet generator B. slot time C. CRC D. frame acknowledgment
The ____________ layer of the OSI model is responsible for data format translation.
a. session b. presentation c. physical d. application e. transport
Consider the following function to calculate the nth Fibonacci number:long fib (long num){ if (num == 0 || num == 1) return num; return (fib (num - 1) + fib (num - 2));}What is(are) the base case(s)?
A. 0 B. 1 C. 0 and 1 D. num - 1