100 200 400 300 400 Java FilesOops - Mistake Java lingoSyntax 300 200 400 200 100 500 100.

Slides:



Advertisements
Similar presentations
In Review JAVA C++ GUIs - Windows Webopedia.com.
Advertisements

1 pritisajja.info Unlocking the World of Java Programming….. Priti Srinivas Sajja February, 2014 Visit pritisajja.info for detail Future Technology for.
 2005 Pearson Education, Inc. All rights reserved Introduction.
Your First Java Program: HelloWorld.java
Chapter 1: Introduction
Slides prepared by Rose Williams, Binghamton University Chapter 1 Getting Started 1.1 Introduction to Java.
How to Create a Java program CS115 Fall George Koutsogiannakis.
Java Intro. A First Java Program //The Hello, World! program in Java public class Hello { public static void main(String[] args) { System.out.println("Hello,
Outline Java program structure Basic program elements
Slide 1 of 40. Lecture A The Java Programming Language Invented 1995 by James Gosling at Sun Microsystems. Based on previous languages: C, C++, Objective-C,
1 Programming Languages Translation  Lecture Objectives:  Be able to list and explain five features of the Java programming language.  Be able to explain.
1. 2 Chapter 1 Introduction to Computers, Programs, and Java.
SEEM3460 Tutorial Java Programming in Unix. Code Translation Java source code Java bytecode Java compiler Bytecode interpreter machine code for target.
CSE 1301 J Lecture 2 Intro to Java Programming Richard Gesick.
IB Computer Science II Paul Bui
Introducing Java.
Intro to Java Programming  A computer follows the instruction precisely and exactly.  Anything has to be declared and defined before it can be used.
Chapter 1: Creating Java Programs
Basics Programming Concepts. Basics A computer program is a set of instructions to tell a computer what to do Machine language = circuit level language.
 Java Programming Environment  Creating Simple Java Application  Lexical Issues  Java Class Library.
Chapter 1.4 Programming languages Homework Due: Monday, August 11, 2014.
CS 106 Introduction to Computer Science I 01 / 25 / 2010 Instructor: Michael Eckmann.
CS107 Introduction to Computer Science Java Basics.
Introduction to Computers and Java Chapter 1.3. A Sip of Java: Outline History of the Java Language Applets A First Java Program Compiling a Java Program.
Chapter 1 Introduction to Java 10/8/2015 Lecture 1 1.
Session One Introduction. Personal Introduction Role of programmers Robot Examination HUD & HID Uploading Code.
© 2006 Pearson Education 1 Obj: cont 1.3 and 1.4, to become familiar with identifiers and to understand how programming languages work HW: p.51 #1.8 –
FRST JAVA PROGRAM. Getting Started with Java Programming A Simple Java Application Compiling Programs Executing Applications.
Introduction to Programming David Goldschmidt, Ph.D. Computer Science The College of Saint Rose Java Fundamentals (Comments, Variables, etc.)
Intro and Review Welcome to Java. Introduction Java application programming Use tools from the JDK to compile and run programs. Videos at
Java Programming, Second Edition Chapter One Creating Your First Java Program.
Board Activity Find your seat on the seating chart Login – Remember your login is your first initial your last name and the last three numbers of your.
CS591x A very brief introduction to Java. Java Developed by Sun Microsystems was intended a language for embedded applications became a general purpose.
Topic 1Topic 2Topic 3Topic 4Topic
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
CHAPTER 3 GC Java Fundamentals. 2 BASICS OF JAVA ENVIRONMENT  The environment  The language  Java applications programming Interface API  Various.
 JAVA Compilation and Interpretation  JAVA Platform Independence  Building First JAVA Program  Escapes Sequences  Display text with printf  Data.
Jaeki Song ISQS6337 Lecture 01 Introduction. Jaeki Song ISQS6337 Instructor Name: Jaeki Song Office: BA 712 Office Hours Tuesday & Thursday 2:00-3:20.
8/31: Intro to Java, Languages, and Environments Types of programming languages –machine languages –assembly languages –high-level languages Java environment.
Creating Your First Computer Program in Java Margaret Yau.
J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design, Second Edition Second Edition D.S. Malik D.S. Malik.
CSc 201 Introduction to Java George Wells Room 007, Hamilton Building
CS 106 Introduction to Computer Science I 01 / 22 / 2007 Instructor: Michael Eckmann.
Chapter 1 Introduction. Components of a Computer CPU (central processing unit) Executing instructions –Carrying out arithmetic and logical operations.
Getting Started With Java September 22, Java Bytecode  Bytecode : is a highly optimized set of instructions designed to be executed by the Java.
Lecture1 Instructor: Amal Hussain ALshardy. Introduce students to the basics of writing software programs including variables, types, arrays, control.
Introducing Java Chapter 3 Review. Why Program in Java? Java, is an object-oriented programming language. OOP languages evolved out of the need to better.
CS 106 Introduction to Computer Science I 01 / 22 / 2008 Instructor: Michael Eckmann.
Jeopardy $100 VariablesErrorsLoops Classes and Objects Program Structure $200 $300 $400 $500 $400 $300 $200 $100 $500 $400 $300 $200 $100 $500 $400 $300.
ITP 109 Week 2 Trina Gregory Introduction to Java.
Execution ways of program References: www. en.wikipedia.org/wiki/Integrated_development_environment  You can execute or run a simple java program with.
Review for exam 1 CS 101 Aaron Bloomfield. 2 Today’s lecture An overview of the “review” sections of chapters 1- 3 and 5 Stop me if you want me to go.
Chapter 3 Introducing Java. Objectives and Goals 1. Define terminology associated with object- oriented programming. 2. Explain why Java is a widely used.
“Unboxing” means taking an Integer object and assigning its value to a primitive int. This is done using the.intValue( ) method. Example; Integer z = new.
Unit 1 Review By: Mr. Jacobs.
Java Programming Fifth Edition Chapter 1 Creating Your First Java Classes.
CS 201 Lecture 1 (b) Using an IDE Tarik Booker CS 201: Introduction to Programming California State University, Los Angeles.
Computer Programming Your First Java Program: HelloWorld.java.
Java Programming in Unix
Chapter 1 Introduction to Computers, Programs, and Java
GC101 Introduction to computer and program
Data types and variables
Java programming lecture one
Intro to Java.
Programming Vocabulary.
Chapter 1: Computer Systems
Fundamentals of Programming
Review for Exam 1 Spring 2007 CS 101/CS 101-E.
Java Intro.
Chapter 2: Java Fundamentals
Presentation transcript:

Java FilesOops - Mistake Java lingoSyntax

100pts Class name and file name What must be the same?

100pts Forgot Closing Quote What is a compilation error?

100pts Code executed by the computer What is machine code?

100pts Java program block starts and ends with… What are braces – curly braces?

200pts Source code extension What is. java?

200pts Wanted to print values between 0 and 100 – instead Got values less than 0 And greater than 100 What is logic error?

200pts Meaning of psvmsa What is public static void main string args?

2,4 The name of our IDE What is Eclipse?

300pts Translates high-level into machine language What is the compiler?

300pts Division by zero What is runtime error?

300pts Ones and zeros What is binary numbers?

300pts runs on a computer to manage and control a computer's activities. What is the Operating System?

400pts Java compiler translates Java source code into ? What is bytecode?

400 Java application must have one What is a main method?

400pts keywords in Java are all typed in What is lowercase?

4,4 Java is oop What is object oriented programming?

500pts The extension name of a Java bytecode What is. class?

500pts Stored in a.class file What is the byte/machine code?

500pts These symbols // or /* */ in Java What are used for comments?

500pts null 0 What are the default values for objects and integers?