What is Agile methodology?
Answer Posted / srinivas kumar pabbisetti
It is an iterative and incremental software development methodology, where requirements and solutions evolve through collaboration between self-organizing, cross-functional teams. This methodology is very helpful for small and medium size teams however not suitable to large projects.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Why is polymorphism needed?
What is an interface in oop?
Why oops is important?
Which is not an object oriented programming language?
What is pure oop?
Write a program to reverse a string using recursive function?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
Write a c++ program to display pass and fail for three student using static member function
Why is object oriented programming so hard?
hi all..i want to know oops concepts clearly can any1 explain??
What is difference between abstraction and encapsulation?
How to use CMutex, CSemaphore in VC++ MFC
Why is abstraction used?
What is destructor in oop?