CET 3640 Instructor: Dr. Reyes Álamo © Copyright 1992-2012 by Pearson Education, Inc. All Rights Reserved.

Slides:



Advertisements
Similar presentations
Java™ How to Program, 9/e Presented by: Dr. José M. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
Advertisements

Java How to Program, 9/e CET 3640 Professor: Dr. José M. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
ISBN Chapter 1 Preliminaries. Copyright © 2004 Pearson Addison-Wesley. All rights reserved.1-2 Figure 1.1 The von Neumann computer architecture.
Chapter 15 Geography, Climate, and Natural Resources.
Chapter 2 Application Layer. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 2-2.
Chapter 13 Income Inequality. Copyright © 2005 Pearson Addison-Wesley. All rights reserved
Chapter 1 The Facts to Be Explained. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 1-2.
Chapter 3 Transport Layer. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 3-2.
Chapter 6 Human Capital. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 6-2.
Chapter 8 The Role of Technology in Growth. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 8-2.
CS102--Object Oriented Programming Review 1: Chapter 1 – Chapter 7 Copyright © 2008 Xiaoyan Li.
Java How to Program, 9/e © Copyright by Pearson Education, Inc. All Rights Reserved.
Chapter 7 Multimedia Networking. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. 7-2.
Chapter 16 Resources and the Environment at the Global Level.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Part 1 Conditionals and Loops.
Java How to Program, 9/e Instructor: José M. Reyes Álamo © by Pearson Education, Inc. All Rights Reserved.
Engineering Mechanics: Statics, Thirteenth Edition R. C. Hibbeler Copyright ©2013 by Pearson Education, Inc. All rights reserved. EXAMPLE 9.1.
Java™ How to Program, 9/e Presented by: Dr. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
Java™ How to Program, 9/e Presented by: Dr. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
Java™ How to Program, 9/e Presented by: Dr. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
Engineering Mechanics: Statics, Thirteenth Edition R. C. Hibbeler Copyright ©2013 by Pearson Education, Inc. All rights reserved. EXAMPLE 3.1.
Java™ How to Program, 9/e Presented by: Dr. José M. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
Java™ How to Program, 9/e © Copyright by Pearson Education, Inc. All Rights Reserved.
Engineering Mechanics: Statics, Thirteenth Edition R. C. Hibbeler Copyright ©2013 by Pearson Education, Inc. All rights reserved. EXAMPLE 11.1.
Chapter 10 Classes and Objects: A Deeper Look Visual C# 2010 for Programmers © by Pearson Education, Inc. All Rights Reserved.
Java™ How to Program, 9/e Presented by: Dr. José M. Reyes Álamo CET 3640 © Copyright by Pearson Education, Inc. All Rights Reserved.
Chapter 6. else-if & switch Copyright © 2012 Pearson Education, Inc.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 6: Transition to Java Programming with Alice and Java First Edition.
1 Chapter 5: Defining Classes. 2 Basics of Classes An object is a member of a class type What is a class? Fields & Methods Types of variables: –Instance:
CSCI 212 Object-Oriented Programming in Java. Prerequisite: CSCI 111 variable assignment statement while loop for loop post-increment (i++) strong typing.
Starting Out With Java 5 Control Structures to Objects By Tony Gaddis Copyright © 2005 Pearson Addison- Wesley. All rights reserved. Chapter 1 Slide #1.
Learning Plan 6 Java Programming Intro to Object Oriented Programming.
Chapter 16 Universal Insurance Issues and International Comparisons of Health Care Systems.
© 2015 Pearson Education, Inc.
Operator Overloading; Class string
© 2015 Pearson Education, Inc.
Chapter 4 Inheritance.
Chapter 1 Preliminaries.
Section 2.5 Graphing Techniques; Transformations
توكيد الذات.
Copyright © 2016 Elsevier Inc. All rights reserved.
Section 9.4 Area of a Triangle
Chapter 7 MATH 1325 Business Calculus Ch.7 Copyright © 2005 Pearson Education, Inc.
Section 2.5 Graphing Techniques; Transformations
The Inverse Trigonometric Functions (Continued)
Copyright © 2012, Elsevier Inc. All rights Reserved.
Section 10.1 Polar Coordinates
Extra Nomenclature Practice Answers
Copyright © 2013 Elsevier Inc. All rights reserved.
Copyright © 2012, Elsevier Inc. All rights Reserved.
Chemistry Ch. 10 Review and worksheets
Copyright © 2012, Elsevier Inc. All rights Reserved.
Introduction: Some Representative Problems
Copyright © 2013 Elsevier Inc. All rights reserved.
Section R.2 Algebra Essentials
The University of Adelaide, School of Computer Science
Section 10.5 The Dot Product
Modeling Functionality with Use Cases
Unit 4 Review Answers.
Copyright © 2012, Elsevier Inc. All rights Reserved.
Lial/Hungerford/Holcomb: Mathematics with Applications 10e
Copyright © 2012, Elsevier Inc. All rights Reserved.
Chapter 6 Dynamic Programming.
Copyright © 2013 Elsevier Inc. All rights reserved.
Chapter 2 Reference Types.
Chapter 4 Greedy Algorithms.
Copyright © 2012, Elsevier Inc. All rights Reserved.
Chapter 15 Contraception
Copyright © 2013 Elsevier Inc. All rights reserved.
Presentation transcript:

CET 3640 Instructor: Dr. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.

 Java basics  Basic commands (i.e. if, while, switch, println, Scanner etc.)  What is the Java Virtual Machine (JVM)  Commands to compile and run an application  Java Application Programming Interface (API)  Data Types  Primitive data types  Reference data types  Initial values

 Object-Oriented programming  What is a class  What is an object  Static data and why the main method is static  What are fields  What are methods  What is a constructor  Method overloading  Encapsulation  Inheritance

 Chapters covered1, 2, 3, 4, 6, 8, 9  Self Review (all questions)  Exercises (as many as you can)  Try to write the programs by hand first  Problems with printf statements are optional  “Making a Difference” not required © Copyright by Pearson Education, Inc. All Rights Reserved.