Question at position 12 What will be the program output after the following code fragment is executed? [table] 1 def function_1(num_1: int):2 x = num_1 * 23 return num_1 + 24 5 def function_2(num_2: int):6 y = num_2 // 27 return num_2 + 18 9 def main():10 x = 111 y = 612 13 print(function_1(x), end=' ')14 print(function_2(y), end=' ')15 print(x, end=' ')16 print(y)17 18 main() [/table]3 7 2 3 1 6 1 63 7 1 6 4 4 2 3 Clear my selection单项选择题
A
3 7 2 3
B
1 6 1 6
C
3 7 1 6
D
4 4 2 3
登录即可查看完整答案
我们收录了全球超50000道真实原题与详细解析,现在登录,立即获得答案。
类似问题
Which of the following statements is NOT true for the following Python code:Assume that x is previously defined as an integer.if x >= 0: y = np.sqrt(x)
Which of the following is the output of p after the following commandsx = np.arange(-5,5.1,0.1)f = lambda y: y**2 + y - 5p = nppoly.polyfit(x, f(x), 2)
What is the value of A after the following Python code? C = np.array([[6, 1, 4],[2, 4, 5],[3, 7, 1]])A = C > 3
Question at position 18 Which of the following lines of code will run, but then give a runtime error?num = 10for i in range(10,3): num = num/inum = 10for i in range(3,3): num = num/inum = 10for i in range(-2,3): num = num/inum = 10for i in range(2,3): num = num/iClear my selection
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!