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
hi all..i want to know oops concepts clearly can any1 explain??
What is polymorphism and types?
Which type does string inherit from?
How do you achieve runtime polymorphism?
What is inheritance in simple words?
What is encapsulation in oops?
What is polymorphism in oops with example?
What is balance factor?
What is abstraction in oops?
What is object in oops?
What is meant by oops concept?
What is multilevel inheritance explain with example?
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
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?
Can we define a class within the interface?