Data Structures Quiz
Which of the following is not an inherent application of stack?
A. Implementation of recursion
B. Evaluation of a postfix expression
C. Job scheduling
D. Reverse a string
Solution :
C) is correct.
We can use stack for string reversal, evaluation of postfix expression and most important is implementation of recursion but job scheduling is not done by stack. So, option C is correct.