Due Date: Thursday May 4, 2023
Blow to Bits book pages 39 to 42
Listen here "Convenience of the Customer" (www.cusack2.com)
Be sure to listen to my read of the secret pass code.
Make sure you enter the secret pass code
into the google drop box comments.
(Way I can verify that you listened.)
When you record, use Audacity
and export as an MP3.
This should take 7 to 10 minutes to read
Your file name is PX_P39to42_BtoBits_Book_lastname.mp3
Drop off your mp3 file into google classroom.
Below is the
Starting and ending text to ensure
you read the correct text.
the ..... is the representing
the rest of the text.
Be sure to read the boxes to.
Listen for secret code words.
Due Date: Thursday May 4, 2023
Near Hundred
Purpose: Expand your knowledge of Java by learning
about boolean logic.
* Given an int n, return true if it is within 10 of 100 or 200.
* Note: Math.abs(num) computes the absolute value of a number.
*
* nearHundred(93) → true
* nearHundred(90) → true
* nearHundred(89) → false
Near Hundred - Click here.
Due Date: Thursday May 4, 2023
Positive Negative
Purpose: Expand your knowledge of Java by learning
about boolean logic.
* Given 2 int values,
* return true if one is negative and one is positive.
* Except if the parameter "negative" is true,
* then return true only if both are negative.
Positive Negative - Click here.