If you call the preceding function by typing newFunction("I", "you", "walrus"), what will the computer print?

```
def newFunction(a, b, c):
print a
list1 = range(1,5)
value = 0
for x in list1:
print b
value = value +1
print c
print value
```

I
you
you
you
you
walrus
4

Computer Science & Information Technology

You might also like to view...

What is not true about table relationships?

A) They are created automatically by Access when normalization is complete. B) They must be set up manually. C) Creating them can be a good test your normalization efforts. D) Creating them allows you to retrieve data in a multi-table database.

Computer Science & Information Technology

Which of the following is an integrated option for sending files to others?

A) Dropbox B) Google Drive C) iCloud D) E-mail

Computer Science & Information Technology