What is the difference between an object and a class?
Answers were Sorted based on User's Feedback
Answer / manas
a class is a datatype that abstratcs data and implementations
while an object is an instance of the class which wraps up data. An object has identity, state and behavior
| Is This Answer Correct ? | 2 Yes | 0 No |
What is inheritance in simple words?
WHAT IS ABSTRUCT DATA TYPE ? PLEASE EXPLAIN IT.
143.what is oops principles?
what are abstract classes and how they impliment , with example
What are the advantages of inheritance?
26 Answers IBS, TCS,
What is encapsulation process?
Why static Function is used in C++?
#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
Write an operator overloading program to write S3+=S2.
Definition of Object Oriented Programming in single line?
33 Answers Impact Systems, Q3 Technologies, TCS,
What is destructor oops?
Why do we need polymorphism in c#?