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

 

jebbert@volusia.k12.fl.us > sep27_2016_APSLHL_allTrue
prev  |  next  |  chance

Write a method that returns 'true' if all four parameters are 'true'. Return false if any of the parameters are 'false'.


sep27_2016_APSLHL_allTrue(true, true, false, true) → false
sep27_2016_APSLHL_allTrue(false, true, true, true) → false
sep27_2016_APSLHL_allTrue(true, true, true, true) → true

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

public boolean sep27_2016_APSLHL_allTrue(boolean a, boolean b, boolean c, boolean d) { }

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: 250

Copyright Nick Parlante 2017 - privacy