Home

Quick Course Intro

Java API documentation

Course Description
Introduction to Java programming. Computing context, primitive types, flow of control constructs, operators, text I/O, objects and classes, interfaces, packages, GUI, exceptions, and threads.
 
Check Syllabus for more details on the course. 
I recommend putting each assignment due dates, class lecture time and exam dates on your calendar so you don't forget.

Announcements

  • Questions on Scope Management discussed in class. Scope Experimentspackage p1;class c1 {    private static int x;    protected static void setx(int x)    {        c1.x = x;    }}package p1;class c2 {    protected c2() {       c1.setx(10);    }}//Is it ...
    Posted Feb 8, 2012 8:02 PM by Sukhjit Singh
  • brief talk on cloud computing
    Posted Dec 6, 2011 8:04 PM by Sukhjit Singh
  • Exception Handling Example covered in classclass FileSizeEx extends Exception {    FileSizeEx() { }    //can add remedy methods here.    //can add exception tracing methods ..written to a file/db.     void fixtheproblem() {        try {            Test1.openfile("abc ...
    Posted Nov 22, 2011 7:42 PM by Sukhjit Singh
  • Coding standards for assignments Coding standards>>Indent your code.>>ordering your code    instance variables, static variables    instance methods, static methods.>>put a main in each class - test it.>>put one class per file. (unless ...
    Posted Oct 20, 2011 7:57 PM by Sukhjit Singh
  • Inheritane Demo
    Posted Oct 18, 2011 7:31 PM by Sukhjit Singh
  • Battery and Clock objects
    Posted Oct 11, 2011 8:35 PM by Sukhjit Singh
  • Programming Exercise - Guessing Game from class. Please see attached. A small exercise on looping, decision making construction and writing functions.
    Posted Oct 4, 2011 8:16 PM by Sukhjit Singh
  • Sixth edition of textbook available online Check - http://dl.dropbox.com/u/5542316/Introduction%20to%20Java%20Programming%20-%20Comprehensive%20Version.pdf 
    Posted Sep 27, 2011 8:56 PM by Sukhjit Singh
  • Sample Final Questions Pl. see the attachments
    Posted Mar 21, 2011 9:10 AM by Sukhjit Singh
  • Sample Midterm Questions 1. [10  points]   (a) Write a class "Telephone" to describe Telephone. Assume that the characteristics of telephone s we wish to model are:   the number of buttons on the telephone ...
    Posted Feb 9, 2011 6:15 AM by Sukhjit Singh
Showing posts 1 - 10 of 15. View more »