Can we define a class within the interface?
No Answer is Posted For this Question
Be the First to Post Answer
What is an interface in oop?
what is a virtual class?
5 Answers Cap Gemini, IBM, Infosys, Trinity Technologies,
#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
What are the three parts of a simple empty class?
What is cohesion in oop?
what is single inheritance?
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
What is virtual constructors/destructors?
How do you achieve polymorphism?
What do you mean by inheritance?
Can java compiler skips any statement during compilation time?
JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?