Rewrite increase volume so that it takes two inputs: the sound to increase in volume and a filename where the newly louder sound should be stored. Then increase the volume and write the sound out to the name file. You might also try rewriting it so that it takes an input filename instead of the sound, so that inputs are both filenames.

What will be an ideal response?


```
def increaseVolume(filenameIn, filenameOut):
sound = makeSound(filenameIn)
for sample in getSamples(sound):
value = getSampleValue(sample)
setSampleValue(sample ,value * 2)

writeSoundTo(sound, filenameOut)
```

Computer Science & Information Technology

You might also like to view...

MC The________states that every record must have a value in the primarykey field, and the value must be unique.

a) Rule of Entity Integrity. b) Rule of Data Integrity. c) Rule of Database Integrity. d) None of the above.

Computer Science & Information Technology

What is Math.ceil(3.6)?

a. 3.0 b. 3 c. 4.0 d. 5.0

Computer Science & Information Technology

Which function would you use to test for a relationship between students' attendance and their test scores?

A) VARPA B) CORREL C) RELATE.S D) RELATE.P

Computer Science & Information Technology

Windows SmartScreen aids in the overall security of your computer by warning you before running unrecognized apps and files downloaded from the Internet.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology