Skip to main content

How I teach Java in 1hr 5 sessions

I know a lot of people can disagree with this but I am trying to keep it simple and as only my own opinion.

It took me more than 5 yrs to design this syllabus to help beginners learn and get motivated to program in Java. When I started teaching I use to take 10-15 days to teach java and I can clearly see on participants faces that they were not confident even after spending so much time with them. However recently I was able to successfully use a shorter And I am sure this won't be the final one and it will change a lot after few more batches. And the only way I do this is by
focusing on important concepts and cutting dumb one's in a language to accomplish my objectives.

Session 1
  1.   Data Types (int, double, String )  Class Notes
  2.   Operators (Arithmatic - +,-,*,/ )
  3.   Functions
  Homework -

  •  Write 50 functions and execute them from main method            
  •  Write functions with 0 or more input parameters
  •  Write functions that returns a value



Session 2 (Point here is to introduce Objects early and not to bullshit with amazing powers of Object, keep it simple)
  1.   Introduce Class and Objects 
  2.   Introduce Java Beans Classes (i.e. Objects with only Data) 
  3.   Introduce Classes with only functions (i.e. Service Layer or Business Logic Classes)
  4.   Introduce ArrayList (i.e. Object with data and logic to operate on it)
  5.   Summary - We mostly use Object in the above three ways.
  Homework -

  •  Write 20 Java Beans classes              
  •  Write some classes which operates on the above classes as Service Layer or Business Logic


 Session 3 (Write Simple Applications)
  1.  ContactApp - Contact Java Bean class and ContactService with ArrayList to add and getAll functions
  2.   FeedbackApp - Feedback.java bean and FeedbackService for add and getAll
  3.  RegistrationApp
 Session 4 (Try writing more simple applications, introduce interface)
  1.   Introduce Interfaces
  2.   Introduce Map, HashMap, List, ArrayList, Set, HashSet
  3.   Start writing interfaces for Service classes introduced in Session-2 & Session-3
  Homework

  •    Exception handling              
  •    Write 5 small two class apps


 Session 5 (Write more small apps and introduce control and loop statements)
  1.    Introduce Control and Loop statements
  2.    Build 3 small apps with 2 Java Beans, Interface and Implementation
    Homework - Learn from the book (Arrays, Generics, Annotations)


  

Comments

Anonymous said…
could you post pdf's of the courses or make future posts were you walk us through every sesion
Hi dude, I didn't see Thread part of your syllabus , am I missing something or its purposefully left out, In my opinion Thread is something you can not ignore if you are doing Java programming.

Javin
Why String is immutable in Java
afx_efx said…
+1 on the pdf's or possibly videos?
Updated blog with Class notes
nofearinc said…
I'm also interested in the PDFs, however I didn't quite get is this 5x1h sessions or a total of 1 hour (which seems impossible to me)? We do trainings with 16h of lectures and 32h of exercises for beginners and it's been proved to work here for most people - the more intense, the higher the chance that people didn't get the basic concepts.
IT said…
I have read your blog its very attractive and impressive. I like it your blog.

Java Training in Chennai Core Java Training in Chennai Core Java Training in Chennai

Java Online Training Java Online Training Core Java 8 Training in Chennai java 8 online training JavaEE Training in Chennai Java EE Training in Chennai

Popular posts from this blog

Access multiple Databases in JPA

According to JPA specification we can define multiple "persistence-unit" elements (i.e. like below) in persistence.xml file and can easily refer them inside Dao layers as this. public class PolarDaoImpl {     @PersistenceContext(unitName="PolarPU")     protected EntityManager entityManager; -- } public class BearDaoImpl {     @PersistenceContext(unitName="BearPU")     protected EntityManager entityManager; -- } Checkout sample persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">     <!-- Database 1 -->     <persistence-unit name="PolarPU" transaction-type="RESOURCE_LOCAL">        ...

Validating CSV Files

What is CsvValidator ?   A Java framework which validates any CSV files something similar to XML validation using XSD. Why should I use this ?   You don't have to use this and in fact its easy to write something your own and also checkout its source code for reference. Why did I write this ?   Some of our projects integrate with third party application which exchanges information in CSV files so I thought of writing a generic validator which can be hooked in multiple projects or can be used by QA for integration testing. What is the license clause ?   GNU GPL v2 Are there any JUnit test cases for me checkout ?  Yes,  source How to integrate in my existing project ? Just add the Jar which can be downloaded from here  CsvValidator.jar  and you are good. Instantiate  CsvValidator c onstructor which takes these 3 arguements          // filename is the the file to be validated and here ...
               Top 10 Apps missing in HP TouchPad Without these Apps my experience is only limited to browsing web pages, though WebOS is really better multitasking device than iOS but without commonly used Apps it's only limited. 1. Native YouTube App   - You can't just use finger to do everything on 60% YouTube.com                       2. Netflix - I love to do multitasking, with Netflix running and ability to do other stuff     3 Facebook - Most of the people always like to be connected all the time here   My Mistake Skype Video is working     4  Skype - Ability to do voice and video chat, and without this I need to keep my Mac on.   5 Google Talk - Ability to do voice, video chat...