Can we create object of abstract class?
No Answer is Posted For this Question
Be the First to Post Answer
What is interface in oop?
In c++ there is only virtual destructors, no constructors. Why?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
Prepare me a program for the animation of train
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort
which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
What are the benefits of polymorphism?
what is difference between objects and function
What are the main differences between procedure oriented languages and object oriented languages?
9 Answers IBM, Infosys, Wipro,
What is the main feature of oop?
Write on signed and unsigned integers and give three (3) examples each
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,