answersLogoWhite

0

Eighteen years old

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

The average age of a group of teachers and students is 20 The average age of the teachers is 35 The average age of the students is 15 What is the ratio of teachers to students?

1 : 3


The average age for teacher is 35 Students is 15 The average age of a group of students and teachers is 20 What is the ratio of teachers to students?

1:3


What is the average age of doctoral students in your program?

The average age of doctoral students in our program is approximately 30 years old.


What is the average age of PhD students in universities?

The average age of PhD students in universities is typically around 30 to 35 years old.


The average age of a class of 39 students is 15 years if the age of the teacher is included then the average increases by 3 months find the age of the teacher?

25


3 years earlier the total age of 20 students was 320 years. what is their present average age?

3 years earlier, their average age was 320/20 = 16 years. So now their average age is 16 + 3 = 19 years.


Average age of students of an adult school is 40 years One hundred and twenty new students whose average age is 32 years join the school This causes the average age of the school to be reduced by 4?

let the number of students be x. The sum of all their ages = 40x120 joinedtotal is x+120The sum of all their ages = 40x+ 120*32=40x + 3840average age now is 3640x+3840 / x+120 =3640x+3820 = 36(x+120)40x+3840 =36x + 432040x-36x= 4320-38404x= 480x= 120initially there were 120. 120 joined. so total isd 240 students


What is the average masters GPA of students in your program?

The average GPA of students in our program is 3.5.


What is the average GPA for students with a 3.8 GPA?

The average GPA for students with a 3.8 GPA is 3.8.


What is the average cumulative GPA of students in the program?

The average cumulative GPA of students in the program is 3.5.


What is the average graduate GPA of students in the program?

The average graduate GPA of students in the program is 3.5.


How do you write a program in C that will captures details The details to be captured are student name mark and age The program should calculate and display the average marks for all the students?

Create a data structure to store the details for each student: typedef struct student_t { char name[30]; unsigned age; unsigned mark; } student; Establish an array to store the student data: size_t max = 100; // replace 100 with the actual number of students student students[max]; Use a loop to enter the data: for (size_t i=0; i<max; ++i) { printf ("Student name: "); scanf ("%s", students[i].name); printf ("Student age: "); scanf ("%u", students[i].age); printf ("Student mark: "); scanf ("%u", students[i].mark); } Calculate and display the average mark: unsigned sum = 0; for (size_t i=0; i<max; ++i) sum += student[i].mark; printf ("Average mark: %d\n", sum / max_students);