Tell us about yourself.

Answer Posted / miss.s.manimehala

Hai,
I am Miss.S.Manimehala,I am doing 2nd Mca in RVS College
of Engineering & Technology.I have done my ug in vvv Womens
college and i got 71% in that.About my family, My mother is
a teacher and my father is a farmer.
My ambition is to become a software engineer.
My hobby is writing programs,Hearing music,travelling.
My strength is honesty @ punchuality.
My weakness is pasentless & belive all members and i am
trying to overcome mu character.

Is This Answer Correct ?    10 Yes 37 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the importance of oop?

611


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3253


Which is not an object oriented programming language?

544


What is the important feature of inheritance?

635


Can you name some types of inheritance?

641






Why is destructor used?

585


what is different between oops and c++

2004


What is class in oop with example?

621


What is class and example?

569


What is oops in programming?

568


• What are the desirable attributes for memory managment?

1728


When not to use object oriented programming?

572


What is a superclass in oop?

671


What is new keyword in oops?

593


What is polymorphism oop?

623