Introduction to Programming (CS 201) Lecture 01 - Introduction.

Slides:



Advertisements
Similar presentations
Introduction to programming in java. Input and output to screen with Java program Structure of Java programs Statements Conditional statements.
Advertisements

compilers and interpreters
In Review JAVA C++ GUIs - Windows Webopedia.com.
Object Oriented Programming in Java George Mason University Fall 2011
Introduction to Computer Programming in C
Lecture 2: Do you speak Java?. From Problem to Program Last Lecture we looked at modeling with objects! Steps to solving a business problem –Investigate.
How to Create a Java program CS115 Fall George Koutsogiannakis.
CENG 161 Introduction to Computer Science Instructor: Dr. Nurdan SARAN Lab Assistant: Arzu Burçak Sönmez.
Lecture 2: Do you speak Java?. From Problem to Program Last Lecture we looked at modeling with objects! Steps to solving a business problem –Investigate.
Honors 101, Fall 2006 Please do not sit in back of room! Lots of info on web page Join the mailing list Download Eclipse and start using it Read the text.
A Short Introduction to JAVA
CS0007: Introduction to Computer Programming Setting Up Java.
1 CS428 Web Engineering Lecture 18 Introduction (PHP - I)
1 Building Java Programs Chapter 1: Introduction to Java Programming These lecture notes are copyright (C) Marty Stepp and Stuart Reges, They may.
Sadegh Aliakbary Sharif University of Technology Fall 2011.
“Introduction to Programming With Java”
CSC 142 A 1 CSC 142 Introduction to Java [Reading: chapter 0]
Parts of a Computer Why Use Binary Numbers? Source Code - Assembly - Machine Code.
Chapter 2 How to Compile and Execute a Simple Program.
From BlueJ to NetBeans SWC 2.semester.
Sadegh Aliakbary Sharif University of Technology Spring 2011.
Foundation Programming Introduction. Aims This course aims to give students a basic understanding of computer programming. On completing this course students.
Sadegh Aliakbary Sharif University of Technology Fall 2010.
Welcome to the Lecture Series on “Introduction to Programming With Java”
Chapter 1 Introduction. Goal to learn about computers and programming to compile and run your first Java program to recognize compile-time and run-time.
UCSC All rights reserved. No part of this material may be reproduced and sold. 1 IT1202-Fundamentals Of Programming (Using JAVA) Interacting with.
1 Module Objective & Outline Module Objective: After completing this Module, you will be able to, appreciate java as a programming language, write java.
Java Environment CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
© 2012 Pearson Education, Inc. All rights reserved. 1-1 Why Java? Needed program portability – Program written in a language that would run on various.
Introduction to Java CS1316: Representing Structure and Behavior.
How to Run a Java Program CSE 1310 – Introduction to Computers and Programming Vassilis Athitsos University of Texas at Arlington 1.
Jianguo Lu : regular expression and automata.
Object Oriented Programming Lecture 3. Introduction  In discussing Java, some items need to be clarified  The Java programming language  The Java virtual.
FIRST JAVA PROGRAM. JAVA PROGRAMS Every program may consist of 1 or more classes. Syntax of a class: Each class can contain 1 or more methods. public.
Pre-Sessional Java Programming Lecture 1a Reyer Zwiggelaar
Copyright © Mohamed Nuzrath Java Programming :: Syllabus & Chapters :: Prepared & Presented By :: Mohamed Nuzrath [ Major In Programming ] NCC Programme.
Chapter 1: Introducing JAVA. 2 Introduction Why JAVA Applets and web applications Very rich GUI libraries Portability (machine independence) A real Object.
JAVA Programming “When you are willing to make sacrifices for a great cause, you will never be alone.” Instructor: รัฐภูมิ เถื่อนถนอม
CS 206 Introduction to Computer Science II 09 / 11 / 2009 Instructor: Michael Eckmann.
FOUNDATION IN INFORMATION TECHNOLOGY (CS-T-101) TOPIC : INFORMATION SYSTEM – SOFTWARE.
Overview Object oriented programming How to run a simple program.
© 2012 Pearson Education, Inc. All rights reserved types of Java programs Application – Stand-alone program (run without a web browser) – Relaxed.
 Software Development Life Cycle  Software Development Tools  High Level Programming:  Structures  Algorithms  Iteration  Pseudocode  Order of.
Programming in C++ History of Programming 1st Generation –Machine Language 2nd Generation –Assembly Language 3rd Generation.
ICS312 Introduction to Compilers Set 23. What is a Compiler? A compiler is software (a program) that translates a high-level programming language to machine.
Execution ways of program References: www. en.wikipedia.org/wiki/Integrated_development_environment  You can execute or run a simple java program with.
Computer Programming Week 1: The Basics of CP 1 st semester 2012 School of Information Technology Website:
Starting Out With Java 5 Control Structures to Objects By Tony Gaddis Copyright © 2005 Pearson Addison- Wesley. All rights reserved. Chapter 1 Slide #1.
Fundamental of Java Programming (630002) Unit – 1 Introduction to Java.
Introduction to Algorithm. What is Algorithm? an algorithm is any well-defined computational procedure that takes some value, or set of values, as input.
Introduction to programming in java
Lecture 1b- Introduction
Programming what is C++
Before You Begin Nahla Abuel-ola /WIT.
Writing, Compiling and Running a C program
Introduction to Programming (CS 201)
Introduction to C Language
Java programming lecture one
PRG 420 NERD Experience Tradition / prg420nerd.com.
PRG 420 NERD Perfect Education/ prg420nerd.com.
Introduction to Java Dept. Business Computing University of Winnipeg
and Executing Programs
Lecturer: Mukhtar Mohamed Ali “Hakaale”
Mobile Development Workshop
How to Run a Java Program
Unit 1: Introduction Lesson 1: PArts of a java program
Introduction to Algorithm Design
Accelerated Introduction to Computer Science
Introduction to Computer Science
Introduction to Computer Science
Presentation transcript:

Introduction to Programming (CS 201) Lecture 01 - Introduction

Recommended Text Books 1. Introduction to Java and Object Oriented Programming (Volume 1)  Sebastian Danicic, University of London.  Online: /foundation/lecture-slides/java-study-guide-volume1.pdfhttp:// 2013/foundation/lecture-slides/java-study-guide-volume1.pdf 2. Introduction to Programming in Java: An Interdisciplinary Approach  Robert Sedgewick, Princeton University  Online:

Syllabus Input and output to screen with Java program Structure of Java programs Statements Data types Standard Input Conditional statements Loop constructs Arrays, character and string handling Random Number generation Filing (Reading and Writing ) Functions

Marks Distribution

Ref:

Before Writing First Java Program  Step 1: Download Java Development Kit (JDK SE v7 ) from s/index.html s/index.html  Step 2: Download ‘DrJava Windows App’ from  Instead of DrJava you can also use any other editor such as Simple Notepad, NetBeans etc.

Snap Shot of DrJava App Ref:

General Steps Write Java ProgramSave ProgramCompile ProgramRun Program Compiling is the process of translating source code written in a particular programming language into computer-readable machine code that can be executed.