What is extreme programming?
Answers were Sorted based on User's Feedback
Answer / luong dinh dung
Extrem programming is a software developing methodology
which make the rapid development possible. Key elements:
pair programming (working in pair), test driven development
(unit test), prototyping (make prototype and continue the
development based on feedbacks)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / biswa bihari panda
Extreme Programming (or XP) is a software engineering
methodology
| Is This Answer Correct ? | 0 Yes | 1 No |
Write a program in c++ to read two floating point numbers and find their sum and average.
What is late bound function call and early bound function call? Differentiate.
hi all..i want to know oops concepts clearly can any1 explain??
What is oop in simple words?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
I am DeePu sotware engineer working with EMC corporation ,recently I had attended mcafee interview . Their questions were at heights of stupidity , I don't know what they want , I am a developer with 4 year experienced .I am listing the questions asked 1:What is the flag in g++ to avoid structure padding 2:In wht order parameters are passed to stack 3:How you will edit code segment of an exe
What is abstraction with example?
How can i write a code in c# to take a number from the user and then find all the prime numbers till the number entered by the user.
is there any choice in opting subjects like 4 out of 7
In c++ there is only virtual destructors, no constructors. Why?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
how to write a java program for an output ****0 ***01 **012 *0123 01234