What is Agile methodology?

Answer Posted / bob

it is used for software development, including XP (Extreme
Programming), and it advocates iterator development

Is This Answer Correct ?    243 Yes 63 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is constructor overloading in oop?

597


Why oops is important?

599


Why do we need oop?

656


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

3550


write string class as your own class in java without using any built-in function

1970






#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 causes polymorphism?

563


Why do we use inheritance?

627


How to hide the base class functionality in Inheritance?

631


How is class defined?

578


Why it is called runtime polymorphism?

573


Whats oop mean?

584


What is persistence in oop?

663


just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.

6480


What is polymorphism in oop example?

508