What is Agile methodology?

Answer Posted / nagesh viswanathan

Agile methodology is a conceptual framework where software
is devloped in iterations. Each iterations has Requirement
analysis, planning, design, coding, testing and
documentation.
Characteristics :
- Many builds are delivered in the iteration process
- Accepts change of requirement at any stage
- Requires close communication between business,
Development and Testing people
- Reduced risk and time to devlop
- Less documentation work compared to other methodologies
- Requires continious testing

Is This Answer Correct ?    71 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does polymorphism work?

631


What is the full form of oops?

603


Get me an image implementation program.

1555


Why we use classes in oop?

571


What is property in oops?

561






What does and I oop mean?

610


Why do we use oops?

585


#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


What type of loop is a for loop?

680


What is the fundamental idea of oop?

630


What are the components of marker interface?

598


Prepare me a program for the animation of train

1984


What is polymorphism and why is it important?

554


Which language is not a true object oriented programming language?

634


Can a varargs method be overloaded?

613