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



What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do ..

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

What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do ..

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

What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do ..

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

What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do ..

Answer / 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

What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do ..

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

What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do ..

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

Post New Answer

More C Interview Questions

Why C language is a procedural language?

0 Answers   Ericsson,


What is getche() function?

0 Answers  


writ a program to compare using strcmp VIVA and viva with its output.

0 Answers  


What is the use of getch ()?

0 Answers  


Explain how to reverse singly link list.

0 Answers  






find the size of structure without using the size of function

1 Answers   Bosch,


What are the 5 data types?

0 Answers  


How can I read/write structures from/to data files?

0 Answers  


who invented c

13 Answers   IBM,


What is sparse file?

1 Answers  


Why flag is used in c?

0 Answers  


How are portions of a program disabled in demo versions?

0 Answers  


Categories