Choose the Correct Answer(s)What will be the output after the following statements?def call(var1 = 20, var2 = 5, var3 = 2) : print(var1 * var2 * var3, end = '') call()Options10010002052200
Question
Choose the Correct Answer(s)What will be the output after the following statements?def call(var1 = 20, var2 = 5, var3 = 2) : print(var1 * var2 * var3, end = '') call()Options10010002052200
Solution
The output will be 200.
Here's the step by step explanation:
-
The function
call()is defined with three parameters:var1,var2, andvar3. These parameters are given default values of 20, 5, and 2 respectively. -
The function
call()is then called without any arguments. This means that the default values of the parameters will be used. -
Inside the function, the print statement multiplies the three parameters together. So, 20 (value of var1) * 5 (value of var2) * 2 (value of var3) equals 200.
-
The
end = ''in the print function means that nothing will be printed after the output. So, the output will be just 200, without any trailing spaces or newline characters.
So, the correct answer is 200.
Similar Questions
What will be the output after the following statements? myvar = 5 def printvar(): print(myvar, end ='') printvar() printvar() Options 55 5 5 5 10
Choose the Correct Answer(s)What will be the output after the following statements?def xyz(): a = 56 xyz() print(a)OptionsNameErrora = 56xyz56
Test time left: 11:53 Choose the Correct Answer(s) What will be the output after the following statements? def call(y, x): return x / y z = call(4, 9) print(z) Options 0.444445 2 0 2.25
Choose the Correct Answer(s)What will be the output after the following statements?def abc(z): z.append(44) x = [7, 8, 9] abc(x) print(x)Options[7, 8, 9][7, 8, 9, 44][7, 44, 8, 9][44, 7, 8, 9]
Choose the Correct Answer(s)What will be the output after the following statements?b = 'Code' a = 'is Life' def pypi(x, y): print('hello %s %s' % (y, x)) pypi(a, b)OptionsCode is Lifehello Codehello is Life Codehello Code is Life
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.