网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
29、以下代码的执行结果是()。 def f2(a): if a > 33: return True lst = [11, 22, 33, 44, 55] res = filter(f2, lst) print(list(res))
A.[44,55]
B.[33,44,55]
C.[22,33,44]
D.[11,33,55]
参考答案和解析
C
更多 “29、以下代码的执行结果是()。 def f2(a): if a > 33: return True lst = [11, 22, 33, 44, 55] res = filter(f2, lst) print(list(res))A.[44,55]B.[33,44,55]C.[22,33,44]D.[11,33,55]” 相关考题
考题
高压蒸汽灭菌时各种包裹应小于( )
A、 66cmⅹ 44cmⅹ 22cmB、 55cmⅹ 33cmⅹ 22cmC、 44cmⅹ 22cmⅹ 11cmD、 33cmⅹ 11cmⅹ 5cmE、 22cmⅹ 10cmⅹ 2cm
考题
有以下程序 int b=2; int func(int*A) { b+=*a;return(B) ; } main() { int a=2,res=2; res+=rune(A) ; printf("%d \n",res); } 程序运行后的输出结果是( )A.4B.6C.8D.10
考题
设有数组定义: int a[] = {11, 22, 33, 44, 55, 6, 77, 88, 99};, 则执行下列几个语句后的输出结果是______、______和______。for(int i = O; i < a.tength; i++)if(a[i]%3.== 0) System.out.println(a[i]);
考题
下列程序的输出结果是includeint b=2;int func(int *a) {b+=*a;return(b) ;}void m
下列程序的输出结果是 #include<iostream.h> int b=2; int func(int *a) {b+=*a;return(b) ;} void main( ) { int a=2,res=2; res+=func(a) ; cout<<res;}A.4B.6C.8D.10
考题
在窗体中画一个命令按钮,然后编写以下事件过程: Private Sub Command1_Click() For j=1 To 3 Print Tab(3(j);11((2(j-1); Next j Print End Sub 程序的执行结果为A.11B.33C.11 33D.11 33 55
考题
下列程序的输出结果是()。includeint b=2;int func(int *a){b+=*a;return(b);}main(){i
下列程序的输出结果是( )。 #include <stdio.h> int b=2; int func(int *a) { b+=*a;return(b);} main() { int a=2, res=2; res+=func(a); printf("%d\n",res); }A.4B.6C.8D.10
考题
下面哪一个是错误的?
A.使用len(列表名)测量元素的个数names_list=["zhangsan","lisi","wangwu"]print(len(names_list))B.使用列表名[下标]获取列表的某个元素,例如:names_list=["zhangsan","lisi","wangwu"]print(names_list[2])C.向列表中添加新元素有三个方法:append、extend、insert,例如:names_list=["zhangsan","lisi","wangwu"]names_list.append("zhaoliu")names_list.extend(["zhaoliu","liqi"])names_list.insert(1,"zhaoliu")print(names_list)D.已有列表nums=[11,22,33,44,55],使用while循环遍历列表nums=[11,22,33,44,55]i=0 whileiprint(nums[i])i+=1
考题
执行以下两条语句后,lst的结果是1. lst = [3, 2, 1]2. lst.append(lst)()
A.[3, 2, 1, [3, 2, 1]]B.[3, 2, 1, […]],其中“…”表示无穷递归C.抛出异常D.[3, 2, 1, lst]
考题
下列程序的输出结果是______。 int b=2; int func(int*a) {b+=*a;return(b); } main() { int a=2,res=2; res+=func(b); printf("%d\n,res); }A.4B.6C.8D.10
考题
设有数组定义:int a[ ] = { 11 , 22 , 33 , 44 , 55 , 66 , 77 , 88 , 99 }; 则执行以下几个语句后的输出结果是 ()、() 、() 。 for ( int i = 0 ; i a.length ; i ++ ) if ( a[i]%3==0 ) System.out.println(a[i]);
考题
哪个交换机会在STP选择中成为根桥?()A、 32768: 11-22-33-44-55-66B、 32768: 22-33-44-55-66-77C、 32769: 11-22-33-44-55-65D、 32769: 22-33-44-55-66-78
考题
有如下程序: FOR j=1 TO 3 PRINT TAB(3*j);11*(2*j-1); NEXT j 运行后输出的结果是()A、22 44 66B、11 33 55C、11 55 77D、22 55 99
考题
给定如下Java代码片段,已知查询语句是:select id from title,并且已经获得了相应的结果集对象res。现在要在控制台上输出title表中id列(存储类型为int)的值,可以填入下划线处的代码是()。A、res.getInt(“id”)B、res.getInt(0)C、res.getInt(1)D、res.getInt(id)
考题
Which switch would STP choose to become the root bridge in the selection process?()A、32768: 11-22-33-44-55-66B、32768: 22-33-44-55-66-77C、32769: 11-22-33-44-55-65D、32769: 22-33-44-55-66-78
考题
单选题有如下程序: FOR j=1 TO 3 PRINT TAB(3*j);11*(2*j-1); NEXT j 运行后输出的结果是()A
22 44 66B
11 33 55C
11 55 77D
22 55 99
考题
单选题在一个Filter中,处理filter的业务的是()方法A
dealFilter(ServletRequest reg,ServletResponse res,FilterChain chain)B
dealFilter(ServletRequest reg,ServletResponse res)C
doFilter(ServletRequest reg,ServletResponse res,FilterChain chain)D
doFilter(ServletRequest reg,ServletResponse res)
考题
填空题设有数组定义:int a[ ] = { 11 , 22 , 33 , 44 , 55 , 66 , 77 , 88 , 99 }; 则执行以下几个语句后的输出结果是 ()、() 、() 。 for ( int i = 0 ; i a.length ; i ++ ) if ( a[i]%3==0 ) System.out.println(a[i]);
考题
单选题Which switch would STP choose to become the root bridge in the selection process?()A
32768: 11-22-33-44-55-66B
32768: 22-33-44-55-66-77C
32769: 11-22-33-44-55-65D
32769: 22-33-44-55-66-78
考题
单选题哪个交换机会在STP选择中成为根桥?()A
32768: 11-22-33-44-55-66B
32768: 22-33-44-55-66-77C
32769: 11-22-33-44-55-65D
32769: 22-33-44-55-66-78
考题
单选题下列程序的运行结果是( )。public class ArrayTest{public static void main(String[] args){ int data[][]={{1,2,3,4,5},{11,22,33,44,55},{111,222,333,444,555}}; for(int i=0;i if(i%2==0)System.out.print(data[i][4]);}}}A
5555B
555C
555D
55
热门标签
最新试卷