id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tlsmith2@wsfcs.k12.nc.us > commonAlgPassingStudents
prev  |  next  |  chance

An array contains a list of final grades of students in an AP Biology class. A separate array stores the corresponding AP Exam scores (1-5) that each student earned on the AP Exam. Each array will be the same length and a student's grade and AP score will be stored in the same position in each array. A passing score on the AP Exam is a score of 3, 4, or 5. A failing final grade in the class is a grade below 60. Count the number of students who either have a passing grade in the class or a passing score on the AP Exam.


commonAlgPassingStudents([75, 80, 55], [3, 4, 3]) → 3
commonAlgPassingStudents([55, 65, 70, 50], [1, 2, 5, 3]) → 3
commonAlgPassingStudents([58, 49, 89], [2, 1, 2]) → 1

...Save, Compile, Run (ctrl-enter)

public int commonAlgPassingStudents(int[] finalGrades, int[] APScores){ }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy