A.val b = 2 * a // b 等于 Array(2,4,6) B.val b = a.map(_*2) // b 等于 Array(2,4,6) C.val b = for(elem <- a) yield 2 * elem // b 等于 Array(2,4,6) D.val b = for(elem <- a if elem % 2 == 0) yield 2 * elem // b 等于 Array(4)
单项选择题关于函数def fac(n:Int)={var r=1;for(i<-1 to n) r = r * i ;r} fac(5)输出结果正确的是()。
A.15 B.120 C.200 D.300
单项选择题编写一个过程countdown(n:Int),打印从n到0的数字?()
A.def countdown(n:Int){ 0 to n foreach print } B.def countdown(n:Int){ (0 until n).reverse foreach print } C.def countdown(n:Int){ (0 to n).reverse foreach print } D.def countdown(n:Int){ (0 to n-1).reverse foreach print }
单项选择题对于ELK描述不正确的是()。
A.用来描述将数据从来源端经过抽取、转换、加载至目的端的过程。 B.Elasticsearch是个开源分布式搜索引擎,提供搜集、分析、存储数据三大功能。它的特点有:分布式,零配置,自动发现,索引自动分片,索引副本机制,restful风格接口,多数据源,自动搜索负载等。 C.Logstash 主要是用来日志的搜集、分析、过滤日志的工具,支持大量的数据获取方式。一般工作方式为c/s架构,client端安装在需要收集日志的主机上,server端负责将收到的各节点日志进行过滤、修改等操作在一并发往elasticsearch上去。 D.Kibana 也是一个开源和免费的工具,Kibana可以为 Logstash 和 ElasticSearch 提供的日志分析友好的Web界面,可以帮助汇总、分析和搜索重要数据日志。
多项选择题Kylin可以集成()。
A.Tableau B.Excel C.JavaScript D.Hbase
单项选择题现有一张分区表,impala中哪种操作是错误的。()
A.alter table stu_par add partition (month=’999901’); B.load data inpath ’/student.txt’ into table stu_par partition(month=’888801’); C.insert into table stu_par partition (month = ’777701’) select * from student; D.select * from stu_par where month = ’777701’;