Question:You are creating an application that provides information about the local computer. The application contains a form that lists each logical drive along with the drive properties, such as type, volume label, and capacity.
You need to write a procedure that retrieves properties of each logical drive on the local computer.
What should you do?
To answer, move the three appropriate actions from the list of actions to the answer area and arrange them in the correct order
A Retrieve the drive names of all logical drives on a computer by using the DriveInfo class. <br /><br />Retrieve an instance of the driveInfo class.<br /><br />Retrieve the drive capacity by using the FileSystemInfo. Attributes property. <br /><br />
B Retrieve the drive names of all logical drives on a computer by using the DriveInfo class. <br /><br />Retrieve the drive capacity by using the FileSystemInfo. Attributes property. <br /><br />Retrieve an instance of the driveInfo class.
C Retrieve an instance of the driveInfo class.<br /><br />Retrieve the drive capacity by using the FileSystemInfo. Attributes property. <br /><br />Retrieve the drive names of all logical drives on a computer by using the DriveInfo class. <br /><br />
D Retrieve the drive names of all logical drives on a computer by using the DriveInfo class. <br /><br />Retrieve an instance of the driveInfo class.<br /><br />Retrieve the drive capacity by using the FileSystemInfo. Attributes property. <br /><br />Determine if the drive is available� by using the FileSystemInfo.Attributes property.<br /><br />