Skip to content
This repository has been archived by the owner on Jun 12, 2021. It is now read-only.

Latest commit

 

History

History

object-oriented-programming

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Object Oriented Programming (IT531/1)

Basic programs on the concepts of object oriented programming paradigm written in Java.

  • Assignment 1: Classes and Objects
  • Assignment 2: Classes, Objects, and Abstract Classes
  • Assignment 3: Interfaces
  • Assignment 4: Exception Handling and Packages

Comments

In each assignment directory, programs directory contains all the Java code for individual programs. bin directory is a package, having the same .java files as previous, with package declaration in addition. This directory also includes the class files produced post compilation.

Every assignment directory also includes a java program called Treadmill.java and its compiled class. This program can be used to run the programs inside bin. Run a program, say Q1 with arguments 10, 15, with: java Treadmill 1 10 15