Name: Checked: Access the Java API at the link above. Why is it abbreviated to Java SE (what does the SE stand for)?

Similar documents
Lab 5. Name: Checked: Part A. Focus on Strings

Name: Checked: Access the Java API at the link above. Why is it abbreviated to Java SE (what does the SE stand for)?

Lab 4. Name: Checked: Objectives:

Mr. Monroe s Guide to Mastering Java Syntax

AP Computer Science Unit 1. Writing Programs Using BlueJ

Using Classes and Objects

CSC 1051 Algorithms and Data Structures I. Final Examination May 12, Name

Full file at

Computational Expression

COMP 202. Built in Libraries and objects. CONTENTS: Introduction to objects Introduction to some basic Java libraries string

Formatting Output & Enumerated Types & Wrapper Classes

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 11, Name: KEY

Name: Checked: Preparation: Use variables to output a personalized message

Lab 6. Name: Checked:

CSC 1051 Data Structures and Algorithms I

CSC 1051 Algorithms and Data Structures I. Final Examination May 12, Name: KEY. Question Value Score

AP Computer Science Unit 1. Writing Programs Using BlueJ

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 26, Name: Key

A variable is a name for a location in memory A variable must be declared

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

Using Classes and Objects. Chapter

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 7, Name:

Introduction to Computer Science Unit 2. Exercises

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

AP Computer Science Unit 1. Programs

Introduction to Java Unit 1. Using BlueJ to Write Programs

CSCI 2010 Principles of Computer Science. Basic Java Programming. 08/09/2013 CSCI Basic Java 1

Algorithms and Conditionals

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 25, Name: KEY A

CSCI 2010 Principles of Computer Science. Data and Expressions 08/09/2013 CSCI

Programming with Java

Data Representation Classes, and the Java API

Introduction to Java Applications

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

Input. Scanner keyboard = new Scanner(System.in); String name;

Programming Exercise 7: Static Methods

Name: Checked: Preparation: Response time experiment accessing the system clock

3 CREATING YOUR FIRST JAVA APPLICATION (USING WINDOWS)

Section 2.2 Your First Program in Java: Printing a Line of Text

Chapter 4: Conditionals and Loops

CMSC 150 INTRODUCTION TO COMPUTING LAB WEEK 3 STANDARD IO FORMATTING OUTPUT SCANNER REDIRECTING

Program Development. Java Program Statements. Design. Requirements. Testing. Implementation

Chapter 3. Selections

2: Basics of Java Programming

Getting started with Java

Welcome to the Using Objects lab!

Chap. 3. Creating Objects The String class Java Class Library (Packages) Math.random() Reading for this Lecture: L&L,

Name: Checked: Preparation: Use variables to output a personalized message

Welcome to the Using Objects lab!

COSC 123 Computer Creativity. Introduction to Java. Dr. Ramon Lawrence University of British Columbia Okanagan

File I/O Array Basics For-each loop

CMPT 125: Lecture 3 Data and Expressions

Multiple Choice Using Object Methods

COMP-202 Unit 2: Java Basics. CONTENTS: Using Expressions and Variables Types Strings Methods

Program Fundamentals

AP Computer Science A

Object-Oriented Programming

Software and Programming 1

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 3: SEP. 13TH INSTRUCTOR: JIAYIN WANG

boolean, char, class, const, double, else, final, float, for, if, import, int, long, new, public, return, static, throws, void, while

S8352: Java From the Very Beginning Part I - Exercises

Objectives of CS 230. Java portability. Why ADTs? 8/18/14

M105: Introduction to Programming with Java Midterm Examination (MTA) Makeup Spring 2013 / 2014

Hello World. n Variables store information. n You can think of them like boxes. n They hold values. n The value of a variable is its current contents

Name: Checked: Preparation: Response time experiment accessing the system clock

COMP Primitive and Class Types. Yi Hong May 14, 2015

Java API: Math, Wrapper Classes, StringBuffer Random Data Quiz2

CS 152: Data Structures with Java Hello World with the IntelliJ IDE

Full file at

What did we talk about last time? Math methods boolean operations char operations

CSC 1051 Algorithms and Data Structures I. Midterm Examination October 9, Name: KEY

Data and Expressions. Outline. Data and Expressions 12/18/2010. Let's explore some other fundamental programming concepts. Chapter 2 focuses on:

Methods CSC 121 Fall 2016 Howard Rosenthal

Basic Operations jgrasp debugger Writing Programs & Checkstyle

AP Computer Science A Unit 2. Exercises

Object-Based Programming. Programming with Objects

CSC 1051 Algorithms and Data Structures I. Midterm Examination February 24, Name: KEY 1

Methods CSC 121 Spring 2017 Howard Rosenthal

We now start exploring some key elements of the Java programming language and ways of performing I/O

Learning objectives: Objects and Primitive Data. Introduction to Objects. A Predefined Object. The print versus the println Methods

CSC Algorithms and Data Structures I. Midterm Examination February 25, Name:

Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Lab5. Wooseok Kim

Important Java terminology

St. Edmund Preparatory High School Brooklyn, NY

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

Computational Expression

Console Input and Output

CS11 Java. Fall Lecture 1

Constants. Why Use Constants? main Method Arguments. CS256 Computer Science I Kevin Sahr, PhD. Lecture 25: Miscellaneous

Faculty of Science COMP-202A - Introduction to Computing I (Fall 2009) - All Sections Midterm Examination

Algorithms in everyday life. Algorithms. Algorithms and Java basics: pseudocode, variables, assignment, and interactive programs

Flow of Control. Chapter 3

private static final char[] Alphabet = "abcdefghijklmnopqrstuvwxyz".tochararray();

Java Programming Fundamentals - Day Instructor: Jason Yoon Website:

A very simple program. Week 2: variables & expressions. Declaring variables. Assignments: examples. Initialising variables. Assignments: pattern

Claremont McKenna College Computer Science

Example: Tax year 2000

Basics of Java Programming

5/3/2006. Today! HelloWorld in BlueJ. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont.

Transcription:

Lab 5 Name: Checked: Objectives: Learn about the Java API Practice using Math, Random, String, and other classes from the Java API Practice writing code to do basic String processing Preparation: Complete all exercises in this preparation. Submit the program from Exercise 3 through blackboard and bring the handout with you to check with your partner in the lab. Preparation - Exercise 1: Exploring the Java API Java derives much of its power from the many classes already defined in the Java Application Programming Interface (aka Java API). But how are we ever to learn and use these classes if we don t know about them? Any textbook on Java can only begin to cover these classes and the methods defined in them. For a complete listing of these classes and methods you will need to visit the Java 8 API: https://docs.oracle.com/javase/8/docs/api/ Although the information covered in the textbook is sufficient to complete all of the programming and lab assignments for this course, you may find yourself wishing for a better class or method, or just more information on a known class or method. The Java API website (see link above) is the place to find that information! All class definitions are found in the Java API Specifications. API stands for application programming interfaces and is more simply a set of existing building blocks for programmers to use to develop programs. The API is divided into packages. Packages contain classes. Classes contain methods. Methods contain Java code. We use methods in our Java programs. Access the Java API at the link above. Why is it abbreviated to Java SE (what does the SE stand for)? The API Specifications page is divided into 3 sections. The upper left-hand section is used to navigate to different packages (collections of classes). Below this section is a listing of all Java classes in alphabetical order. The largest section of the page displays details about a selected package or class. At present (before selecting a class or package), all Java packages are listed. Scroll down the main display section of the page until you find the java.lang package. What does it provide? The java.lang package is automatically provided/imported for all Java programs. Find the java.util package. What does it provide? _

Clicking on any package will get a detailed description of the package. Click on java.util. This detailed description provides 5 summaries of items contained in this package. List the four summaries which are written in the orange background: For now, we are interested in the Class Summary. This summary lists the classes that are contained in the package. The left column contains the name of the class. Notice that all class names start with a capital letter. The right column contains the description of the class. Scroll down until you find the Scanner class. What does it contain? Click on the Scanner class. You will get a detailed description of what is contained in the Scanner class. Notice that the package name - java.util - appears (in small print) above the class name. Scroll down a few pages to see the two summaries available for the Scanner class. What are they? Scroll down to the Method Summary. The left column indicates the type of information the method will return. The right column contains the method name (underlined), the parameters (in parentheses) and a brief description of the method. Examine the first method listed for the Scanner class. It is the close() method. The left column contains void, indicating that this particular method does not return anything. All methods have a return type, even if the return type is simply void. The right column tells us the name of the method is close and the empty () indicates that this method does not require any parameters to be used. The name of the method is located immediately before the open parenthesis. All methods require parentheses. Based on this information, you could invoke this method using the programming statement scan.close(); where scan is an already declared and initialized Scanner object. Let s look at another Scanner method. Locate the method findinline(). As you can see, there are two versions of this method, both of which return a String. Look at the version with a parameter of type String named pattern. The definition tells us that this method attempts to find the next occurrence of a pattern constructed from the specified string, ignoring delimiters. Based on this information, you could invoke this method using the programming statement String result = scan.findinline("xx"); where scan is an already declared and initialized Scanner object. The variable result will then reference the String produced/returned by the method. Click on the name of the Scanner method findinline(). This will provide you additional information about the method. Notice the line at the top of the page: public String findinline( String pattern)

This line is known as the method header. This is the same information that we saw in the method summary with the added word public. The word public indicates that this method is publically accessible so that we can use it. The return type follows and is a String. A method only ever returns one type. The word located immediately before the parentheses is the name of the method. Everything listed inside of the parentheses are the parameter specifications. Choose your browser s back button to return to the Scanner class s Method Summary. Let s look at one more method of the Scanner class. To date, we have used the nextint() method to capture integer input from the user. Locate the nextint() method. This method is interesting because it is listed twice. The first appearance of this method does not specify a parameter and the second appearance of the method does. Note that both nextint() methods return an integer. If you have a Scanner object declared and initialized called scan and an integer declared and initialized call num, the nextint() method could be invoked one of two ways: int inputa = scan.nextint(); int inputb = scan.nextint( num ); Ok now let s look at another class the String class. To locate the String class, use the left hand alphabetical listing of classes. What package is the String class part of? Under the String class Method Summary, locate the String method trim(). For this method, provide the following: Method return type: Required parameters for the method: Purpose of the method: What would be displayed as a result of executing the following programming statements? String fname = "Ben ", lname = "Franklin"; System.out.println( fname + lname); System.out.println( fname.trim() + lname); There are so many great methods to be used from the String class that you will surely return to this class s API many times! But before you review more or the String methods, let s take a look a look at a special type of class. The Math class is a class that only contains static methods. First, locate the Math class. In which Java package can you find the Math class? Scroll down to the Method Summary section of the Math class. Examine the first method called abs(). The left column contains static double. The word double tells us that the return type of the method is double. But what does static mean? Static tells us that this method does not act on an object from the Math class, but that we can just call this method whenever needed. First, answer these questions about abs():

Method return type: Required parameters for the method: Purpose of the method: Because abs() is a static method, to invoke the method you would use the class name and then the method. For example, executing System.out.println( Math.abs( 396-400) ); would result in 4. Review the Math method ceil() and answer these questions: Method return type: Required parameters for the method: Purpose of the method: Example of invoking the method: Summary - What have you learned? Understand effects of binary data representation and the Java data types Explore automatic conversions, casts, and the Math class Understand the difference between String and char Explore the char type and Unicode representation Learn about some and String methods The Java API is divided into packages Packages contain classes Class names start with a capital letter Classes contain methods. The name of the method starts with a lowercase letter and is directly to the left of the open parenthesis All methods require parentheses for their parameters Parameters are specified with a type followed by an identifier All methods have a return type. The return type of the method is located directly to the left of the method name

Preparation Exercise 2: jgrasp Interactions: String methods String word = "evolve" word.length() word.charat(1) word.charat(0) word.touppercase() word.replace("e","e") word.replaceall("e","e") word word word String mutation = word.replaceall("e","") mutation word word.substring(3) word.substring(2,4) String answer = "Yes" answer == "yes" answer == "Yes" answer.equals("yes") answer.equalsignorecase("yes") answer.charat(0) == "y" answer.charat(0) == 'y' answer.charat(0) == 'y' 'Y' answer.charat(0) == 'y' answer.charat(0) == 'Y' int n = 0; while (n < word.length()) { System.out.print(word.charAt(n) + "*"); n++;

Preparation Exercise 3: Modify this code snippet 1. Consider the following code snippet: String word = "evolve"; int n = 0; while (n < word.length()) { System.out.print(word.charAt(n) + "*"); n++; Modify it so that it prints each letter in a separate line with a $ in front of it and three asterisks after. So the output should be: $e*** $v*** $o*** $l*** $v*** $e*** 2. Be sure to test your code so that it produces the desired output. You can do this in the interactions pane or write a complete Java program to test it. 3. In the submission box on blackboard, copy/paste the code snippet that produces the desired output as described above. 4. You do NOT need to submit anything else or attach any files for this preparation, but bring this exercise worksheet to check with your partner in class. Partner name: Signature:

Part A. Focus on Strings 1. Write a Java program Initials.java that asks your first name and last name and then prints a greeting using your initials. For example, an interaction might look like this: Please enter your first name: Grace Please enter your last name: Hopper Great meeting you, G.H., have a nice day. 2. Create a Java program AllCaps.java that asks your name and then prints it out one letter per line, with all letters printed in UPPERCASE. For example, an interaction might look like this: Please enter your name: Grace Hello... $ G *** $ R *** $ A *** $ C *** $ E *** Hint: Use the code that you submitted for the preparation as a basis. To capitalize the name, try something like this: firstname = firstname.touppercase(); 3. Let s try some more code snippets (Use jgrasp interactions pane.) String funds = "$402.63" funds.length() funds.charat(1) funds.charat(0) funds.charat( ) = 3 (fill in a number to get last char in String) funds.substring(1) funds (note how it did not change) funds = funds.substring(1) funds (this changed funds) In general, what is the effect of.substring(1)? In general, the last character in a String will have index

Part B. Focus on numbers 1. Practice using the NumberFormat class. Note: For classes that are not in java.lang, we need to issue import directive: import java.text.numberformat; NumberFormat money = NumberFormat.getCurrencyInstance() NumberFormat percent = NumberFormat.getPercentInstance() double cash = 3.8; double rate = 0.028; money.format(cash) percent.format(rate) 2. Use the DecimalFormat class to control printing: import java.text.decimalformat; DecimalFormat fmt = new DecimalFormat("0.####"); DecimalFormat fmtalt = new DecimalFormat(".####"); fmt.format(math.pi) fmtalt.format(math.pi) fmt.format(math.pi/4) fmtalt.format(math.pi/4) 3. Practice using the Random class. Be sure to enter each expression repeatedly and note the values generated. Note: Random is also not in java.lang, so you need the import directive: import java.util.random; Random rand = new Random() rand.nextint(4) // repeat a few times (use up-arrow on keyboard to avoid having to re-enter the Java code)... Range of values for rand.nextint(4) rand.nextfloat()... Range of values for rand.nextfloat() Ø Similarly, experiment with the following expressions and note the range of values for each one: Range of values for rand.nextint(6) + 1 Range of values for rand.nextint(50) + 100 Range of values for rand.nextint(10) 5

Ø Formulate expressions to produce each of the following ranges. Be sure to test each one to make sure you are getting values in the range. Range Expression 0 to 12 1 to 20 15 to 20-10 to 0 a to z A to Z 4. Write a Java program RandomJackpot.java that prints a random winning number in the range 100000-999999 and followed by a random monetary amount for the winner of the jackpot in the range $2,000-$3,000,000. For example, the interaction could look like this Congratulations! you have the winning ticket: 820673 You have won $501,790.00!!!

Part C. Implementing a customer service simulation 1. Download the code for QueueingTheory_Start.java from the course website, reproduced below. Observe how it simulates a queue of customers in a queue to be served. //******************************************************************** // QueueingTheory_Start.java Author: M A Papalaskari // // CSC 1051 Lab 5: Starter code for Lab 5 and Project 5 *** //******************************************************************** import java.util.*; public class QueuingTheory_Start { public static void main(string[] args) { //----------------------------------------------------------------- // Simulates a customer service queue using a Java String. //----------------------------------------------------------------- Random rand = new Random(); // randomized arrivals (and more?) String queue = ""; // queue starts out empty int minute = 1; // unit of time is minutes double arrivalprobability = 0.25; // prob of customer arrival // on any given minute (try different values!) int processingtime = 4; // each customer takes 4 minutes char personletter = 'A'; // symbolizes each customer System.out.println("\n\n***************************************"); System.out.println("Call center simulation."); System.out.println("Calls placed with probability per minute: " + arrivalprobability); System.out.println("Call duration: " + processingtime); // main loop of simulation - lasts 60 minutes while (minute <= 60) { // randomly decide if a customer has arrived and add to queue if (rand.nextfloat() < arrivalprobability) { // add as many symbols as processingtime (minutes) required int n = 0; while (n < processingtime){ queue += personletter; n++; personletter++; // change symbol for next customer // display the current state of the queue System.out.println(minute + " >>> \t" + queue); // serve customer at front of queue (if any) for 1 minute if (queue.length() > 0) queue = queue.substring(1); minute++; // tick tock... as time goes by

2. Change the length of the simulation to 30 minutes and experiment with different the values of the following variables to observe the results arrivalprobability (try smaller and larger values between 0 and 1) processingtime (try smaller and larger integer values) personletter (try a or other characters) 3. Modify the code to display more details, including the queue length and the contents of the queue enclosed in <<< and >>>. The output should look as follows. *************************************** Call center simulation. Calls placed with probability per minute: 0.25 Call duration: 4 minute 1 queue length 0 queue contents: <<<>>> minute 2 queue length 0 queue contents: <<<>>> minute 3 queue length 0 queue contents: <<<>>> minute 4 queue length 0 queue contents: <<<>>> minute 5 queue length 0 queue contents: <<<>>> minute 6 queue length 4 queue contents: <<<AAAA>>> minute 7 queue length 3 queue contents: <<<AAA>>> minute 8 queue length 2 queue contents: <<<AA>>> minute 9 queue length 1 queue contents: <<<A>>> minute 10 queue length 0 queue contents: <<<>>> minute 11 queue length 0 queue contents: <<<>>> minute 12 queue length 0 queue contents: <<<>>> minute 13 queue length 0 queue contents: <<<>>> minute 14 queue length 4 queue contents: <<<BBBB>>> minute 15 queue length 3 queue contents: <<<BBB>>> minute 16 queue length 2 queue contents: <<<BB>>> minute 17 queue length 1 queue contents: <<<B>>> minute 18 queue length 0 queue contents: <<<>>> minute 19 queue length 0 queue contents: <<<>>> minute 20 queue length 4 queue contents: <<<CCCC>>> minute 21 queue length 3 queue contents: <<<CCC>>> minute 22 queue length 2 queue contents: <<<CC>>> minute 23 queue length 1 queue contents: <<<C>>> minute 24 queue length 0 queue contents: <<<>>> minute 25 queue length 0 queue contents: <<<>>> minute 26 queue length 4 queue contents: <<<DDDD>>> minute 27 queue length 3 queue contents: <<<DDD>>> minute 28 queue length 2 queue contents: <<<DD>>> minute 29 queue length 1 queue contents: <<<D>>> minute 30 queue length 0 queue contents: <<<>>> 3. Examine the sample output above and answer these questions: How many idle minutes? (minutes the queue was empty) What is the maximum length of the queue? What is the average length of the queue in the last 10 minutes?

Lab 5 Comments Name: Comments on this lab, please: What was the most valuable thing you learned in this lab? What did you like best about this lab? Was there any particular problem? Do you have any suggestions for improving this lab as an effective learning experience?