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 / 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 |
Post New Answer View All Answers
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Why pointers are used in c?
What is define directive?
What is the difference between call by value and call by reference in c?
What is type qualifiers?
What are the different data types in C?
What is difference between structure and union in c programming?
What is #define used for in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Why is c called a structured programming language?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Does c have circular shift operators?
please explain every phase in the "SDLC" in the dotnet.
Which header file should you include if you are to develop a function which can accept variable number of arguments?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.