what is the difference between a package and a software?

Answer Posted / sukrity

package is collection of classes
software is collection of program
in program v cn hv classes

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is methods in oop?

563


What is the difference between static polymorphism and dynamic polymorphism?

591


What are the 5 oop principles?

613


What is overloading in oops?

609


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

3263






When not to use object oriented programming?

576


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1672


Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4252


What is the main purpose of inheritance law?

680


What is polymorphism in oops?

567


What is abstract class in oop?

542


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1467


What is variable example?

601


What is oops concept with example?

587


How do you use inheritance in unity?

595