You are developing an application that uses the Stack data structure. You write the following code:
Stack first = new Stack();
first.Push(50);
first.Push(45);
first.Pop();
first.Push(11);
first.Pop();
first.Push(7);
What are the contents of the stack, from top to bottom, after these statements are executed?