--%>

Advantages of Object oriented programming language

Q. What are the advantages of Object Oriented Programming languages? Explain them.

Ans. : Object oriented programming language has following advantages-

Code reusability in terms of inheritance. Object oriented system can be simply upgraded from one stage to another. Complex project can be divided into small code function. Rapid development of software can be done in short time. Software complexity reduces. Principle of observation and encapsulation enables a programmer to build secure programmes. Data hiding helps programmer to design and develop safe programme. More than one instance of same class can exist together without may interface.

 

 

   Related Questions in Programming Languages

  • Q : Define the term Base case Define the

    Define the term Base case: It is a non-recursive route via a recursive method.

  • Q : Describe Overriding for restriction

    Overriding for restriction: It is a form of method overriding in which the sub-class version of a method calls the super-class version first of all and then employs or manipulates the outcome or consequences of that call in some manner.

  • Q : Explain the role XSL that dynamically

    Explain the role which XSL can play while dynamically generating HTML pages by a relational database?

  • Q : Define Hardware Hardware : It is the

    Hardware: It is the physical devices of a computer system, like its micro-chips, keyboard, disk drives, printer, sound card, and so forth. It is termed `hardware' in contrary to programs, which are termed `software'.

  • Q : Write a program to display its negative

    Write a program in object code that reads a single digit decimal number and displays its negative in binary.  To do this, you must first read the number as a character and then convert it to its numeric value, as discussed in class.  Then, you're going to change this to a negative numbe

  • Q : What is UNIX Explain, what is UNIX?

    Explain, what is UNIX?

  • Q : Define Data type Data type : There are

    Data type: There are 8 primitive data types in Java; five of such symbolize numerical types of changeable range and precision - float, double, int, long and short. The remaining three are employed to symbolizing single-bit values (that is, Boolean), s

  • Q : Reference variables Reference variable

    Q : Security Manager on Applets Write down

    Write down some of the restrictions imposed by using a Security Manager on Applets?

  • Q : What is Block Block : The statements

    Block: The statements and declarations are enclosed between a matching pair of curly brackets ({ and }). For example, a class body is a block, as it is a method body. The block surrounds a nested scope level.