Create a SlideShow class that holds a list of slides and shows each slide one at a time.
What will be an ideal response?
```
class SlideShow:
def __init__(self, slideList):
self.slides = slideList
def show(self):
for slide in self.slides:
slide.show()
```
You might also like to view...
Answer the following questions true (T) or false (F)
1. The binary search algorithm has worst-case running time that is logarithmic. 2. Pseudocode is a mixture of programming language and English.
The Home editions of Windows 7 do not include the Local Security Policy or Print Management.
Answer the following statement true (T) or false (F)
The new class that we create from the existing classes is called the ____.
A. base class B. modifier class C. derived class D. extended class
?Match each correct item with the statement below.??
A. ?The storage devices that transfer data to and from the system in chunks of many data bits by caching the information in RAM. B. ?The storage devices that transfer data to and from the system one data bit at a time. C. A series of tracks on a hard disk that are written to simultaneously by the magnetic heads in a hard disk drive.? D. ?The process in which a filesystem is placed on a disk device. E. A command used to identify any users or processes using a particular file or directory? F. ?A hard disk quota that the user cannot exceed. G. ?A command used to re-create a device file, provided the major number, minor number, and type (character or block) are known. H. ?A physical division of a hard disk drive. I. ?The filesystem that contains most files that make up the operating system; it should have enough free space to prevent errors and slow performance. J. ?The process of writing data to the hard disk drive that was stored in RAM.