def demo(fun, x, y):return fun(x,y)demo(divmod, 7, 4)的返回值是什么?
A: (1,3)
B: (7,4)
C: 7
D: 4
A: (1,3)
B: (7,4)
C: 7
D: 4
举一反三
- 已知函数定义def demo(a=1,**b):return b则demo(2,x=7,y=8,z=9)的返回值是什么? A: 2 B: (x:7,y:8,z:9) C: (7, 8, 9) D: {'x':7, 'y':8, 'z':9}
- 已知x,y=4,5, 以及函数定义def demo(x,y):return x则demo(y,x)的返回值是什么? A: 4 B: 5 C: 9 D: (4,5)
- 设X,Y为两个随机变量,且P{X ³0,Y ³ 0} = 3/7 , P{X ³ 0} = P{ Y ³ 0} = 4/7 ,则P{max(X, Y) ³ 0} = ( ). A: 1/7 B: 3/7 C: 4/7 D: 5/7
- 已知函数定义 def demo(a=1,**b):return sum(b.values())并且x = {'a':5,'b':6,'c':7,'d':8}则demo(**x)的返回值是什么? A: 'bcd' B: 'abcd' C: 21 D: 26
- 有如下程序: #include void fun(int x,int y) { int t; if(x>y) {t=x;x=y;y=t;} } int main(void) { int a=4,b=7,c=5; fun(a,b);fun(a,c);fun(b,c); printf(“%d,%d,%d ”,a,b,c); return 0; } 它的输出结果是( )。