网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

以下对于这些列表操作正确的是vart=List(1,2,3)vart2=t.:+("test")()

  • A、返回结果为List("test",1,2,3)
  • B、返回结果为List(1,2,3,"test")
  • C、不同类型的元素不能进行列表相加
  • D、以上说法都不对

参考答案

更多 “以下对于这些列表操作正确的是vart=List(1,2,3)vart2=t.:+("test")()A、返回结果为List("test",1,2,3)B、返回结果为List(1,2,3,"test")C、不同类型的元素不能进行列表相加D、以上说法都不对” 相关考题
考题 表达式list(str([1,2,3]))==[1,2,3]的值为______________。

考题 list(map(str,[1,2,3]))的执行结果为_____________________。

考题 表达式list(map(list,zip(*[[1,2,3],[4,5,6]])))的值为________________。

考题 已知“a=list((1,2))+list((2,3))”,则a的值是()。 A.[1,2,3]B.[1,2,2,3]C.(1,2,3)D.(1,2,2,3)

考题 Your ERX Edge Router is using an inbound route-map for an EBGP peer to only accept routes in the range of 192.168.32.0 through 192.168.95.255. The route-map references an access list named test .What accurately accomplishes the goal of the route-map?()A. access-list test 192.168.32.0 0.0.63.255B. access-list test permit 192.168.32.0 0.0.64.255C. access-list test permit 192.168.32.0 0.0.63.255D. access-list test permit 192.168.32.0 255.255.63.0

考题 在scala中定义一个List,以下语法正确的是()A、vallist=List(4,7,3)B、vallist=List[Int](1,2,3)C、vallist=List[String](‘a’,’b’,’c’)D、vallist=List[Int]("a","b")

考题 对于以下列表的操作,那些说法说法正确varc=List(1,2,3,4,5,99,101)vargs=c.count(_3)()A、变量gs的结果为4B、count表示按照括号内的函数进行计算,本题表示在列表中元素大于3的个数计算C、count表示按照括号内的函数进行求和计算,本题表示在列表中元素大于3的个数求合计,其结果为299D、以上答案都不对

考题 以下使用scala语言,定义一个List,其中语法不正确的是?()A、vallist=List(1,2,3)B、vallist=List[Int](1,2,3)C、vallist=List[String](‘a’,’b’,’c’)D、vallist=List[String]()

考题 在scala中对于列表的操作,那些说法说法正确vart=List(1,2,3)vart2=List(4,5)()A、vart3=t++t2得到List(1,2,3,4,5)B、vart3=List.concat(t,t2)得到List(1,2,3,4,5)C、vart3=t:::t2得到List(1,2,3,4,5)D、vart3=t2.:::(t)得到List(1,2,3,4,5)

考题 在scala中对于列表操作以下对于这些列表操作正确的是vart=List(1,2,3)vart2=t.+:("test")()A、返回结果为List("test",1,2,3)B、返回结果为List(1,2,3,"test")C、不同类型的元素不能进行列表相加D、以上说法都不对

考题 表达式list(’[1,2,3]’)的值是[1,2,3]。

考题 Your ERX Edge Router is using an inbound route-map for an EBGP peer to only accept routes in the range of 192.168.32.0 through 192.168.95.255. The route-map references an access list named test . What accurately accomplishes the goal of the route-map?()A、access-list test 192.168.32.0 0.0.63.255B、access-list test permit 192.168.32.0 0.0.64.255C、access-list test permit 192.168.32.0 0.0.63.255D、access-list test permit 192.168.32.0 255.255.63.0

考题 以下对于操作说法正确的是vart=List(1,8,3,5,5);println(t.filter{x=x3})()A、对不可变列表进行元素大于3的操作,返回新的列表List(8,5,5)并打印出来B、对不可变列表进行元素大于3的操作,返回过滤后的列表List(8,5,5)并打印出来,不产生新列表C、对可变列表进行元素大于3的操作,返回新的可变列表List(8,5,5)并打印出来D、对可变列表没有这个filter方法,编译错误

考题 以下对list的操作take说法正确的是vart=List(1,8,3,5,5);println(t.take(2))()A、打印列表的前2个元素,结果为List(1,8)B、打印列表的后2个元素,结果为List(5,5)C、打印列表的从下表2开始的所有元素,结果为List(3,5,5)D、以上答案都不对

考题 在scala中对于以下2个列表的操作,那些说法说法正确vart=List(1,2,3)vart2=List(4,5)()A、vart3=t++t2得到List(1,2,3,4,5)B、vart3=List.concat(t,t2)得到List(1,2,3,4,5)C、vart3=t:::t2得到List(1,2,3,4,5)D、vart3=t.:::(t2)得到List(1,2,3,4,5)

考题 valsite:List[String]=List("Runoob","Google","Baidu")println(site.head+site.tail)可以知道head返回列表第一个元素,tail返回除第一个元素外的所有元素

考题 scala语言中,关于List的定义。不正确的是?()A、vallist=List(1,2,3)B、vallist=List[Int](1,2,3)C、vallist=List[String](‘a’,’b’,’c’)D、vallist=List[String]()

考题 以下对list的操作distinct说法正确的vart=List(1,8,3,5,5)println(t.distinct)()A、distinct为去重操作,返回一个新的结果为List(1,8,3,5)B、distinct为去重操作,返回的是在原基础的列表List(1,8,3,5)C、List为可变列表,没有这个distinct方法返回,编译出现错误的是一个新的去重的新的可变列表ListD、List为可变列表,返回的是一个新的去重的新的可变列表List(1,8,3,5)

考题 以下关于List的定义。正确的是?()A、vallist=List(4,7,3)B、vallist=List[Int](1,2,3)C、vallist=List[String](‘a’,’b’,’c’)D、vallist=List[Int]("a","b")

考题 list=[1,2,3],list[-1]的值为()A、1B、3C、2D、[]

考题 不能通过()来删除列表框中的选项.A、List属性B、Removeltem方法C、Clear方法D、Test属性

考题 填空题表达式list(str([1,2,3]))==[1,2,3]的值为()。

考题 判断题表达式list(’[1,2,3]’)的值是[1,2,3]。A 对B 错

考题 填空题list(map(str,[1,2,3]))的执行结果为()。

考题 填空题表达式list(map(list,zip(*[[1,2,3],[4,5,6]])))的值为()。

考题 单选题Your ERX Edge Router is using an inbound route-map for an EBGP peer to only accept routes in the range of 192.168.32.0 through 192.168.95.255. The route-map references an access list named test . What accurately accomplishes the goal of the route-map?()A access-list test 192.168.32.0 0.0.63.255B access-list test permit 192.168.32.0 0.0.64.255C access-list test permit 192.168.32.0 0.0.63.255D access-list test permit 192.168.32.0 255.255.63.0

考题 单选题list=[1,2,3],list[-1]的值为()A 1B 3C 2D []