Tell us about yourself.

Answer Posted / ishita

Hi,this is ishita,doing bca 4th sem.i would like to
introduse my self in truly tht i like to face challenges
nd my achived goal is also caz of my this type of
attitude.m lil sensitive.would like to listen soft music.my
aim is to bcome software engeener.one n badly my weak point
is tht i never let go person who cheats nd who is lier.
Thanks for have interest to knw myself

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use polymorphism?

561


Can abstract class have normal methods?

600


Can you explain polymorphism?

571


What is the real life example of polymorphism?

597


What are the important components of cohesion?

546






What is super in oop?

586


Get me an image implementation program.

1550


can inline function declare in private part of class?

3642


#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

2155


What is encapsulation in oop?

599


Is react oop?

601


What are oops methods?

558


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

1644


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1399


Can you name some types of inheritance?

629