Full file at

Similar documents
Chapter 2 Using Data. Instructor s Manual Table of Contents. At a Glance. Overview. Objectives. Teaching Tips. Quick Quizzes. Class Discussion Topics

Chapter 2 Using Data. Instructor s Manual Table of Contents. At a Glance. A Guide to this Instructor s Manual:

Chapter 2: Using Data

Chapter 2: Using Data

Chapter 02: Using Data

Full file at

Visual C# Instructor s Manual Table of Contents

Chapter 2 Working with Data Types and Operators

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

Chapter 2 Basic Elements of C++

ECE 122 Engineering Problem Solving with Java

Chapter 2: Using Data

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

Programming in C++ 6. Floating point data types

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

Data and Variables. Data Types Expressions. String Concatenation Variables Declaration Assignment Shorthand operators. Operators Precedence

Course PJL. Arithmetic Operations

Introduction to Programming Using Java (98-388)

12/22/11. Java How to Program, 9/e. public must be stored in a file that has the same name as the class and ends with the.java file-name extension.

Primitive Data Types: Intro

Computational Expression

CS112 Lecture: Primitive Types, Operators, Strings

CMPT 125: Lecture 3 Data and Expressions

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

Basics of Java Programming

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

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

CS313D: ADVANCED PROGRAMMING LANGUAGE

MODULE 02: BASIC COMPUTATION IN JAVA

Reserved Words and Identifiers

Programming Lecture 3

IT 374 C# and Applications/ IT695 C# Data Structures

Chapter 2 Elementary Programming

JAVA Programming Fundamentals

Exam 1 Prep. Dr. Demetrios Glinos University of Central Florida. COP3330 Object Oriented Programming

Values, Variables, Types & Arithmetic Expressions. Agenda

Types and Expressions. Chapter 3

CSc 10200! Introduction to Computing. Lecture 2-3 Edgardo Molina Fall 2013 City College of New York

Programming with Java

CS110: PROGRAMMING LANGUAGE I

Getting started with Java

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

Chapter 2: Basic Elements of C++ Objectives. Objectives (cont d.) A C++ Program. Introduction

Chapter 2: Data and Expressions

Information Science 1

Java Programming Fundamentals. Visit for more.

Lecture Notes. System.out.println( Circle radius: + radius + area: + area); radius radius area area value

Lecture Set 2: Starting Java

Lecture Set 2: Starting Java

C++ Programming: From Problem Analysis to Program Design, Third Edition

Chapter 3 Structure of a C Program

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

C++ Basic Elements of COMPUTER PROGRAMMING. Special symbols include: Word symbols. Objectives. Programming. Symbols. Symbols.

Objectives. Chapter 2: Basic Elements of C++ Introduction. Objectives (cont d.) A C++ Program (cont d.) A C++ Program

Chapter 2: Basic Elements of C++

Basic Operations jgrasp debugger Writing Programs & Checkstyle

Lesson 02 Data Types and Statements. MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

CS113: Lecture 3. Topics: Variables. Data types. Arithmetic and Bitwise Operators. Order of Evaluation

Program Fundamentals

Program Elements -- Introduction

Chapter 2: Data and Expressions

Fundamental of Programming (C)

TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA

Lesson 02 Data Types and Statements. MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

LECTURE 3 C++ Basics Part 2

Chapter 2 ELEMENTARY PROGRAMMING

Spoke. Language Reference Manual* CS4118 PROGRAMMING LANGUAGES AND TRANSLATORS. William Yang Wang, Chia-che Tsai, Zhou Yu, Xin Chen 2010/11/03

Outline. Data and Operations. Data Types. Integral Types

Information Science 1

Lecture 3 Tao Wang 1

1.3b Type Conversion

Module 2 - Part 2 DATA TYPES AND EXPRESSIONS 1/15/19 CSE 1321 MODULE 2 1

Introduction To Java. Chapter 1. Origins of the Java Language. Origins of the Java Language. Objects and Methods. Origins of the Java Language

Review: Exam 1. Your First C++ Program. Declaration Statements. Tells the compiler. Examples of declaration statements

Overview of C. Basic Data Types Constants Variables Identifiers Keywords Basic I/O

Fundamentals of Programming CS-110. Lecture 2

Chapter 2: Data and Expressions

Section 2: Introduction to Java. Historical note

CIS 110: Introduction to Computer Programming

Introduction to Programming EC-105. Lecture 2

DATA TYPES AND EXPRESSIONS

Java How to Program, 10/e. Copyright by Pearson Education, Inc. All Rights Reserved.

VARIABLES AND TYPES CITS1001

COMP 110 Introduction to Programming. What did we discuss?

Tester vs. Controller. Elementary Programming. Learning Outcomes. Compile Time vs. Run Time

Ex: If you use a program to record sales, you will want to remember data:

4. Inputting data or messages to a function is called passing data to the function.

ARG! Language Reference Manual

Operators. Java operators are classified into three categories:

Elementary Programming

Entry Point of Execution: the main Method. Elementary Programming. Learning Outcomes. Development Process

Chapter. Let's explore some other fundamental programming concepts

false, import, new 1 class Lecture2 { 2 3 "Data types, Variables, and Operators" 4

CEN 414 Java Programming

CPS122 Lecture: From Python to Java

C Programming

Language Reference Manual simplicity

Chapter 2 Primitive Data Types and Operations. Objectives

C How to Program, 6/e by Pearson Education, Inc. All Rights Reserved.

Chapter 1. C++ Basics. Copyright 2010 Pearson Addison-Wesley. All rights reserved

Transcription:

Java Programming, Fifth Edition 2-1 Chapter 2 Using Data within a Program At a Glance Instructor s Manual Table of Contents Overview Objectives Teaching Tips Quick Quizzes Class Discussion Topics Additional Projects Additional Resources Key Terms

Java Programming, Fifth Edition 2-2 Lecture Notes Overview Chapter 2 introduces the eight primitive data types in the Java language. Students will learn to work with integer, floating-point, Boolean, and character values. Arithmetic and comparison operators are introduced. Finally, students will learn to create input and confirm dialog boxes using the JOptionPane class. Objectives Use constants and variables Learn about the int data type Display data Write arithmetic statements Use the Boolean data type Learn about floating-point data types Understand numeric-type conversion Work with the char data type Use the Scanner class to accept keyboard input Use the JOptionPane class for GUI input Teaching Tips Using Constants and Variables 1. Explain the difference between variables and constants. Using Table 2-1, explain the concept of data types and introduce the eight primitive data types. Note that programmers can create reference types out of primitive types and other reference types. Declaring Variables 1. Describe the components of a variable declaration listed on page 45. Note that it is common practice to begin variable names with a lowercase letter. Teaching Tip Discuss the importance of choosing meaningful names for variables.

Java Programming, Fifth Edition 2-3 2. Explain how to use the assignment operator to assign a value to a variable. Initialization is the term describing the use of an assignment operator as part of a variable declaration. Note that the associativity of the assignment operator determines the order in which the operands must be used. Using the examples on page 46, explain the different ways in which variables of the same type and different types may be declared and initialized. Declaring Named Constants 1. Describe a named constant. Explain how to create a named constant using the final keyword. 2. Discuss the benefits of using named constants over literal values. Pitfall: Forgetting That a Variable Holds One Value at a Time 1. Using the example on page 48, explain how to correctly swap the values of two variables. Learning about the int Data Type 1. Describe the int, byte, short, and long data types. Using Table 2-2, explain the storage capacity of each type. Quick Quiz 1 1. A data item is constant when it cannot be changed while a program is running; a data item is when it might change. Answer: variable 2. An item s describes the type of data that can be stored there, how much memory the item occupies, and what types of operations can be performed on the data. Answer: data type 3. True or False: A variable declaration is a statement that reserves a named memory location. Answer: True 4. The types are all variations of the integer type. Answer: byte, short, and long Displaying Data 1. Discuss the use of the println() and print() methods to display variable values. Explain the concept of concatenation. Review the code in Figure 2-1, which produces the output seen in Figure 2-2.

Java Programming, Fifth Edition 2-4 Teaching Tip Note that, when two Strings are concatenated, a new String object is created. 3. Explain an alternate method of displaying variable values using JOptionPane. Explain that the showmessagedialog() method requires a String argument. Explain how to convert an int to a String by concatenating it with a null String. Review the code in Figure 2-3, which produces the output seen in Figures 2-4 and 2-5. Writing Arithmetic Statements 1. Note that Java provides all of the basic arithmetic operators listed in Table 2-3. Remind students that the rules of operator precedence apply in a program just as they do in math. 4. Illustrate the concept of integer division using an example. Make sure that students understand that the fractional portion of a division result will be lost when both operators are of an integer data type. Teaching Tip Students may not be as familiar with the modulus operator, %, as with other arithmetic operators. Writing Arithmetic Statements Efficiently 1. Using the examples on page 53, explain how to avoid unnecessary repetition of arithmetic statements. Using the Boolean Data Type 1. Introduce the concept of a Boolean variable, which can have one of two values: true or false. 5. Using Table 2-4, describe the relational operators available in Java. Note that the result of each comparison is a Boolean value. Quick Quiz 2 1. True or False: The JOptionPane.showMessageDialog() method accepts a single numeric variable as its display argument. Answer: False

Java Programming, Fifth Edition 2-5 2. You use arithmetic to perform calculations with values in your programs. Answer: operators 3. When you combine mathematical operations in a single statement, you must understand, or the rules for the order in which parts of a mathematical expression are evaluated. Answer: operator precedence 4. A relational operator compares two items; an expression containing a comparison operator has a(n) value. Answer: Boolean Learning About Floating-Point Data Types 1. Using Table 2-5, introduce the two floating-point data types double and float. Make sure that students understand the concept of significant digits. Understanding Numeric-Type Conversion 1. Describe the concept of numeric-type conversion. Explain how Java selects a unifying type when two operands have different data types. Describe how to perform type casting by placing the desired type in parentheses. Teaching Tip Ask students to write a program that illustrates the use of unifying types and type casting. Working with the char Data Type 1. Explain the use of the char data type to hold a single character. A constant character value is placed between single quotation marks. 6. Briefly describe the Unicode system. Unicode values are listed in Table 2-6. 7. Introduce the built-in Java type String. 8. Describe the purpose of escape sequences. Using Table 2-7, describe common escape sequences.

Java Programming, Fifth Edition 2-6 Using the Scanner Class for Keyboard Input 1. Explain how to use the Scanner class to capture keyboard input from the standard input device (keyboard) represented by System.in. Selected methods of the Scanner class are listed in Table 2-8. 2. Review the GetUserInfo class in Figure 2-8 and the program output in Figure 2-9. Teaching Tip Students can learn more about the Scanner class from the following documentation: http://java.sun.com/javase/6/docs/api/java/util/scanner.html. Pitfall: Using nextline() Following One of the Other Scanner Input Methods 1. Illustrate the problems that may occur with using the nextline() method after one of the other Scanner class input methods. Use the code samples in Figures 2-10 and 2-12 to aid the discussion. Make sure that students are familiar with the concept of the keyboard buffer. Using the JOptionPane Class for GUI Input 1. Remind students about the use of JOptionPane to create dialog boxes. Introduce input and confirm dialogs. Using Input Dialog Boxes 1. Explain how to use the showinputdialog() method of JOptionPane. Review the code in Figure 2-14, which produces the output seen in Figures 2-15 and 2-16. 3. Describe how to convert a String into an int or double using the Integer and Double type-wrapper classes. 4. Review the SalaryDialog class in Figure 2-18, which combines the techniques covered in this section. Using Confirm Dialog Boxes 1. Explain how to use the showconfirmdialog() method of JOptionPane. Review the AirlineDialog class in Figure 2-20. You Do It 1. Students should follow the steps in the book to create a Java application.

Java Programming, Fifth Edition 2-7 Don t Do It 1. Review this section and discuss each point. Quick Quiz 3 1. A(n) data type can hold floating-point values of up to six or seven significant digits of accuracy. Answer: float 2. True or False: The cast type is the type to which all operands in an expression are converted so that they are compatible with each other. Answer: False 3. casting forces a value of one data type to be used as a value of another type. Answer: Type 4. True or False: A character that is a digit is represented in computer memory differently than a numeric value represented by the same digit. Answer: True 5. A(n) dialog box asks a question and provides a text field in which the user can enter a response. Answer: input Class Discussion Topics 1. Why do you think it is important to have a variety of different data types for integer and floating-point numbers? 2. Why might it be necessary to perform type casting? Additional Projects 1. Create a Java application that performs two arithmetic and two comparison operations on the same set of variables. Print the results to the console. 2. Create a Java application that prompts the user for two values using input dialogs and then displays the sum of the values using a message dialog.

Java Programming, Fifth Edition 2-8 Additional Resources 1. More on primitive data types: http://java.sun.com/docs/books/tutorial/java/nutsandbolts/datatypes.html 2. More on JOptionPane: http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html Key Terms Arithmetic operators: used to perform calculations with values in your applications. Assignment operator: the equal sign (=); any value to the right of the equal sign is assigned to the variable on the left of the equal sign. Assignment: the act of providing a value for a variable. Associativity: refers to the order in which operands are used with operators. Binary operators: require two operands. Blank final: a final variable that has not yet been assigned a value. Boolean variable: can hold only one of two values: true or false. byte: data type that holds very small integers, from 128 to 127. Camel casing: a style in which an identifier begins with a lowercase letter and subsequent words within the identifier are capitalized. Cast operator: performs an explicit-type conversion; it is created by placing the desired result type in parentheses before the expression to be converted. char: data type used to hold any single character. Comparison operator: another name for a relational operator. Concatenated: combine a value with another value. Confirm dialog box: displays the options Yes, No, and Cancel. Constant: data item that cannot be changed during the execution of an application. Consume: retrieve and discard an entry without using it. Data type: describes the type of data that can be stored there, how much memory the item occupies, and what types of operations can be performed on the data. double: data type that can hold a floating-point value of up to 14 or 15 significant digits of accuracy. Double-precision floating-point number: stored in a double. Echoing the input: repeat the user s entry as output so that the user can visually confirm the entry s accuracy. Escape sequence: begins with a backslash followed by a character; the pair represents a single character. Explicit conversion: the data-type transformation caused using a cast operator. final: keyword that precedes named constants. float: data type that can hold a floating-point value of up to six or seven significant digits of accuracy. Floating-point number: contains decimal positions. Garbage value: the unknown value stored in an uninitialized variable. Implicit conversion: the automatic transformation of one data type to another. Initialization: an assignment made when you declare a variable.

Java Programming, Fifth Edition 2-9 Input dialog box: asks a question and provides a text field in which the user can enter a response. int: the data type used to store integers. Integer division: the operation in which one integer value is divided by another; the result contains no fractional part. Integer: a whole number without decimal places. Keyboard buffer: a small area of memory where keystrokes are stored before they are retrieved into a program. Literal constant: a value that is taken literally at each use. long: data type that holds very large integers, from 9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. Lvalue: an expression that can appear on the left side of an assignment statement. Magic number: a value that does not have immediate, intuitive meaning or a number that cannot be explained without additional knowledge. Unnamed constants are magic numbers. Modulus operator: the remainder operator; also called mod. Named constant: a memory location whose declaration is preceded by the keyword final and whose value cannot change during program execution. Null String: an empty String created by typing a set of quotes with nothing between them. Numeric constant: a number whose value is taken literally at each use. Operand: a value used in an arithmetic statement. Operator precedence: the rules for the order in which parts of a mathematical expression are evaluated. Parse: to break into component parts. Primitive type: a simple data type. Java s primitive types are byte, short, int, long, float, double, char, and boolean. Promotion: an implicit conversion. Prompt: a message that requests and describes user input. Reference types: complex data types that are constructed from primitive types. Relational operator: compares two items; an expression that contains a relational operator has a Boolean value. Remainder operator: the percent sign; when it is used with two integers, the result is an integer with the value of the remainder after division takes place. Rvalue: an expression that can appear only on the right side of an assignment statement. Scientific notation: a display format that more conveniently expresses large or small numeric values; a multidigit number is converted to a single-digit number and multiplied by 10 to a power. short: data type that holds small integers, from 32,768 to 32,767. showconfirmdialog() method: in the JOptionPane class; used to create a confirm dialog box. showinputdialog() method: used to create an input dialog box. Significant digits: refers to the mathematical accuracy of a value. Single-precision floating-point number: stored in a float. Standard input device: normally is the keyboard. String: a built-in Java class that provides you with the means for storing and manipulating character strings.

Java Programming, Fifth Edition 2-10 Strongly typed language: language in which all variables must be declared before they can be used. Symbolic constant: a named constant. Token: a unit of data; the Scanner class separates input into tokens. Type casting: forces a value of one data type to be used as a value of another type. Type-ahead buffer: the keyboard buffer. Type-wrapper classes: classes contained in the java.lang package; include methods that can process primitive-type values. Unary cast operator: a more complete name for the cast operator that performs explicit conversions. Unary operator: uses only one operand. Unifying type: a single data type to which all operands in an expression are converted. Variable declaration: a statement that reserves a named memory location. Variable: a named memory location that you can use to store a value.