What is Agile methodology?
Answer Posted / amarpal bajwa
Agile software development is a conceptual framework for
undertaking software engineering projects. There are a
number of agile software development methods, such as those
espoused by the Agile Alliance, a non-profit organization.
Agile methods attempt to minimize risk and maximize
productivity by developing software in short iterations and
de-emphasizing work on secondary or interim work artifacts.
Scrum and Extreme Programming (XP) are two of the most
popular Agile methods, however, there are many more Agile
methods and agility, as a conceptual framework, may also be
applied to the execution of more traditional methods.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is polymorphism give a real life example?
Explain the advantages of inheritance.
what type of questions
I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...
Can a destructor be called directly?
What is polymorphism and its types?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
What are the benefits of polymorphism?
Give two or more real cenario of virtual function and vertual object
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
Where is pseudocode used?
What is the use of oops?
Whats oop mean?
Can private class be inherited?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.