Java (12 Weeks) Introduction to Java Programming Language



Similar documents
core. Volume I - Fundamentals Seventh Edition Sun Microsystems Press A Prentice Hall Title ULB Darmstadt

Java Application Developer Certificate Program Competencies

Fundamentals of Java Programming

AP Computer Science Java Subset

The C Programming Language course syllabus associate level

Java 6 'th. Concepts INTERNATIONAL STUDENT VERSION. edition

El Dorado Union High School District Educational Services

Course Name: ADVANCE COURSE IN SOFTWARE DEVELOPMENT (Specialization:.Net Technologies)

Computing Concepts with Java Essentials

KITES TECHNOLOGY COURSE MODULE (C, C++, DS)

Syllabus for CS 134 Java Programming

PROBLEM SOLVING SEVENTH EDITION WALTER SAVITCH UNIVERSITY OF CALIFORNIA, SAN DIEGO CONTRIBUTOR KENRICK MOCK UNIVERSITY OF ALASKA, ANCHORAGE PEARSON

Java the UML Way: Integrating Object-Oriented Design and Programming

Web Development in Java

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science

Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner

Programming and Software Development CTAG Alignments

Specialized Programme on Web Application Development using Open Source Tools

DIPLOMADO DE JAVA - OCA

Course Number: IAC-SOFT-WDAD Web Design and Application Development

Glossary of Object Oriented Terms

TECHNOLOGY Computer Programming II Grade: 9-12 Standard 2: Technology and Society Interaction

Visual Basic. murach's TRAINING & REFERENCE

#820 Computer Programming 1A

Java SE 8 Programming

PART-A Questions. 2. How does an enumerated statement differ from a typedef statement?

AP Computer Science A - Syllabus Overview of AP Computer Science A Computer Facilities

History OOP languages Year Language 1967 Simula Smalltalk

Computer Programming I

Computer Programming I & II*

Java EE Web Development Course Program

Curriculum Map. Discipline: Computer Science Course: C++

COMMUNITY COLLEGE OF CITY UNIVERSITY CITY UNIVERSITY OF HONG KONG

MA-WA1920: Enterprise iphone and ipad Programming

Basic Programming and PC Skills: Basic Programming and PC Skills:

Java Interview Questions and Answers

The Sun Certified Associate for the Java Platform, Standard Edition, Exam Version 1.0

Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation

Java SE 7 Programming

Specialized Programme on Web Application Development using Open Source Tools

Android Application Development Course Program

Core Java+ J2EE+Struts+Hibernate+Spring

Programming and Software Development (PSD)

Objectif. Participant. Prérequis. Remarque. Programme. C# 3.0 Programming in the.net Framework. 1. Introduction to the.

Summit Public Schools Summit, New Jersey Grade Level / Content Area: Mathematics Length of Course: 1 Academic Year Curriculum: AP Computer Science A

C++ Programming Language

ADVANCED SCHOOL OF SYSTEMS AND DATA STUDIES (ASSDAS) PROGRAM: CTech in Computer Science

Object oriented design process

WORKSPACE WEB DEVELOPMENT & OUTSOURCING TRAINING CENTER

Certified PHP Developer VS-1054

BCA 421- Java. Tilak Maharashtra University. Bachelor of Computer Applications (BCA) 1. The Genesis of Java

Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives

WESTMORELAND COUNTY PUBLIC SCHOOLS Integrated Instructional Pacing Guide and Checklist Computer Math

ARIZONA CTE CAREER PREPARATION STANDARDS & MEASUREMENT CRITERIA SOFTWARE DEVELOPMENT,

Objective C and iphone App

An Introduction to Object-Oriented Programming with

TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX

Java SE 7 Programming

INFORMATION BROCHURE

Computer Programming I

Java SE 7 Programming

Course Title: Software Development

Applets, RMI, JDBC Exam Review

COMPUTER SCIENCE. 1. Computer Fundamentals and Applications

THE OPEN UNIVERSITY OF TANZANIA

Handout 1. Introduction to Java programming language. Java primitive types and operations. Reading keyboard Input using class Scanner.

JAVA r VOLUME II-ADVANCED FEATURES. e^i v it;

ALLIED PAPER : DISCRETE MATHEMATICS (for B.Sc. Computer Technology & B.Sc. Multimedia and Web Technology)

Course MS10975A Introduction to Programming. Length: 5 Days

CompuScholar, Inc. Alignment to Utah's Computer Programming II Standards

Formal Engineering for Industrial Software Development

Domains and Competencies

Programming in C# with Microsoft Visual Studio 2010

Skills for Employment Investment Project (SEIP)

: provid.ir

Chapter 6: Programming Languages

INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL

Object Oriented Programming With C++(10CS36) Question Bank. UNIT 1: Introduction to C++

Multichoice Quetions 1. Atributes a. are listed in the second part of the class box b. its time is preceded by a colon. c. its default value is

Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459)

Certified PHP/MySQL Web Developer Course

JAVA/J2EE Course Syllabus

Fundamentals of Programming and Software Development Lesson Objectives

Visual C# 2012 Programming

Facebook Twitter YouTube Google Plus Website

Chapter 2: Elements of Java

Sources: On the Web: Slides will be available on:

BHARATHIAR UNIVERSITY COIMBATORE SCHOOL OF DISTANCE EDUCATION

Object-Oriented Programming in C# (VS 2010)

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB)

Evolution of the Major Programming Languages

An Overview of Java. overview-1

Morris School District. AP Computer Science A Curriculum Grades 9-12

The System Designer's Guide to VHDL-AMS

Embedded Systems. Review of ANSI C Topics. A Review of ANSI C and Considerations for Embedded C Programming. Basic features of C

Windows PowerShell Essentials

Morris School District. Computer Science 2 Curriculum Grades 9-12

Object Oriented Design

Transcription:

Java (12 Weeks) Topic Lecture No. Introduction to Java Programming Language 1 An Introduction to Java o Java as a Programming Platform, The Java "White Paper" Buzzwords, Java and the Internet, A Short History of Java, Common Misconceptions about Java. The Java Programming Environment o Installing the Java Development Kit, Choosing a Development Environment The Java Programming Environment 2 Using the Command-Line Tools, Using an Integrated Development Environment, Compiling and Running Programs from a Text Editor, Running a Graphical Application, Building and Running Applets. Introduction to Object Oriented Programming 3 Thinking Object-Oriented. Why Is OOP Popular? A New Paradigm, A Way of Viewing the World. Abstraction Layers of Abstraction, Other Forms of Abstraction. Fundamental Programming Structures in Java 4 A Simple Java Program, Comments Operators o Arithmetic Operators-The Basic Arithmetic Operators, The Modulus Operator, Arithmetic Assignment Operators, Increment and Decrement. o The Bitwise Operators, The Bitwise Logical Operators, The Left Shift, The Right Shift,The Unsigned Right Shift, Bitwise Operator Assignments. o Relational Operators o Boolean Logical Operators o Logical Operators. o The Assignment Operator. o The? : Operator Operator Precedence. o Using Parentheses Strings, Input and Output

Fundamental Programming Structures in Java Variables o Declaring a Variable o Dynamic Initialization o The Scope and Lifetime of Variables o Type Conversion and Casting Data Types o Integers: byte, short, int, long o Floating-Point Types: float, double o Characters o Booleans Control Flow o The if Statement o Switch statement o The for Loop Control Flow o Do while loop o while loop o Nested loops o break and continue Big Numbers Arrays. o One-Dimensional Arrays o Multidimensional Arrays o Alternative Array Declaration Syntax Classes and Methods Encapsulation, Class Definitions, Methods. o Introduction to Object-Oriented Programming, Using Predefined Classes, Defining Your Own Classes. Static Fields and Methods, Method Parameters o Introducing Methods, Adding a Method to the Box Class, Returning a Value., Adding a Method That Takes Parameters, Constructors, Parameterized Constructors, this Keyword. Messages, Instances, and Initialization Message-Passing Syntax, Statically and Dynamically Typed Languages Accessing the Receiver from Within a Method, Object Creation, Pointers and Memory Allocation, Constructors {Constant Values}, Destructors and Finalizers. Packages, Documentation Comments, Class Design Hints. Object Construction o Declaring Objects, A Closer Look at new, Assigning Object Reference Variables. 5 6 7,8 9,10 11

Inheritance and Substitution An Intuitive Description of Inheritance, Inheritance in Various Languages, Subclass, Subtype, and Substitution, Overriding and Virtual Methods, Interfaces and Abstract Classes. Classes, Superclasses, and Subclasses, Object: The Cosmic Superclass, Generic ArrayLists Inheritance and Substitution Forms of Inheritance, The Benefits of Inheritance, The Costs of Inheritance. Examples (Language independent). Object Wrappers and Autoboxing, Reflection Static and Dynamic Behavior Static versus Dynamic Typing, Static and Dynamic Classes, Static versus Dynamic Method Binding. Multiple Inheritance Inheritance as Categorization, Problems Arising from Multiple Inheritance, Inner Classes. Enumeration Classes, Design Hints for Inheritance. Interfaces, Object Cloning, Interfaces and Callbacks, Inner Classes, Proxies. Polymorphism and Software Reuse Polymorphism in Programming Languages, Mechanisms for Software Reuse, Efficiency and Polymorphism, Will Widespread Software Reuse Become Reality? Overloading and Overriding Type Signatures and Scopes, Overloading Based on Scopes, Overloading Based on Type Signatures, Redefinition, Notating Overriding, Replacement versus Refinement, Deferred Methods, Overriding versus Shadowing, Covariance and Contra variance. Exceptions and Debugging Dealing with Errors, Catching Exceptions, Tips for Using Exceptions, Logging, Using Assertions, Debugging Techniques, Using a Debugger. Streams and Files The Complete Stream Zoo, ZIP File Streams, Use of Streams, Object Streams, File Management, New I/O, Regular Expressions. Introduction to GUI AWT Architecture, Light-Weight vs Heavy-Weight, AWT Event Model, AWT Event Hierarchy & Event Handling, Using Top-Levels, components and containers 12 13,14 15-17 18,19 20 21-22 23

Introduction to GUI Introduction to Layouts, Focus Architecture. Java2D Rendering Model, Strokes & Fills, Geometries, Fonts and Text Layout, Transformations. Display and manipulation of Images and offscreen buffers, Using Color, Printing through Java Doing More with Images using Image IO, Hardware Acceleration and Active Rendering techniques. The Model-View-Controller Design Pattern, Introduction to Layout Management Text Input, Choice Components, Menus, Sophisticated Layout Management Dialog Boxes Deploying Applets and Applications Applet Basics,The Applet HTML Tags and Attributes Deploying Applets and Applications Multimedia, The Applet Context, JAR Files, Application Packaging, Java Web Start, Storage of Application Preferences. Database Programming The Design of JDBC The Structured Query Language o Introduction to relational database,primary key, foreign key,examples of relational database,joins ( inner, outer, Cartesian ),Select,Where,Order by,group by. Having.,Insert, update, delete. JDBC Installation Database Programming Basic JDBC Programming Concepts o JDBC-ODBC Bridge, JDBC Drivers, Creating DSN. Query Execution o DriverManager, Connection, Statement, ResultSet. Scrollable and Updatable Result Sets, Metadata, Row Sets, Transactions, Advanced Connection Management, Introduction to LDAP. Introduction to UML Introduction, An outline Development Process and Use cases o What Is the UML?, How We Got Here, Notations and Meta- Models, Why Do Analysis and Design?, Overview of the Process, Inception,Elaboration, Planning the Construction 24 25 26 27 28 29 30 31 32-34 35

Phase, Construction, Transition, When to Use Iterative Development Introduction, An outline Development Process and Use cases 36 Use Case Diagrams, Business and System Use Cases, When to Use Cases. Perspectives, Associations, Attributes, Operations, Generalization, Constraint Rules, When to Use Class Diagrams, Stereotypes, Object Diagram 37 Class Scope Operations and Attributes, Multiple and Dynamic Classification, Aggregation and Composition, Derived Associations and Attributes, Interfaces and Abstract Classes, Reference Objects and Value Objects 38 Collections for Multivalued Association Ends, Frozen, Classification and Generalization, Qualified Associations, Association Class, Parameterized Class, Visibility. Interaction Diagrams, Packages and Collaborations 39 Sequence Diagrams, Collaboration Diagrams, Comparing Sequence and Collaboration Diagrams, When to Use Interaction Diagrams, Packages, Collaborations, When to Use Package Diagrams and Collaborations. State and Activity Diagrams 40 Concurrent State Diagrams, When to Use State Diagrams, Decomposing an Activity, Dynamic Concurrency, Swimlanes, When to Use Activity Diagrams. Physical Diagrams Deployment Diagrams, Component Diagrams, Combining Component and Deployment Diagrams, When to Use Physical Diagrams. Case Studies 41-43 Review 44