Answered Questions

  • More than One Class

    If more than one class is present in one Java file then what will be the java file name?

    zshekhtm

    • Dec 10th, 2010

    You can have more than one class in the same Java source file but only one class can be public in any source file and its name should correspond to the name of a source file. This public class should have main() implemented.

  • What is OOPS?

    OOP is the common abbreviation for Object-Oriented Programming. 

    Star Read Best Answer

    Editorial / Best Answer

    Answered by: shahistha

    • Dec 5th, 2005


    OOPs is an Object Oriented Programming language,which is the extension of Procedure Oriented Programming language.OOps reduce the code of the program because of the extensive feature of Polymorphism.OOps have many properties such as DataHiding,Inheritence,Data Absraction,Data Encapsulation and many more.

    MD SADDAM HUSSAIN

    • Mar 22nd, 2016

    OOPs. Object Oriented Programming is a paradigm that provides many concepts such as inheritance, data binding, polymorphism etc.

    pooja odhekar

    • Feb 28th, 2013

    OOPS provides features like polymorphism, inheritance, abstraction.