What is Agile methodology?

Answer Posted / sakk

Agile methodology is more of people oriented. Agile
methodology helps us to increase productivity and reduce
risks. There are 2 popular agile methods- Extreme
programming (XP) and Scrum.

Is This Answer Correct ?    99 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you explain polymorphism?

576


#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

2157


What is constructor overloading in oop?

599


What are oops functions?

581


Can main method override?

581






What is class and example?

566


Is html an oop?

575


Give an example where we have to specifically use C programming language and C++ programming language cannot be used?

1142


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?

1403


What are the benefits of oop?

602


Explain the advantages of inheritance.

668


What are the important components of cohesion?

550


What is the real life example of polymorphism?

605


What is oops in simple words?

575


What is the purpose of polymorphism?

671