Roseville High School (Michigan)

Roseville High School is a public high school in Roseville, Michigan in the Metro Detroit area, and serves grades 9-12. It is the only high school in the Roseville Community Schools district.

Roseville High School
Address
17855 Common Rd

,
Michigan
48066

United States
Coordinates42°31′09″N 82°56′13″W
Information
TypePublic high school
Established1995
School districtRoseville Community Schools
PrincipalPatrick Adams
Teaching staff71.20 (on a FTE basis)[1]
Grades9-12
Enrollment1,449 (2016-2017[1])
Student to teacher ratio21.32[1]
CampusSuburb, large[1]
Color(s)Red & Black         
Athletics conferenceMacomb Area Conference
NicknamePanthers
Websitewww.rcs.misd.net/roseville-high-school.html

Demographics

The demographic breakdown of the 1,518 students enrolled in 2015-2016 was:

  • Male - 53.1%
  • Female - 46.9%
  • Native American/Alaskan - 1.1%
  • Asian/Pacific islanders - 1.5%
  • Black - 33.9%
  • Hispanic - 1.7%
  • White - 58.2%
  • Multiracial - 3.6%

58.9% of the students were eligible for free or reduced-cost lunch.[1]

Notable alumni

gollark: But if I split it into multiple functions, it would not actually work.
gollark: Look, it has pattern matching in it, therefore good.
gollark: How SHOULD I do it?
gollark: ↑ you, as a result
gollark: ```rustfn matches(expr: &Value, condition: &Value) -> Option<Bindings> { match (expr, condition) { (Value::Num(a), Value::Num(b)) => if a == b { Some(HashMap::new()) } else { None }, (Value::Call(efn, eargs), Value::Call(rfn, rargs)) => { if efn != rfn { return None } if rargs.len() != eargs.len() { return None } let mut out_bindings = HashMap::new(); for (rarg, earg) in rargs.iter().zip(eargs) { match matches(earg, rarg) { Some(x) => out_bindings.extend(x), None => return None } } Some(out_bindings) }, (_, Value::Identifier(b)) => Some(vec![(b.clone(), expr.clone())].into_iter().collect()), _ => None }}```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.