1. Horsing around can lead to breaking equipment in the classroom or somebody getting hurt
2. leaving your backpack on the floor can cause someone to fall
3.something unexpected may happen and worsen the problem
4. it can corrupt the computer's files and deleted unsaved work.
if you want the sentences to be longer, add some words to them and make the message the same.
plug it into a charger the go to I tunes and it should be there
Small programs stored on the harddrive that provide basic functionality for he devices listed would be called Hardware Drivers.
I hope this helps!
HIT ADD BRAINLIEST IF YOU DO THAT ITLL WORK WELL
#include <stdio.h>
struct student {
char firstName[50];
int roll;
float marks;
} s[5];
int main() {
int i;
printf("Enter information of students:\n");
// storing information
for (i = 0; i < 5; ++i) {
s[i].roll = i + 1;
printf("\nFor roll number%d,\n", s[i].roll);
printf("Enter first name: ");
scanf("%s", s[i].firstName);
printf("Enter marks: ");
scanf("%f", &s[i].marks);
}
printf("Displaying Information:\n\n");
// displaying information
for (i = 0; i < 5; ++i) {
printf("\nRoll number: %d\n", i + 1);
printf("First name: ");
puts(s[i].firstName);
printf("Marks: %.1f", s[i].marks);
printf("\n");
}
return 0;
}
#◌⑅⃝●♡⋆♡Nåmřāthā ♡⋆♡●⑅◌