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

 

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

The "scores" array contains test scores for a class, and needs to start off with a base test score. This method should create an array of the specified number of test scores and initialize every score with the base score.


commonAlgInitScores(4, 60) → [60, 60, 60, 60]
commonAlgInitScores(2, 0) → [0, 0]
commonAlgInitScores(3, 60) → [60, 60, 60]

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

public int[] commonAlgInitScores(int numScores, int baseScore) { }

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