此题为判断题(对,错)。
第1题:
What's ( )job? Are ( ) British?
A. your, your
B. you, your
C. your, you
第2题:
A.<realm-name>
B.<url-pattern>
C.<description>
D.<web-resource-name>
E.<transport-guarantee>
第3题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print(language) ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print(list('Life is short, you need Python.').count('is')) 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print(x) [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4第4题:
A.you…your
B.you…our
C.us…our
D.us…your
第5题:
( ) – Is Miss White __________ English teacher, Maria?
– No, she teaches __________ geography.
A.your;my
B.you;mine
C.you;us
D.your;us
第6题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print language ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print list('Life is short, you need Python.').count('is') 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print x [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4