Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

PART B B . 1 . [ 6 marks ] Consider the following python program. class Stack: d e f i nit ( self )

PART B
B.1.[6 marks]
Consider the following python program.
class Stack:
definit ( self):
self.items =
def Push(self, item):
self.items.append(item)
def Pop(self):
return self.items.pop 0
def isEmpty(self):
return self.items ==
def size(self):
return len(self.items)
return self.items.pop0
def isEmpty(self):myStack = Stack 0myStack.Push(1)myStack.Push(3)item = myStack.PopOprint(item)myStack.Push(5)myStack.Push(7)item = myStack.PopOprint(item)myStack.Push(9)myStack.Push(11)item = myStack.Pop(print(item)while not myStack.isEmpty):item = myStack.Pop()print(item)(a) What will be printed in the first three print(item) statements?rarr print: (1)(3)(1 stack.(b) What will be printed in the while loop?
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions