Answer:
I would pick A B and D to be my answer
Answer:
False.
Explanation:
"save" just preserves any edits made to file in its current state. "Save As" lets you rename it and change the file type.
Answer:
You go to account settings, edit your profile and click preferences and then go to choose level and put which grade u are in the options r middle school, high school, and college
Explanation:
Answer:
dax and dear god, also my heart hurts
Explanation:
they are great so is he u should listen to him
Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int[] array = new int[10];
int index = 0;
while(index < array.size()){
int number = (rand() % 100) + 1;
for (int i = 0; i < 1; i++) {
array[index] = number;
cout<< "Position "<< index << "of the array = "<< number << endl;
++index;
}
}
}
Explanation:
The while loop in the source code loops over a set of code ten times, The for loop only loops once to add the generated random number between 1 and 100 to the array of size 10. At the end of the for loop, the index location and the item of the array is printed out on the screen. The random number is generated from the 'rand()' function of the C++ standard library.