A.弱链
B.伪链
C.类似链
D.公链
第1题:
60、pow(4,pow(2,-1))的值是_____
第2题:
8、print(pow(3,0.5)*pow(3,0.5)==3)
A.True
B.pow(3,0.5)*pow(3,0.5)==3
C.3
D.False
第3题:
以下表达式中,有两个的计算结果是相同的,请挑选出来
A.1 / sqrt(sin(x) * sin(x) + cos(y) * cos(y))
B.sqrt(pow(sin(x), 2) + pow(cos(y), 2))
C.pow(sin(x) * sin(x) + cos(y) * cos(y), 0.5)
D.pow(pow(sin(x), 2) + pow(cos(y), 2), 2)
第4题:
下面代码的执行结果是。() print(pow(3,0.5)*pow(3,0.5)==3)
A.False
B.pow(3,0.5)*pow(3,0.5)==3
C.True
D.3
第5题:
42、pow(4,pow(2,-1))的值是_____