What are the phases in s/w developed life cycle?
wat is the diff b/w stack & queue...where do we use stack
Answer Posted / shruti
The phases of SDLC are:
**Communication.
**Requirements gathering
**Analysis
**Implementation
**Testing
**Maintainance
Differance between stack and queue..
Stack follows LIFO structure i.e -> last in first out.
the element which enters last exits first..
Queue follows FIFO structure. i.e -> first in first out.
the element which enters first exits first..
USE OF STACK:
with refrance to C, we use stack wiht the program counter.
i.e when we jump to a function, we store the address to
return to on a stack..
u can understand this in more detail if you study teh
actual flow of program while calling functions.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the meaning of && in c?
How can I find the modification date of a file?
Define macros.
Process by which one bit pattern in to another by bit wise operation is?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Why does this code crash?
Is it valid to address one element beyond the end of an array?
How can I manipulate strings of multibyte characters?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is dynamic dispatch in c++?
Can you write the algorithm for Queue?
Why we use int main and void main?
List the difference between a "copy constructor" and a "assignment operator"?
Explain how do you print only part of a string?
How can I generate floating-point random numbers?