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 are the different types of control structures in programming?
What is the correct declaration of main?
What are external variables in c?
What is the argument of a function in c?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What are the advantages of using macro in c language?
If fflush wont work, what can I use to flush input?
What is floating point constants?
What is spaghetti programming?
Where are the auto variables stored?
What is quick sort in c?
What is a volatile keyword in c?
What is meant by errors and debugging?
Write a program to find factorial of a number using recursive function.
Do you have any idea about the use of "auto" keyword?