Just Do Study - IGNOU Assignments Site

Wednesday, 17 October 2012

IGNOU MCA 1ST SEM SOLVED ASSIGNMENTS 2012-13


IGNOU MCA First Semester Solved Assignments For July-January-2012-13 Session is now available here at Free of Cost .


MCA First Semester Solved Assignments Details :

1 - Problem Solving and Programming (MCS-011)

Download MCS-011 Solved Assignment 2012-13


Updated

2 - Computer Organisation and Assembly Language (MCS-012)

Download MCS-012 Solved Assignment 2012-13


Shared By Rohit


3 - Discrete Mathematics (MCS-013)

Download MCS-013 Solved Assignment 2012-13


4- Systems Analysis and Design (MCS-014)

Download MCS-014 Solved Assignment 2012-13


5 - Communication Skills (MCS-015)

Download MCS-015 Solved Assignment 2012-13


6 - Internet Concepts and Web Design (MCSL-016)

Download MCSL-016 Solved Assignment 2012-13


7 - C and Assembly Language Programming (MCSL-017)

Download MCSL-017 Solved Assignment 2012-13


Remaining Assignments will be added Asap. For More Updates Join us on Facebook . & For Any Assignments or for any Query, You can Directly Mail Us justdostudy@gmail.com

Thursday, 11 October 2012

History of JAVA

Java is a programming language and a platform independent.

Let's see some points that describes the history of java.

* James Gosling, Mike Sheridan, and Patrick Naughton initiated the Java language project in June 1991.
* Originally designed for small, embedded systems in electronic appliances like set-top boxes.
* Initially called Oak and was developed as a part of the Green Project.
* In 1995, Oak was renamed as "Java". Java is just a name not an acronym.
* Originally developed by James Gosling at Sun MIcrosystems(which is now a subsidiary of Oracle 
    Corporation) and released in 1995.
* JDK 1.0 released in January 23, 1996.

Procedure of Software Developing


Let's take an Example

Step -1
An Architect in an Building Development, It first create Prototype
(Dummy Model).

Same in Software Company having an Architect who develop the skeleton
of the Software (Dummy Model) , by using
Interfaces.

Step - 2

Saturday, 6 October 2012

Java Tutorials: Finalize and Garbage Collector Example

class TT extends Object
{
 TT()
 {
 System.out.println("TT Class Default Constructor ");
 }
 protected void finalize()
 {
 System.out.println("TT Object Going to Dead....");
 }
}
 public class SystemClassDemo3 {
 public static void main(String args[])
 {
 TT obj = new TT(); // Strong Reference
 System.gc();
 System.out.println("Now I am Going to Null the Obj ");
 obj = null;
 System.gc();
 System.runFinalization();
 }
}