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 / 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 |
Post New Answer View All Answers
Write a program to swap two numbers without using third variable?
Why isn't any of this standardized in c? Any real program has to do some of these things.
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Why c is a procedural language?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Write a code of a general series where the next element is the sum of last k terms.
Define Array of pointers.
What is meant by type casting?
What are global variables and how do you declare them?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the basic structure of c?
What is scope and lifetime of a variable in c?
What is c variable?
What is function and its example?