多项选择题
A.mapPartitions B.lookup C.mapPartitionsWithIndex D.count
RDD和它的父RDD的关系有()。A.宽依赖B.窄依赖C.分区关系D.继承关系
多项选择题RDD和它的父RDD的关系有()。
A.宽依赖 B.窄依赖 C.分区关系 D.继承关系
在Scala中如何获取字符串“Hello”的首字符和尾字符?()A."Hello"(0),"Hello"(5)...
单项选择题在Scala中如何获取字符串“Hello”的首字符和尾字符?()
A."Hello"(0),"Hello"(5) B."Hello".take(1),"Hello".reverse(0) C."Hello"(1),"Hello"(5) D."Hello".take(0), "Hello".takeRight(1)
如果需要使用scala库中的sqrt函数,如sqrt(2),下列引用包的方式错误的是()。A.import s...
单项选择题如果需要使用scala库中的sqrt函数,如sqrt(2),下列引用包的方式错误的是()。
A.import scala.math._ B.import sqrt C.import math._ D.import math.sqrt