hey if this online school has the system to teach you online then yes they can track your location too. that's all depend upon how this online platform is build. read their privacy policy to check if they have mentioned about it there. some website don't track locations. but in last it all depends how the system has been designed.
Answer:
#include <stdio.h>
int main()
{
float afTest1[5] = {90, 30, 25, 45, 55};
for (int i = 0; i < 5; i++) {
printf("%f ", afTest1[i]);
}
return 0;
}
Explanation:
Initialize the elements of the array as 90, 30, 25, 45, 55
Create a for loop that iterates through the array
Inside the loop, print each element using printf function
This is false, I hope this helps you with your task