Definition of Object Oriented Programming in single line?
Answers were Sorted based on User's Feedback
Answer / nikhil surathkal
Object Oriented Programming is a method of programming
based on hierarchie of classes and well defined and
cooperating objects.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ajay
Object oriented programming is way to design real world
application with the help of objects.
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / veera brahmam m
An Object-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.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / nirmala
it is a programming paradiam which is used a object
| Is This Answer Correct ? | 19 Yes | 17 No |
Answer / bhawani shankar tripathi
Object oriented progranning is a type of methodology used
for building software applications,it consist of
classes,object,and methods.
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / rampal singh
object-oriented progrmming is an approch that provide a way
of modularizing program by creating partitioned memory area
for both data and function that can be used as templete for
creating copies of such moduals on demand
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / santosh
OOPS is the language use to write a real world software
which binds the data and associated funtions together.
| Is This Answer Correct ? | 9 Yes | 8 No |
Answer / manoj
OOPs is a Programming Model in which everything in real
world is consider as Objects
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / rampal singh
In Object Oriented Programming, a class defines a type of
variable.
An object doesn't exist until an instance of the class has
been created; the class is just a definition. When the
object is physically created, space for that object is
allocated in RAM. It is possible to have multiple objects
created from one class.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / shailesh shrivastava
OOPS is a collection of concepts or a technique that helps
to develop well define application .
| Is This Answer Correct ? | 2 Yes | 1 No |
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort
What is the difference between abstraction and polymorphism?
wht is major diff b/w c and c++?
Whats is abstraction in oops?
What are the 4 pillars of oop?
What is design patterns in C++?
What language is oop?
What do you mean by overloading?
what is single inheritance?
What makes a language oop?
Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.