Destined for X Summer Program - week long all expenses paid summer program for underrepresented students.
Due Today - All of 5.2 assignments.
Complete Section 5 quiz - show me your score.
Message from former student:
I just wanted to say that your Java class helped me a ton in the long run. My comp sci class is a breeze and purely review; it's awesome how easy it is. We're only on arrays right now.
Section 5 Lesson 2: Control Statements Vocabulary:
- A post-test loop that executes an unknown number of times until a condition is met, but always executes the first time through the loop.
-
A pre-test loop that uses an iterator to keep track of how many times a loop will execute.
-
A keyword used to skip over the remaining code in a loop and return program control to the beginning of the loop to execute again.
-
A pre-test loop that executes an unknown number of times until a condition is met.
-
A keyword used to terminate a loop from executing before the loop condition is met.
Complete work on the Section 5 Lesson 2: Control Statements practice.
Section 5.2 Coding - finish up the 1.
Decoder program - you must use only one println to print out the decoded message. Be sure an appropriate message is displayed if I type in a number out of range.
Complete Section 5 Lesson 2: Control Statements project. Demonstrate for teacher check.
Section 6 Lesson 1: Arrays Vocabulary:
- The act of progressing through an array
- A structure that stores multiple values of the same data type
-
A two-dimensional array.
-
An integer that identifies the location of a value in an array
-
The ability to pass data into the main function and access it as an element of an array.
-
A logical computational procedure that if correctly applied ensures the solution of a problem
-
An array of arrays, similar to a table, matrix, or spreadsheet.
-
A for loop inside of a for loop
-
A named object used to store more than one value.
Begin Section 6 Lesson 1: Arrays slides
Complete Section 6 Lesson 1: Arrays questions 1-6.
Complete Section 6 Lesson 1: Arrays programs - ExamAverage, Matrix and CardDeck
An anagram is a word or a phrase made by transposing the letters of another word or phrase; for example, "parliament" is an anagram of "partial men," and "software" is an anagram of "swear oft." Write a program that figures out whether one string is an anagram of another string. The program should ignore white space and punctuation.
Be sure to check the Java API for the String methods that you can use. One of the things you will need is the length of the word or phrase so you know how many letters you are dealing with. You will also need to know the index of each character since you will be comparing characters.
Here is how the indexOf( ) method works
Here is how you check to see if a character is found in a string: if (word2.indexOf(c) = = -1) - if you every get a -1 that means that character is NOT found in the string and thus you do NOT have an anagram.