15-Jul-15 Getting Ready for Java. What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made to.

Slides:



Advertisements
Similar presentations
JAVA Programming Environment © Juhani Välimäki 2003.
Advertisements

Chapter 5 Operating Systems. 5 The Operating System When working with multimedia, the operating system is perhaps the most important, the most complex,
Creating a Program In today’s lesson we will look at: what programming is different types of programs how we create a program installing an IDE to get.
Lesson One: The Beginning Chapter 2: Processing Learning Processing Daniel Shiffman Presentation by Donald W. Smith Graphics from built-in help reference.
11-Jun-15 Getting Ready for CIT Registering and labs If you are not yet registered (and want to be), be sure I have your name and student ID We.
11-Jun-15 Just Enough Java. 2 What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made to understand.
Exploring the iPhone SDK Toyin Adedokun & Daniel Laughlin.
Getting Ready for Java. What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made to understand.
26-Jun-15 Getting Ready for CIT Labs Lab is scheduled for 3;00-4:30 Fridays in Moore 207 Lab is not in Towne 309 (Registrar has it wrong) Everyone.
30-Jun-15 Getting Ready for CIT Labs Lab is scheduled for 1:30-3:00 Fridays in Moore 207 Lab is not in Towne 313 (Registrar has it wrong) Everyone.
Lab 1 Instructor: Jolanta Soltis.
Friday, August 29, 2014 CSCI 351 – Mobile Applications Development.
13-Jul-15 Getting Ready for Java. 2 What You Need 256 MB of RAM (512 MB or more recommended) 500 MHz Pentium or better Macintosh: must run Mac OS X, preferably.
13-Jul-15 BlueJ: A Very Quick Introduction. BlueJ BlueJ is an IDE (Integrated Development Environment). It includes an editor, which you use to write.
Introduction to Programming with Java, for Beginners Machine vs. Programming Language Intro to Java Edit-Compile-Run Program Process.
Chapter 3 Software Two major types of software
JAVA: An Introduction to Problem Solving & Programming, 6 th Ed. By Walter Savitch ISBN © 2012 Pearson Education, Inc., Upper Saddle River,
PHY281Introduction to JavaSlide 1 Introduction to Java In this section we will learn how how to use Java and write our first Java Applet:  The Java Development.
I have lost all my vacation pictures due to memory card corruption. Can I get them back? I have accidently deleted some important Photos, Music files.
CS0007: Introduction to Computer Programming Setting Up Java.
Marlene Galea.  The JDK (Java Development Kit)  An IDE (Integrated Development Environment) ◦ Different IDEs include:  JCreator  NetBeans  BlueJ.
Prepared by: Nor Zuraida Bt Mohd Gaminan Department of IT & Communication Politeknik Tuanku Syed Sirajuddin Chapter 1 Introduction to Operating System.
 Advantages  Easy to learn  Graphical Advantages  Help and Support  Widely used  Software compatibility  Customisable  Customisable Hardware 
Saeid Abolfazli, Faculty of Computer Science and IT, University Malaya Malaysia.
Learning Outcomes At the end of this lesson, students should be able to: State the types of system software – Operating system – Utility system Describe.
Getting Started With Java Downloading and installing software Running your first program Dr. DwyerFall 2012.
Lesson 4 Computer Software
Introduction 01_intro.ppt
Introducing Java.
Lesson 6 Operating Systems and Software
CS110/CS119 Introduction to Computing (Java)
From BlueJ to NetBeans SWC 2.semester.
Chapter 1.4 Programming languages Homework Due: Monday, August 11, 2014.
Software Software consists of the instructions issued to the computer to perform specific tasks. –The software on a computer system refers to the programs.
Introduction to Computers & Java CSS 161: Fundamentals of Computing Joe McCarthy 1.
Team and Client Rajiv Chalasani- Project Manager Mark Goesmann – Lead Designer Kevin Staake – Lead Implementer Dave Nyman – Quality Manager Client : Mr.
1 3. Computing System Fundamentals 3.1 Language Translators.
Guide to Programming with Python Chapter One Getting Started: The Game Over Program.
Introduction to Java Programming. Introduction Course Objectives Organization of the Book.
Setting Up Eclipse. What is Eclipse? Eclipse is a free, downloadable software that allows us to create, compile, and run JAVA programs.
Preliminaries CS 310: Object-oriented Programming Java API.
5-Jun-16 Getting Ready for Java. 2 What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made.
Monday, August 31, 2015 CSCI 351 – Mobile Applications Development.
Liferay Installation Prepared by: Do Xuan Hai 8 August 2011.
Computing System Fundamentals 3.1 Language Translators.
29-Nov-15 Getting Ready for Java. 2 What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made.
Application Programming Interfaces. Java comes with a bunch of classes that are already written. Java comes with a bunch of classes that are already written.
Operating Systems. An operating system (os) is a software program that enables the computer hardware to communicate and operate with the computer software.
Digital Communication Systems Comp Functions of the Operating System.
TODAY Android Studio Installation Getting started Creating your 1 st App Beginning to understanding Intents.
BY MR.SUTCHUKORN TANTITHANAWARAPONG COMPUTER TEACHER AT POOLCHAROENWITTAYAKOM SCHOOL Subject :Operating System C30207.
OST Intro in to Macs. History of Macintosh On January 24, 1984 Apple Computer introduced the Apple Macintosh personal computer, with the Macintosh.
Execution ways of program References: www. en.wikipedia.org/wiki/Integrated_development_environment  You can execute or run a simple java program with.
Programming Languages Concepts Chapter 1: Programming Languages Concepts Lecture # 4.
Programming 2 Intro to Java Machine code Assembly languages Fortran Basic Pascal Scheme CC++ Java LISP Smalltalk Smalltalk-80.
BlueJ X ICSE Syllabus. Board Pattern THEORY (100 marks) PRACTICAL (100 marks) PROJECT (50 marks) ASSIGNMENTS (50 marks)
Unit 3 Computer Systems. What is software? unlike hardware it can’t be physically touched it’s the missing link between the computer hardware and the.
Guide To Develop Mobile Apps With Titanium. Agenda Overview Installation of Platform SDKs Pros of Appcelerator Titanium Cons of Appcelerator Titanium.
Introduction to Algorithm. What is Algorithm? an algorithm is any well-defined computational procedure that takes some value, or set of values, as input.
Chapter 5 Operating Systems.
CS210 Intermediate Computing with Data Structures (Java)
Development Environment
Macintosh & Linux Used to fill in pg 5 & 6 of “Operating Systems” Packet.
CSCI 351 – Mobile Applications Development
1. Environment Setting Minhaeng Lee.
What is an operating system?
F II 1. Background Objectives
Getting Ready for Java version Apr-19.
BlueJ: a very quick introduction
Review of Previous Lesson
Presentation transcript:

15-Jul-15 Getting Ready for Java

What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made to understand Java is currently a very popular language Java is a large, powerful language but it is not simple! Compared to C++, Java is elegant

Declarations, statements, comments A declaration gives some information to the computer A statement tells the computer to do something Statements should really be called “commands” Comments are ignored by the computer—they are explanations of your program for human beings to read

Syntax and semantics Syntax is the “grammar” of the language The syntax of Java is large, but finite Syntax must be absolutely correct The computer will point out every syntax error Error messages may be helpful or misleading Semantics is the “meaning” of your program Semantic errors cause your answers to be wrong You may or may not get error messages

Two aspects of Java Java has syntax and semantics This is where you begin It is possible to learn everything about Java’s syntax and semantics We will cover most of Java’s syntax and semantics Java also has “packages” Packages are sort of like vocabulary bundles To be good at Java, you need to learn many packages There are more Java packages than you can ever learn

Versions of Java Java 1 Java 1.0: Original, not very good version Java 1.1: Greatly revised and improved Java 2 Java 1.2: Includes “Swing” Java 1.3: Last year’s best version Java 1.4: The latest and best version Java 1.5: Not yet released

Vocabulary I JRE, Java Runtime Environment This is the software that allows you to run Java programs on your computer SDK, System Development Kit (previously called JDK, Java Development Kit) The software that allows you to create and run Java programs on your computer When you install the SDK, you get a JRE along with it IDE, Integrated Development Environment A tool that makes it easier to write programs

Vocabulary II Beta software Software that is new, untested, often buggy Interface the place where things touch each other the way that distinct things communicate GUI, Graphical User Interface A way for the computer and the user to communicate via graphics (pictures) on the screen

BlueJ BlueJ is an IDE (Integrated Development Environment). It includes an editor, which you use to write your programs a debugger, to help you find your mistakes a viewer, to see the parts of your program an easy way to run Java programs an easy way to view documentation

Elegance Powerful software can do everything you want to do--for example, Microsoft Word Complex software is hard to learn and hard to use-- for example, Microsoft Word More power usually means more complexity Elegant software somehow manages to be both powerful and simple BlueJ is elegant

What You Need 128 MB of RAM (256 MB recommended) 500 MHz Pentium or better Macintosh: must run Mac OS X Java SDK 1.4 (includes JRE) BlueJ or better Earlier versions of BlueJ have serious problems If you have an older version, update! By the way: the SDK and BlueJ are free

Getting Ready If you plan to use your own computer: Download and install Java SDK Download J2SE TM v 1.4.0_02 Windows (all languages, including English)--SDK Download and install BlueJ [Optional, but strongly recommended] Download the Java documentation J2SE 1.4 Documentation

The End