3 Pages

09-22 Class Notes CS 107

Course: COP 2271, Fall 2010
School: UCF
Rating:
 
 
 
 
 

Word Count: 412

Document Preview

Class 09-22 Notes CS 107 Wednesday, September 22, 2010 11:59 AM Announcements: - You'll be glad you came to class today... - For midterm #1 in lab, you need to know how to write a program that manipulates characters on an input line. We'll do an example in class today. /** * I/O > Console I/O > ConsoleIOScanner.java * * Reads text from standard input using console I/O using the Scanner class. * This...

Register Now

Unformatted Document Excerpt

Coursehero >> Florida >> UCF >> COP 2271

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Class 09-22 Notes CS 107 Wednesday, September 22, 2010 11:59 AM Announcements: - You'll be glad you came to class today... - For midterm #1 in lab, you need to know how to write a program that manipulates characters on an input line. We'll do an example in class today. /** * I/O > Console I/O > ConsoleIOScanner.java * * Reads text from standard input using console I/O using the Scanner class. * This does not work in versions of Java previous to Java 5 (aka 1.5) * @author Dale Reed */ import java.util.Scanner; public class Midterm1Prep { public static void main(String[] args) { Scanner keyboard = new Scanner( System.in); System.out.print( "Enter some text: " ); String userInput = keyboard.nextLine(); // read a string // go through all the characters and print out any upper case // characters for( int i=0; i<userInput.length(); i++) { // copy the ith character char c = userInput.charAt( i); // print it if it is upper case if( c >= 'A' && c <= 'Z') { System.out.print( c); } } }//end main() }//end class /* sample run: * Enter some text: DOWELL */ Dorks are Only Women when Entirely Late to Lunch Questions? 107 Fall 2010 Page 1 Questions? Last Time: Scope Today: - Demo program to manipulate characters on an input line - Classes Example: Developing a Date class: What do we need to keep of? track How might this be used? See code developed in class. For each new idea we will have a demo program, and we will add the code to the class so that the demo program works. DateFirstTryDemo: Ideas: Declare instances; Set instance variables (aka members, or class variables) using the "dot" notation. Think of making an instance like a "stamp", with values that can be filled in. Problem: Can set invalid values DateSecondTryDemo: Ideas: Making instance variables private; get (accessor) and set (mutator) methods; methods can change multiple values at once; method overloading Problem: Would like to create an instance and set its values in one step, rather than two. Can still enter invalid values, unless we add errorchecking code. DateThirdTryDemo: Ideas: Constructors are special code used to create and initialize instances. Constructors can also be chained to another constructor using this 107 Fall 2010 Page 2 this Problems: Output of an instance is not consistent; Want to be able to compare instances based on their contents; Would like to be able to make a copy of an object. DateFourthTryDemo: Ideas: Handy utility methods: toString: gives nicely formatted output equals: allows comparing two instances copy constructor: allows making a copy based on an existing object 107 Fall 2010 Page 3
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

UCF - COP - 2271
09-24 Class Notes CS 107Friday, September 24, 2010 3:50 PMAnnouncements: If you didn't get a flash drive in class last time, come to my office to get one. Midterm #1 next week (Yay) both in lab (T/W) and in class (Wed).Questions?Last Time: Classes: Da
UCF - COP - 2271
09-27 Class Notes CS 107Monday, September 27, 2010 3:50 PMAnnouncements: Midterm #1 this week both in lab (T/W) and in class (Wed).Questions?Last Time: Classes: Date exampleToday: .continuing in developing the Date example furtherRemember memory mod
UCF - COP - 2271
10-01-10 Class Notes CS 107Friday, October 01, 2010 3:57 PMAnnouncements: See the solution to the test posted on web site Questions? Last Time: Objects &amp; classes: developing the Date example Today: Example of some cool software: Processing.org - Let's y
UCF - COP - 2271
10-04 Class Notes CS 107Monday, October 04, 2010 12:08 PMAnnouncements: Program #3 solution has been posted online. Midterm #1 solution has also been posted online, along with recent corrections. Questions? Last Time: Program #3 solution discussion, Som
UCF - COP - 2271
10-08 Class Notes CS 107Friday, October 08, 2010 2:44 PMAnnouncements: Be sure to put your code in a zip file before submitting it. Blackboard does some weird things sometimes otherwise, renaming random variables to &quot;xx&quot; Questions? Last Time: Objects an
UCF - COP - 2271
10-11 Class Notes CS 107Monday, October 11, 2010 2:44 PMAnnouncements: Program #4 has been posted online, and is due a week from Saturday, at midnight Questions? Last Time: Using classes for drawing shapes; Handling mouse button presses Today: Review of
UCF - COP - 2271
10-13 Class Notes CS 107Wednesday, October 13, 2010 1:00 PMAnnouncements: Questions? Last Time: Description of program #4, Idea of arrays Today: Syntax for arrays, Arrays examples Syntax for arrays: Rather than having to store multiple values of the sam
UCF - COP - 2271
10-15 Class Notes CS 107Friday, October 15, 2010 3:52 PMAnnouncements: We are ending week 8, more than half way through the semester!Questions?Last Time: Arrays: declaration, syntax, passing as parameters, usage in counting input characters Today: Exa
UCF - COP - 2271
10-18 Class Notes CS 107Monday, October 18, 2010 2:09 PMAnnouncements: See updates online to program #4 description. See also sample video. Note that deadline has been extended to Tuesday 10/26 at noon.Questions? Last Time: Making an array of Square; B
UCF - COP - 2271
10-20 Class Notes CS 107Wednesday, October 20, 2010 2:40 PMAnnouncements: Sorry, but grades not yet ready to be posted. Maybe tonight? Remember that midterm #2 is next week, in lab, and in class next Friday Questions? Last Time: Mostly comments on progr
UCF - COP - 2271
10-21 Class Notes CS 107Friday, October 22, 2010 4:04 PMAnnouncements: Midterm #2 next week (in class Friday), program due Tuesday noon Questions? Last Time: Array examples Today: More array examples, Recursion IntuitionArrays Examples: Dynamic Array W
UCF - COP - 2271
10-25 Class Notes CS 107Monday, October 25, 2010 2:01 PMAnnouncements: In-lab portion of midterm #2 will be this week during your normally scheduled lab time. The in-class portion has been delayed from Friday until Monday, a week from today. Questions?
UCF - COP - 2271
10-27 Class Notes CS 107Wednesday, October 27, 2010 12:39 PMAnnouncements: - Remember in-class portion of midterm #2 in class on Monday. - Solution to program #4 posted onlineQuestions? Last Time: Recursion intuition and trace mechanisms of calculating
UCF - COP - 2271
10-29 Class Notes CS 107Friday, October 29, 2010 12:30 PMAnnouncements: - Remember in-class portion of midterm #2 will be on Monday.Questions?Last Time: Recursion examples &amp; traces Today: The maze problem: combining arrays with recursionA detailed ex
UCF - COP - 2271
11-03 Class Notes CS 107Wednesday, November 03, 2010 2:52 PMAnnouncements: - Results for the in-class portion of midterm #2 have been mailed around. Solution to the in-class portion is posted online. Min 40, Avg 62, Max 94 Questions? Last Time: Midterm
UCF - COP - 2271
11-08 Class Notes CS 107Monday, November 08, 2010 2:01 PMAnnouncements: - See web site for description of program #5 Questions? Last Time: - Prof. John Lillis went through an example of using arrays in Java Today: - Discussion of program #5 - Finish the
UCF - COP - 2271
11-10 Class Notes CS 107Wednesday, November 10, 2010 2:58 PMAnnouncements: See changes to program #5Questions?Last Time: Maze problem, comments on programToday: Finish the maze problem Comments on program #5 Linked List example (time permitting.)/*
UCF - COP - 2271
11-10 Linked Lists CS 107Wednesday, November 10, 2010 4:49 PM107 Fall 2010 Page 1107 Fall 2010 Page 2107 Fall 2010 Page 3
UCF - COP - 2271
11-12 Class Notes CS 107Friday, November 12, 2010 4:00 PMAnnouncements: See latest changes to program, regarding delimiters. Program submission has been enabled in Blackboard for Program #5Questions? Last Time: program discussion, linked listsToday: P
UCF - COP - 2271
11-12 Linked Lists CS 107Friday, November 12, 2010 4:49 PM107 Fall 2010 Page 1107 Fall 2010 Page 2107 Fall 2010 Page 3
UCF - COP - 2271
11-15 Class Notes CS 107Monday, November 15, 2010 2:15 PMAnnouncements: Remember the program is due tomorrow. Questions? Last Time: Linked list intuition Today: Code to implement a linked list; Recursively reversing a linked list107 Fall 2010 Page 110
UCF - COP - 2271
11-15 Reverse linked list recursivelyMonday, November 15, 2010 2:20 PM107 Fall 2010 Page 1
UCF - COP - 2271
11-17 Class Notes CS 107Wednesday, November 17, 2010 2:50 PMAnnouncements: See posting for program #6, BeatBox Questions? Last Time: Linked list example, started on example to reverse linked list Today: program #6 description, continue linked list examp
UCF - COP - 2271
11-19 Class Notes CS 107Friday, November 19, 2010 4:03 PMAnnouncements: See updates to program online Questions? Last Time: Not much, really! Today: No matter what, better than last class. - Program updates description, installation hints - recursively
UCF - COP - 2271
11-19 Reverse linked list recursivelyFriday, November 19, 2010 2:20 PM107 Fall 2010 Page 1
UCF - COP - 2271
11-22 Class Notes CS 107Monday, November 22, 2010 2:06 PMAnnouncements: It is drizzling outside.Questions? How to pick a file: String newFileName = FileChooser.pickAFile();Last Time: Comments on last program; Recursively reversing a linked list Today:
UCF - COP - 2271
11-24 Class Notes CS 107Monday, November 22, 2010 2:06 PMAnnouncements: In-lab portion of the final: you will again be given &quot;driver&quot; code and you will have to create the class so that it compiles. Questions?Last Time: Comments on last program; Recursi
UCF - COP - 2271
12-01 Class Notes CS 107Wednesday, December 01, 2010 12:57 PMAnnouncements: Grades If you have issues with any of your grades, please first follow up with the TA who graded that assignment/project/lab/quiz. To see who graded what, please visit the Lab &amp;
UCF - COP - 2271
12-01 Programming Languages, CS 107Monday, November 29, 2010 2:52 PM107 Fall 2010 Page 1107 Fall 2010 Page 2107 Fall 2010 Page 3
UCF - COP - 2271
12-03 Class Notes CS 107Friday, December 03, 2010 2:00 PMAnnouncements: Before midnight tonight (I promise) see grades updates on the course web site at: http:/logos.cs.uic.edu/107/grades/index.html Questions? Last Time: Description of final exam; Brief
UCF - COP - 2273
08-22 Class Notes CS 107Monday, August 22, 2011 12:58 PMWelcome to CS 107! Course web site: bit.ly/cs107 (which redirects to http:/sites.google.com/site/cs107 ) Introductions: Your instructor Your TAs: Shuyang Lin, Geli Fei [See the &quot;Lab &amp; TA&quot; link on t
UCF - COP - 2273
08-24 Class Notes CS 107Wednesday, August 24, 2011 1:05 PMAnnouncements: 1. Course web site is at: bit.ly/uic107 2. Class recordings are on Blackboard 3. There are no lab makeups unless you can go to a subsequent lab the same day, there is space, and th
UCF - COP - 2273
08-26 Class Notes CS 107Friday, August 26, 2011 3:47 PMAnnouncements: 1. Everyone must register their iClicker using Blackboard. After you login, find the &quot;Tools&quot; option on the left, then find &quot;Register your iClicker Remote&quot; [See image below] iClicker r
UCF - COP - 2273
08-29 Class Notes CS 107Monday, August 29, 2011 8:47 AMAnnouncements: - If you are joining the class for the first time today, the course web site is: http:/bit.ly/uic107 Carefully review the information on this site, particularly the syllabus on the ma
UCF - COP - 2273
08-31 Class Notes CS 107Wednesday, August 31, 2011 9:57 AMAnnouncements: 1. If you are joining the class for the first time today after passing the CS 101 competency exam, the course web site is: http:/bit.ly/uic107 2. See the videos of last week's lect
UCF - COP - 2273
08-31 Simple Java Programs CS 107Wednesday, August 24, 2011 12:57 PMCS 107 Fall 2011 Page 1CS 107 Fall 2011 Page 2CS 107 Fall 2011 Page 3CS 107 Fall 2011 Page 4CS 107 Fall 2011 Page 5CS 107 Fall 2011 Page 6
UCF - COP - 2273
09-02 Class Notes CS 107Friday, September 02, 2011 3:31 PMAnnouncements: - The link for &quot;Lecture Notes&quot; on the course web site has changed. - Note the links on the main page for the ASCII table and the Precedence table char firstInitial = 'D'; Remember:
UCF - COP - 2273
09-07 Class Notes CS 107Wednesday, September 07, 2011 2:41 PMAnnouncements: - Lab work is mean to be done during lab. It is posted ahead of time for you to be able to familiarize yourself with it only, not for you to do all the work ahead of time. Quest
UCF - COP - 2273
09-07 if statement in Java, CS 107Wednesday, August 31, 2011 12:35 PMCS 107 Fall 2011 Page 1CS 107 Fall 2011 Page 2CS 107 Fall 2011 Page 3CS 107 Fall 2011 Page 4CS 107 Fall 2011 Page 5CS 107 Fall 2011 Page 6
UCF - COP - 2273
09-09 Class Notes CS 107Friday, September 09, 2011 3:46 PMAnnouncements: I updated the sample code you can use for program #2 Questions? Last Time: if statements Today: if statements, continued The switch statement: a shortcut to multiple if-else statem
UCF - COP - 2273
09-09 if statement in Java, CS 107Wednesday, August 31, 2011 12:35 PMCS 107 Fall 2011 Page 1CS 107 Fall 2011 Page 2CS 107 Fall 2011 Page 3CS 107 Fall 2011 Page 4CS 107 Fall 2011 Page 5
UCF - COP - 2273
09-12 Class Notes CS 107Monday, September 12, 2011 1:16 PMAnnouncements: - Note new posting for lab this week - Java API link updated on website main page - I really do recommend you understanding the sample code given as part of program #2. Questions?
UCF - COP - 2273
09-14 Class Notes CS 107Wednesday, September 14, 2011 2:23 PMAnnouncements: - Program #2 is due tomorrow evening at 11:59 pm. Note that sample code has been updated online. How far along are you on your program? A - What program? B - just a bit C - at l
UCF - COP - 2273
09-16 Class Notes CS 107Friday, September 16, 2011 3:48 PMAnnouncements: Program #3 has been posted (still under construction) How did you do on the program? A: didn't get it B: Got just a part C: Got most of it D: Should get full credit E: Did extra cr
UCF - COP - 2273
09-19 Class Notes CS 107Monday, September 19, 2011 11:36 AMAnnouncements: 1. Program #1 has been graded. Check Blackboard for your grades. See the outstanding Program #1 examples. 2. Be sure to look at the program grading criteria in the syllabus before
UCF - COP - 2273
09-21 Class Notes CS 107Wednesday, September 21, 2011 10:15 AMAnnouncements: 1. See the Programs page for links to solutions to program #2 In particular see the version using methods, aligning the output in columns 2. See the Piazza posting for comments
UCF - COP - 2273
09-23 Class Notes CS 107Friday, September 23, 2011 2:47 PMAnnouncements: See updated description posted for program #3Questions? Last Time: Program swap.java used to swap the value of two variables Today: Parameter scope, overloading, classes intuition
UCF - COP - 2273
09-23 Scope example, CS 107Monday, September 19, 2011 2:08 PMCS 107 Fall 2011 Page 1CS 107 Fall 2011 Page 2
UCF - COP - 2273
10-03 Class Notes CS 107Monday, October 03, 2011 12:12 PMAnnouncements: Solution to in-class and in-lab midterm1 were posted Thursday. Grades to the in-class portion were emailed around earlier this afternoon. Program #2 has been graded, with comments p
UCF - COP - 2273
10-05 Class Notes CS 107Wednesday, October 05, 2011 1:08 PMAnnouncements: See a partial solution to the Tic-Tac-More problem. In particular pay attention to the implementation of the board and how this affects the adjacency checking. Think of how using
UCF - COP - 2273
10-07 Class Notes CS 107Friday, October 07, 2011 3:08 PMAnnouncements: Questions? Last Time &amp; Today: From last time see the date classes developed in lecture and posted online. Problems and [solutions], not necessarily in the following order. a. [Done]
UCF - COP - 2273
10-10 Class Notes CS 107Monday, October 10, 2011 3:58 PMAnnouncements: Program 4 has been posted, and is due in two weeks from yesterday. Take a look!Questions?Last Time: Objects and classes. Today: More on Objects and Classes (continued from last tim
UCF - COP - 2273
10-12 Class Notes CS 107Wednesday, October 12, 2011 2:26 PMAnnouncements: I added a link online under the Lab,TA,Tutoring page for the MERRP Supplemental Instruction (SI) resource. MERRP is on the 12th floor of SEO. I have to leave immediately after cla
UCF - COP - 2273
10-14 Class Notes CS 107Friday, October 14, 2011 4:06 PMAnnouncements: Questions?Last Time: Example of Objects &amp; Classes: EmployeeToday:Sample midterm #2 exam: When you create a class (so that the &quot;driver&quot; code works), you will likely need: 1. Instan
UCF - COP - 2273
10-17 Class Notes CS 107Monday, October 17, 2011 2:44 PMAnnouncements: 1. Make sure to sign up for advising this week. 2. Program #4 (WordLine): Remember that if input is invalid for any reason, you disable a line of characters and also deduct a point f
UCF - COP - 2273
10-19 Class Notes CS 107Wednesday, October 19, 2011 2:21 PMAnnouncements: Next week we have Midterm #2 in class Wed. and during lab Program #4 due this Sunday Questions? Last Time: Examples of arrays: counting charactersToday: Comments on Program #4: 1
UCF - COP - 2273
10-21 Class Notes CS 107Friday, October 21, 2011 1:39 PMAnnouncements: Next week we have Midterm #2 in class Wed. and during lab Program #4 due this Sunday Arrays Codelab problems extended until Sat. 10/22 at 11:59pm Questions? Last Time: Comments on pr
UCF - COP - 2273
10-24 Class Notes CS 107Monday, October 24, 2011 2:08 PMAnnouncements: 1. Midterm #2 in class Wed. and during your regular lab Tues/Wed this week. 2. The exam will only cover material up through what we discuss today in class, so most of the recursion p
UCF - COP - 2273
10-28 Class Notes CS 107Friday, October 28, 2011 4:00 PMAnnouncements: Program #5 should be out this weekend Grades have been posted online. Drop deadline is TODAY. Questions?Last Time: Midterm Exam Time before that: Arrays: Selection Sort Today: Array
UCF - COP - 2273
10-31 Class Notes CS 107Monday, October 31, 2011 2:31 PMAnnouncements: 1. Office Hours Wed shifted to 1:30. No office hours Fri. 2. Class Friday will be a video lecture. See the class notes entry on Friday before class for details. 3. Program #5 has bee
UCF - COP - 2273
11-02 Class Notes CS 107Tuesday, November 01, 2011 11:02 AMAnnouncements: No office hours Friday (11/4). Class on Friday will combine some online notes with part of an online video lecture. See the Friday notes (already posted) for this.Questions?Last