Question
As a practical joke for your birthday, your best friend gave you some single- dimensioned arrays, each full of boolean values. She didnt tell you
As a practical joke for your birthday, your best friend gave you some single- dimensioned arrays, each full of boolean values. She didnt tell you how many items are stored in these arrays.
As if that weren't bad enough, your friend told you that each array is filled almost entirely with false values, except for a small sequence of consecutive trues contained somewhere in the array.
Overwhelmed by the novelty of all this, you decided (actually, we've decided for you) to write a static Java method named fullOfBool that accepts an array of boolean values as its only argument, and will print out
the location of the first true in the boolean array the location of the last true in the boolean array the total number of true values in the string of consecutive true values.
Your main method should call on fullOfBool using the following arrays to test it out:
boolean [] test1 = { false, true, true, true } ; boolean [] test2 = { true } ; boolean [] test3 = { true, true, true, true, false } ;
As a practical joke for your birthday, your best friend gave you some singledimensioned arrays, each full of boolean values. She didn't tell you how many items are stored in these arrays. As if that weren't bad enough, your friend told you that each array is filled almost entirely with false values, except for a small sequence of consecutive trues contained somewhere in the array. Overwhelmed by the novelty of all this, you decided (actually, we've decided for you) to write a static Java method named fullofBool that accepts an array of boolean values as its only argument, and will print out the location of the first true in the boolean array the location of the last true in the boolean array the total number of true values in the string of consecutive true values. Your main method should call on fullofBool using the following arrays to test it out: boolean [] test1 ={ false, true, true, true \}; boolean [] test2 ={ true }; boolean [] test3 ={ true, true, true, true, false }Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started