Question: In the following Python program, which lines include a valid function call? Select all that apply. 01 def say_hello(first_name): 02 print('Hello, ' + first_name +
In the following Python program, which lines include a valid function call? Select all that apply.
01 def say_hello(first_name): 02 print('Hello, ' + first_name + '!') 03 04 say_hello('Chen') 05 say_hello('Bobby') 06 say_hello('Ahmed') 07 08 my_name = 'Deepa' 09 say_hello(my_name) | 02 |
| 04 |
| none of these |
| 09 |
| 06 |
| 01 |
| 05 |
| 08 |
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
