answersLogoWhite

0

To simplify programming, increase code re-use, and make maintenance of programs easier.

To simplify programming, increase code re-use, and make maintenance of programs easier.

To simplify programming, increase code re-use, and make maintenance of programs easier.

To simplify programming, increase code re-use, and make maintenance of programs easier.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How visual basic.net become object oriented programming?

Visual Basic has always been an object oriented language. VB.NET is no different, but it also conforms to the Microsoft Common Language Infrastructure (CLI) which allows VB code interoperate with other CLI languages including C# and J#.


What is pure object oriented language?

Object-oriented (OO) applications can be written in either conventional languages or OOPLs, but they are much easier to write in languages especially designed for OO programming. OO language experts divide OOPLs into two categories, hybrid languages and pure OO languages. Hybrid languages are based on some non-OO model that has been enhanced with OO concepts. C++ (a superset of C), Ada 95, and CLOS (an object-enhanced version of LISP) are hybrid languages. Pure OO languages are based entirely on OO principles; Smalltalk, Eiffel, Java, and Simula are pure OO languages.Reference: Tokar, Joyce L. "Ada 95: The Language for the 90's and Beyond."" According to me JAVA is not a pure oop Language ,because java contains primitive datatypes that's not an Objects."SmalltalkEiffeljavaa programming language that includes all the oops concepts i,e object, class , inheritance,abstraction, encapsulation, data binding, and message passing is called a completely object oriented programming.. example:java.


Why is there need for different programming languages?

Confusing, isn't it? Having to deal with several programming languages. Different programming languages have been created, because of insatisfaction with existing languages. Also, attempts have been made to make programming languages better every time. Also, some languages have been developed for specific purposes - for example, ActionScript was specifically developed to give programming capabilities to Flash animations. Some languages have been developed just for fun. For example, a language called brainf*** was deliberately made hard to understand - but the language is still "Turing-complete", which basically means that in theory, anything can be programmed with it. Let me give a few examples. C++ evolved from C, adding object-oriented capabilities. But in the process, compatibility with C was retained; this was an important design goal. On the other hand, the developers of Java took many of the elements of C++, but eliminated certain aspects which they considered unsafe. Thus, Java is similar to C++, but it is not compatible - a program designed in C++ will not compile in Java.


What is c plus plus called object oriented programming language?

C++ is an extension of C; object-oriented capabilities - basically, the possibility of defining classes and of creating objects based on those classes - have been added to the original C.C++ is an extension of C; object-oriented capabilities - basically, the possibility of defining classes and of creating objects based on those classes - have been added to the original C.C++ is an extension of C; object-oriented capabilities - basically, the possibility of defining classes and of creating objects based on those classes - have been added to the original C.C++ is an extension of C; object-oriented capabilities - basically, the possibility of defining classes and of creating objects based on those classes - have been added to the original C.


Which is 100 percent object oriented language?

There are relatively few 100% object-oriented programming languages, with C#, Ruby and SmallTalk being notable exceptions. Languages such as Java are not 100% object-oriented purely because they still maintain the concept of primitive data types, such as int and char, which are simply not capable of being treated as true objects.


What programming languages have been developed?

Wikipedia lists a few hundred, see related link.


What have been the strongest influences on programming language design over the past 50 years?

Object oriented analysis and design.


What advances have been made in the field of artificial intelligence?

programmers have developed computer games that can "outthink" humans. In the area of natural languages, voice recognition software has been developed to convert spoken words to written words


What is object oriented matlab?

first of all my question is what is the mean of matlab?anywayObject-oriented programming (OOP) is a programming language model organized around "objects" rather than "actions" and data rather than logic. Historically, a program has been viewed as a logical procedure that takes input data, processes it, and produces output data.Object-OrientedProgramming (OOP) uses a different set of programming languages than old procedural programming languages (C, Pascal, etc.).using "objects" usually instances of a class consisting of data fields and methods


What are some of the second generation computer programming languages?

Historically, 3GL languages were high-level languages that developed alongside third generation hardware. There were no 2GL or 1GL languages prior to that time, but the terms were applied reflexively such that 2GL included all high-level languages prior to 3GL, and 1GL became assembler language. Later, all high-level languages were regarded as 3GL, assembler as 2GL and machine code as 1GL. However, the terms have no practical meaning or purpose, nor do the terms 4GL and 5GL which followed. They are all meaningless buzzwords used by marketing types, and have largely fallen into dis-use. Some attempts have been made to clarify their meaning, but none have caught on and ultimately they simply serve to confuse. Languages are correctly classified by whether they are imperative, functional, procedural, structured, object-oriented, domain-specific, hybrid, etc.


Which is not the language of computer programming?

Although English is the dominant language of computer languages, this is primarily because a third of all known languages were developed in English-speaking countries, while languages developed in other countries typically use English in order to appeal to a wider audience. However, there are still many non-English programming languages, including symbolic languages, as well as conversions of English-based languages to suit non-English cultures. As to which languages are not used, it would be easier to list those that are or have been used. See related links, below.


How can a called function determine the number of arguments that have been passed to it?

It is not the function but the compiler or interpreter which interprets the code. When the program is compiled and run the compiler checks the entire code line by line to check which function is called. If you encounter polymorphism in other Object Oriented Languages it would be more clear how a function with same name and different arguments are called.