Tell us about yourself.

Answer Posted / varsha vilas kalebag

hi a m varsha vilas kalebag, i stay at vikhroli .i am
staying with my parents,my mom is house wife & my dad is
retired & currently working in doordarshan as operational
engineer

Is This Answer Correct ?    13 Yes 74 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include #include #include #include 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

2174


What is class encapsulation?

614


what is different between oops and c++

2006


Which type does string inherit from?

621


How to hide the base class functionality in Inheritance?

648






Can destructor be overloaded?

603


What is the difference between procedural programming and oops?

565


What does it mean when someone says I oop?

591


What are constructors in oop?

602


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2040


What is oops and its features?

594


How does polymorphism work?

641


What is polymorphism what is it for and how is it used?

577


Why do we use oop?

609


Can we have inheritance without polymorphism?

621