Add a field to the SlideShow class to hold the title and modify the show method to first show a blank picture with the title on it.

What will be an ideal response?


```
class SlideShow:
def __init__(self, slideList, title):
self.slides = slideList
self.title = title

def show(self):
titleScreen = makeEmptyPicture(300, 300)
titleScreen.addTextWithStyle (black ,10,150,self.title, makeStyle(sansSerif, bold, 24))
titleScreen.show()
for slide in self.slides:
slide.show()
```

Computer Science & Information Technology

You might also like to view...

____ software helps you cut out unwanted frames, add special effects, arrange segments, overlay soundtrack, and designate transitions from one segment to the next.

A. Video B. Video editing C. Video capturing D. Video scanning

Computer Science & Information Technology

Which of these is considered volatile storage?

a. SSD b. ROM c. RAM d. thumb drive

Computer Science & Information Technology

Briefly define antenna.

What will be an ideal response?

Computer Science & Information Technology

The ________ is composed of metal or ceramic and draws heat away from the processor

Fill in the blank(s) with correct word

Computer Science & Information Technology