If we execute testMe(5,51,"Hello back to you!"), what will print?

Consider this program:

```
def testMe(p,q,r):
if q > 50:
print r
value = 10
for i in range(1,p):
print "Hello"
value = value - 1
print value
print r
```


Hello back to you!
Hello
Hello
Hello
Hello
6
Hello back to you!

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. Most classes you’ll use in Java programs must be imported explicitly. b. There’s a special relationship between classes that are compiled in the same directory. By default, such classes are considered to be in the same package—known as the default package. c. Classes in the same package are implicitly imported into main. d. An import declaration is not required when one class in a package uses another in the same package.

Computer Science & Information Technology

To pause, restart, or cancel a print job, open the print ____________________, click the name of the print job, then choose the desired option from the Document menu.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

__________ occurs when circumstances within the system force a higher-priority task to wait for a lower-priority task.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

In a(n) _________ relationship, an object of a derived class also can be treated as an object of its base class.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology