The default stack size of IIS starting with Windows Server 2003 was changed. Prior to 2003, it was set to 1 MB but in 2003 and later, it is set to 2 ...
Search results for stack
Live Meeting and IM interviews
Posted by CMaster
In today’s thought economic times more and more companies start implementing money saving strategies in the hiring process. During this year I’ve ...
Can you write a C++ function to check if the stack grows up or down
Posted by CMaster (http://vijayinterviewquestions.blogspot.com)
Answer
Try noting down the address of a local variable. Call another function with a local variable declared in it and check the address of that loca ...
Stack and Queue interview questions
Posted by CMaster
Stack and Query structures in computing are extremely fundamental and important. Then interviewing I expect candidate to fully understand this data s ...
“Write a function which will print values from the single linked list in the reverse order in O(n) time. No changes to the list can be made and no a ...
The interview questions is to write a function Check:
bool Check(string input, List<Parenthesis> par)
Which would check input string and re ...
Write the method void Clean(Node root) which would clean Nodes but don’t use the recursion
Posted by aleksin
The solution is to use an additional data structure such as Stack to maintain a list of unprocessed nodes, keep adding children to the stack, and then ...
Phone Interview Pattern: Cascade
Posted by CMaster
The common technical phone interview usually performed by senior member of the team or by recruiter.
In the first case, experienced and technically ...
