answersLogoWhite

0

In Windows, a striped volume requires the use of physical disks rather than virtual hard disks (VHDs) because VHDs are treated as single files within the operating system. Striped volumes distribute data across multiple physical disks to improve performance, but VHDs abstract the underlying storage, preventing the OS from accessing the required physical disk structure. Therefore, you cannot create a striped volume using an array of VHDs, as the OS cannot manage the necessary disk I/O operations across them.

User Avatar

AnswerBot

2mo ago

What else can I help you with?

Continue Learning about Engineering

You can use a variable to declare an array's size true or false?

True and false in the same time, because even so you can declare array size using notation for variables you have use constwhich makes your variable basically a constant:const int arraySize = 10;In Java, you can use any expression to define the array size, when you create the array. Once you create an Array object, however, you can't redimension it - but you can create a new Array object and destroy the old one.


Create a mark list using array with structure?

sorce code for student mark list usig array


What is an array and how do you create one How do you access information or elements contained in an array?

An array is:simply a collection of similar objectsHow you create one: (I think)Basically you receive or copy an image and place it in an array and assign it an mage Areray name.How you access info and elementsIt can be accessed by means of a variable name and an index.


Could array may have elements that are numbers and strings?

In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.


How can you create array of an object in java?

Array's can hold only primitive data types. if you want a collection of objects you must use an ArrayList or a Vector.

Related Questions

Why can you not use an arry of VHD to create a striped volume ina windows system?

In a Windows system, you cannot use an array of Virtual Hard Disks (VHDs) to create a striped volume because Windows requires physical disks or dynamic disks for RAID configurations like striping. VHDs are treated as files within the file system, and while they can be mounted as drives, they do not have the same capabilities as physical or dynamic disks for managing data distribution across multiple drives. Additionally, the performance benefits of striping rely on multiple physical disk access, which VHDs cannot provide in the same way.


What are types of array operation?

Here are some: Create an array Destroy it Access an element of it


What is the most efficient way to find the maximum value in a sliding window of a given array?

One efficient way to find the maximum value in a sliding window of a given array is to use a data structure like a deque (double-ended queue) to store the indices of elements in the window. By iterating through the array and maintaining the maximum value within the window, you can update the deque to ensure that it only contains relevant indices. This approach allows you to find the maximum value in the sliding window with a time complexity of O(n), where n is the number of elements in the array.


How can you create an array of numbers easily in php?

$foo = array(1.41421356, 1.61803399, 2.71828183, 3.14159265);


When you are changing the size of a window what shape does the mouse pointer assume?

Doubble Array


How do you create dynamic array?

well you get your vagina and rub it


You can use a variable to declare an array's size true or false?

True and false in the same time, because even so you can declare array size using notation for variables you have use constwhich makes your variable basically a constant:const int arraySize = 10;In Java, you can use any expression to define the array size, when you create the array. Once you create an Array object, however, you can't redimension it - but you can create a new Array object and destroy the old one.


Tantalizing in a sentence?

The array of smokey deserts through the window were uterly tantalizing.


Create a mark list using array with structure?

sorce code for student mark list usig array


How can I double the size of an array efficiently?

To double the size of an array efficiently, you can create a new array with double the capacity, copy the elements from the original array to the new array, and then update the reference to the original array to point to the new array. This process ensures that the array is resized without having to individually resize each element.


What is an array and how do you create one How do you access information or elements contained in an array?

An array is:simply a collection of similar objectsHow you create one: (I think)Basically you receive or copy an image and place it in an array and assign it an mage Areray name.How you access info and elementsIt can be accessed by means of a variable name and an index.


How do you use character in c plus plus?

If you are referring to the character object 'char,' then here are a couple of uses:To create an object, use this:char object = 'a';To create an array of chars, use this:char array[10];To dynamically allocate an array of chars, use this:char array = new char[10];(Don't forget to delete the object with 'delete [] array')