Which three installation methods are supported for a guest operation system within a virtual machine? (Choose Three)

a. ISO image from the datastore
b. CD-ROM
c. ISO image from a Content Library
d. ISO image from an external FTP Server
e. ISO image from Update Manager repository

Answer:
A. ISO image from the datastore
B. CD-ROM
D. ISO image from an external FTP Server

Computer Science & Information Technology

You might also like to view...

Which of the following code segments creates a new file named address.txt, writes the following two lines to the file, and then closes the file?

Bob Johnson Somewhere USA a. ```Dim addressFile As System.IO.StreamWriter addressFile = System.IO.File.CreateText(“address.txt”) addressFile.Write(“Bob Johnson”) addressFile.Write(“Somewhere USA”) address.txt.Close() ``` b. ```Dim addressFile As System.IO addressFile = System.IO.File.CreateText(“address.txt”) addressFile.WriteLine(“Bob Johnson”) addressFile.WriteLine(“Somewhere USA”) addressFile.Close() ``` c. ```Dim addressFile As System.IO.StreamWriter addressFile = System.IO.File.CreateText(“address.txt”) addressFile.WriteLine(“Bob Johnson”) addressFile.WriteLine(“Somewhere USA”) addressFile.Close() ``` d. ```Dim addressFile As StreamWriter addressFile = System.IO.File.CreateText(“address.txt”) addressFile.PrintLine(“Bob Johnson”) addressFile.PrintLine(“Somewhere USA”) Close() ```

Computer Science & Information Technology

In the variable initialization: char course[20] = “Intro to C++”; the character at course[6] will be:

A. \0 B. the letter o C. the letter t D. a space.

Computer Science & Information Technology