Answer:
dergragmentation or share to speed up procceces
Answer:
The answer is "Option C".
Explanation:
Satellite transmission is a content distribution program, that utilizes digital signals to transmit from satellites that receive parabolic antennas widely known as satellite dishes. It's a low noise block generator for transmitted to cooling. It also allows the user it accepts single in a wide area, and the wrong choice can be defined as follows:
- In choice a, It allows the uses to receive a signal at all times, that's why it is wrong.
- In choice b, It provides digital signals, that's why it is wrong.
- In choice d, It is wrong because it always provides quality signals.
Answer:No service from hospital for injured people
Explanation:
Yes of course
Answer:
D) It creates a vector object with a starting size of 10 and all elements are initialized with the value 2.
Explanation:
When you write the statement vector<int> v(10,2); This statement declares a vector or dynamic array of size 10 that is the first parameter and the second parameter is the value with which all the elements in the vector are to be initialized.So in this vector all the 10 values will be initialized with the value 2.It is one of the way of initializing the vector.