UrbanPro

Learn Programming Languages from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

what is the difference b/w object based programming language and object oriented programming language?

Asked by Last Modified  

Follow 0
Answer

Please enter your answer

Microsoft Technology Consultant

The way u interact with the things in ur real world. Example : A human interact with Library, Library interact with Publisher, Publisher interact with Colleges, College interact with Human(student)….. College inherits Anna University for the usage of Question paper. Anna University put some rules to...
read more
The way u interact with the things in ur real world. Example : A human interact with Library, Library interact with Publisher, Publisher interact with Colleges, College interact with Human(student)….. College inherits Anna University for the usage of Question paper. Anna University put some rules to the Colleges ,…….. See every things getting interact with each other. In Similar way we can do coding with the help of OOP. read less
Comments

Object-oriented language doesn't has in-built object. It has all feature of OOP. Object-based language doesn't support all the features of OOPs like Polymorphism and Inheritance.
Comments

Realtime Data integration Expert and trainer

The main diffrence between object oriented and object based languages is object based languages doesn't support Inheritance where as object oriented supports. c# is a object oriented language because it supports inheritance and asp.net is not a langugae it is a technology.......
Comments

Coaching

Object oriented language support all feature of OOPS i.e. Encapsulation, Inheritance and polymorphism. Object based language doesn’t supports OOPS concept. Example Object oriented languages are C++, Java, C# ... Object based language is Ada, JavaScript, and Visual Basic (VB) Object-oriented language...
read more
Object oriented language support all feature of OOPS i.e. Encapsulation, Inheritance and polymorphism. Object based language doesn’t supports OOPS concept. Example Object oriented languages are C++, Java, C# ... Object based language is Ada, JavaScript, and Visual Basic (VB) Object-oriented language doesn't has in-built object. Object-based language has in-built object like javascript has window object. read less
Comments

Object oriented language: Object-oriented language supports all the features of OOPs. Object-oriented language doesn't has in-built object. Object-oriented languages are C++, C#, Java etc. Object based language: Object-based language doesn't support all the features of OOPs like Polymorphism and...
read more
Object oriented language: Object-oriented language supports all the features of OOPs. Object-oriented language doesn't has in-built object. Object-oriented languages are C++, C#, Java etc. Object based language: Object-based language doesn't support all the features of OOPs like Polymorphism and Inheritance Object-based language has in-built object like javascript has window object. Object-based languages are Javascript, VB etc. read less
Comments

c,c++,vb,vb.net,php.joomal,basic,all computer subjects

Object oriented language Object-oriented language supports all the features of OOPs. Object-oriented language doesn't has in-built object. Object-oriented languages are C++, C#, Java etc. Object based language Object-based language doesn't support all the features of OOPs like Polymorphism and Inheritance Object-based...
read more
Object oriented language Object-oriented language supports all the features of OOPs. Object-oriented language doesn't has in-built object. Object-oriented languages are C++, C#, Java etc. Object based language Object-based language doesn't support all the features of OOPs like Polymorphism and Inheritance Object-based language has in-built object like javascript has window object. Object-based languages are Javascript, VB etc. read less
Comments

IT Professional Trainer working with a reputed Institute. Headquarters: Hyderabad

Object Oriented and Object based languages -- 1. Object-Oriented Language supports all the features of OOPs and Object-Based Language doesn't support all the features of OOPs like Polymorphism and Inheritance. 2. JavaScript is an Object Based and Java is an Object Oriented Programming Language.
Comments

Computer Expert

In Object-Based we dont have inheritance, whereas in Object-Oriented we do. Javascript is OB and Java is OO programming language.
Comments

IT Professional Trainer with 15 years of experience in IT Industry

Object Based Language 1. Object Based Language does not support all the features of OOPS. 2. Object Based Language Does Not Support Oops feature i.e. Inheritance. 3. Visual Basic is an Object based Programming Language because you can use class and Object here but can not inherit one class from...
read more
Object Based Language 1. Object Based Language does not support all the features of OOPS. 2. Object Based Language Does Not Support Oops feature i.e. Inheritance. 3. Visual Basic is an Object based Programming Language because you can use class and Object here but can not inherit one class from another class i.e. it does not support Inheritance. 4. Javascript, VB are example of Object Based Language. Object Oriented Language 1. Object Oriented Language supports all the features of OOPS. 2. Object Oriented Language supports all the Features of Oops including Inheritance. 3. Java is an Object Oriented Languages because it supports all the concepts of Oops like Data Encapsulation, Polymorphism,Inheritance,Data Abstraction , Dynamic Binding etc. 4. C#, Java, VB. Net are example of Object Oriented Languages. read less
Comments

Software Professional Trainer with 26+ years of Experience in Software Design and Development

Object-oriented language doesn't has in-built object. It has all feature of OOP. Object-oriented languages are C++, C#, Java etc. Object-based language has in-built object. It doesn't support all the features of OOPs like Polymorphism and Inheritance. Example JavaScript has window object. Another...
read more
Object-oriented language doesn't has in-built object. It has all feature of OOP. Object-oriented languages are C++, C#, Java etc. Object-based language has in-built object. It doesn't support all the features of OOPs like Polymorphism and Inheritance. Example JavaScript has window object. Another example is VB. read less
Comments

View 9 more Answers

Related Questions

What is a local block in C programming?
the statements within the braces { } is known as local block
Rakhi
0 0
6
Explain about member functions?
Member functions are part of the class, member functions are used to access, member variable in private, protected, public area and also call another member functions.
Zeeshan
0 0
5
Why c++ introduced reference variable?
C++ references allow you to create a second name for the a variable that you can use to read or modify the original data stored in that variable.
Sunita

What are the future career opportunities after Python certification courses?

You can go for many career paths depending upon your interest. The most prominent of them are as follows: Python developer for automation Data Analyst ETL developer Web-Application Developer Machine Learning Expert Data Scientist Data Engineer
Rajnish
What is the use of getch(); in the end of c program
getch() is used to hold the console(output) window on the screen after the whole program run is completed till the user enters a key from keyboard. However, the character entered is not displayed on screen....
Priyanka

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

What is Python Egg?
(Attention: This is a technical post for Python developers. If you are not python programmer you might want to skip this). An .egg format files in Python is the standard distribution package contains...

Top Programming Languages 2017: Every Beginner Should Learn
Every year a plethora of job opportunities are being created for skilled programmers. So if you are thinking of honing your coding skills it is really a bright idea. But with so many programming languages...

PHP
It is the base for many of the ecommerce websites. Many of the CMS develpoped in PHP platform.If programming cant done inititally try to think for logics and develop writing algorithms. Any doubts divyaravindiran@gmail.com.

A python program using the datetime module
Task : To write a program in Python to find out, in any given year, Friday the 13th dates i.e 13th day of a month which was a Friday. ...

Two lists using Loops - Python Program 1
To generate a list of all possible combinations of two lists using loops, you can use nested loops to iterate through both lists and create a new list that contains all the combinations. list1 = list2...

Recommended Articles

Software Development has been one of the most popular career trends since years. The reason behind this is the fact that software are being used almost everywhere today.  In all of our lives, from the morning’s alarm clock to the coffee maker, car, mobile phone, computer, ATM and in almost everything we use in our daily...

Read full article >

Hadoop is a framework which has been developed for organizing and analysing big chunks of data for a business. Suppose you have a file larger than your system’s storage capacity and you can’t store it. Hadoop helps in storing bigger files than what could be stored on one particular server. You can therefore store very,...

Read full article >

Information technology consultancy or Information technology consulting is a specialized field in which one can set their focus on providing advisory services to business firms on finding ways to use innovations in information technology to further their business and meet the objectives of the business. Not only does...

Read full article >

Applications engineering is a hot trend in the current IT market.  An applications engineer is responsible for designing and application of technology products relating to various aspects of computing. To accomplish this, he/she has to work collaboratively with the company’s manufacturing, marketing, sales, and customer...

Read full article >

Looking for Programming Languages Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for Programming Languages Classes?

The best tutors for Programming Languages Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Programming Languages with the Best Tutors

The best Tutors for Programming Languages Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more