Tell us about yourself.

Answer Posted / jagadish prasad

I am V.Jagadish Prasad I belong to rajasthan and I am
staying in the city from past two decades my father is a
business man and my mother is homemaker and coming to my
personel life I always belive two things which makes me
successful my hard work and my honesty and i consider these
two as asset of my life. Coming to my educational
qualification I am postgaduate student form osmania
university and i did graduation from osmania university
my+2 was from nagarjuna jr college and my matriculation was
from sree swa and my hobbies are swimming,skating,and
playing all sports which makes me phyically fit and
mentally strong and my strength are my parent,saints,and my
teachers, who always helps me in diffuculties and also in
happiness.

Is This Answer Correct ?    6 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

3240


2. Give the different notations for the class.\

1582


What is overloading in oop?

568


Why multiple inheritance is not allowed?

581


Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.

687






which feature are not hold visual basic of oop?

1717


What is the point of oop?

644


Is react oop?

605


What is class and example?

561


How do you answer polymorphism?

575


What is polymorphism give a real life example?

552


How many human genes are polymorphic?

564


What is interface? When and where is it used?

1656


What is polymorphism and why is it important?

554


What is abstraction in oops?

578