What are the phases in s/w developed life cycle?
wat is the diff b/w stack & queue...where do we use stack
Answers were Sorted based on User's Feedback
Answer / prakash.m
phases in SDLC
The phases may be diffred for different SDLC models.
some of the SDLC are
waterfall model(all requirements must be collected in the
first phase itself)
spiral model(processing looks like a spiral fashion,the
desired requirements can be added in next level spirals)
incremental model
prototype model
Stack and queue are data structures. stack is referred as
Last In First Out(LIFO), uses a single pointer
queue is First In First Out(FIFO), uses 2 pointers , one
for insertion and another for deletion.
stack is used for all arithmatic operations, eg. polynomial
addition.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / subha raman
stack follows-LIFO
-used to evaluate postfix/prefix expressions
queue follows-FIFO
-which has normal applications like-priority being given
1st..i.e. first come-first serve basis..
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rani
Stack follows LIFO. whereas queue follows FIFO.
All local variables and function calls are stored
temporarily in stack during program execution.
It is easy to manipulate stack operation rather than queue.
| Is This Answer Correct ? | 0 Yes | 0 No |
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 |
Answer / asdf
Use of stack:
1) All local variables get stored in stack.
2) To store the parameters passed to the function
3) To store the return address of the function
4) To Evaluate arithmetic expressions.
5) In recursive programming
Use of Queue:
1)Used to implement OS internals algorithms (example: in
scheduling algorithms)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nisha
Stack follows LIFO i.e last in first out.The last element
entered would be removed first while Queue follows FIFO i.e
first in first out.The element that ws entered first would
be removed first.
| Is This Answer Correct ? | 0 Yes | 1 No |
What happens if header file is included twice?
wat s the meaning of (int *)p +4;
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
How to set file pointer to beginning c?
What is string concatenation in c?
Can anyone tell what is stack overflow? what precaution we should take?
how many key words availabel in c a) 28 b) 31 c) 32
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
What are types of functions?
what is const volatile?