Answer:
"i suppose" negative? I'm sorry if it's wrong..
Answer:
In C++:
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
void printarray(int array []){
for(int i=0; i<100; i++){ cout << array[i] << " "; }
}
void sortarray(int array []){
sort(array, array + 100);
printarray(array);
}
int main() {
int array[100];
srand((unsigned)time(0));
for(int i=0; i<100; i++){ array[i] = (rand()%99); }
printarray(array);
cout<<endl;
sortarray(array);
return 0;
}
Explanation:
<em>See attachment for program source file where comments are used for explanation purpose</em>
Answer:
responsive
Explanation:
responsive design resizes itself to best suit your device
(mark brainliest please)
Softskills refer to the ability to interact and communicate effectively with people.
Answer:
8 seconds
Explanation:
8 Mbps (Megabit / sec) = 1 MBps (Megabyte / sec)
Therefore 10 Mbps = 1.25 MBps
Now divide the file 10MB by his download speed of 10Mbps (which is 1.25 MBps) and you can get 8 seconds.