What are the conventions to display a Stack and a Queue on a console screen? For Example, if I am in the following situation:
Stack<String> s = new Stack<String>();
s.push("Hello");
s.push("there");
So when I print the Stack, should Hello come before there or vice versa?
Same goes in the case of a Queue.
Keep in mind I'm working on a console screen and not an applet window