A、recover
B、discover
C、cover
第1题:
A.turn…on
B.take…off
C.take…out
D.pick…out
正确答案:C
第2题:
MySQL使用()文件中的配置参数。
A.my-larger.ini
B.my-small.ini
C.my-huge.ini
D.my.ini
第3题:
斜楔的楔角愈小,增力比愈();摩擦角愈大,增力比愈() The smaller the wedge angle is, the force ratio is ();The larger the friction angle is, the force ratio is ().
A.大 小 larger,smaller
B.大 大 larger,larger
C.小 小 smaller, smaller
D.小 大 smaller,larger
第4题:
请在(3)处填上最佳答案。
[A] digits
[B] numbers
[C] amounts
[D] sums
第5题:
已知turtle库画圆的函数原型如下: circle(radius[,extent,steps]) 能够画一个半径为100的圆的内接正六边形的是()。
A.circle(100, steps=6)
B.circle(100, 360, 6)
C.circle(100, 6)
D.circle(100, steps=6, 360)
第6题:
1、利用艾拉托斯特尼筛法无穷素数列表primes (参见讲义第8章) 获得介于100000和200000之间素数的方法是
A.take 200000 (take 100000 primes)
B.take 100000 (take 200000 primes)
C.take 100000 (drop 100000 primes)
D.takeWhile (\x -> x <= 200000) (dropWhile (\x -> x <= 100000) primes)
E.takeWhile (\x -> x <= 200000) (take 200000 primes)
F.[x | x <- primes, x >100000, x < 200000]
G.[x | x <- take 200000 primes, x >100000, x < 200000]