python測試開發面試題

發表於2016-04-07
試卷時間 60分鐘,請不要在試卷上作答,用A4紙做答題紙作答。 

一,中文單項選擇題(30分,每個3分)

  • 1.下列哪個語句在Python中是非法的?

A、x = y = z = 1                 B、x = (y = z + 1)

C、x, y = y, x                        D、x  +=  y

  • 2.關於Python記憶體管理,下列說法錯誤的是

A、變數不必事先宣告          B、變數無須先建立和賦值而直接使用

C、變數無須指定型別         D、可以使用del釋放資源

  • 3、下面哪個不是Python合法的識別符號

A、int32                 B、40XL         C、self                D、name

  • 4、下列哪種說法是錯誤的

A、除字典型別外,所有標準物件均可以用於布林測試

B、空字串的布林值是False

C、空列表物件的布林值是False

D、值為0的任何數字物件的布林值是False

  • 5、下列表示式的值為True的是

A、5+4j > 2-3j                         B、3>2>2

C、(3,2) ‘xyz’

  • 6、Python不支援的資料型別有

A、char                 B、int                  C、float                 D、list

  • 7、關於Python中的複數,下列說法錯誤的是

A、表示複數的語法是real + image j   B、實部和虛部都是浮點數

C、虛部必須字尾j,且必須是小寫   D、方法conjugate返回複數的共軛複數

  • 8、關於字串下列說法錯誤的是

A、字元應該視為長度為1的字串                 B、字串以標誌字串的結束

C、既可以用單引號,也可以用雙引號建立字串   D、在三引號字串中可以包含換行回車等特殊字元

  • 9、以下不能建立一個字典的語句是

A、dict1 = {}                        B、dict2 = { 3 : 5 }         C、dict3 = {[1,2,3]: “uestc”}         D、dict4 = {(1,2,3): “uestc”}

  • 10、下列Python語句正確的是

A、min = x  if  x y ? x : y

C、if (x > y)        print x         D、while True : pass

 

二,英文單項選擇題(30分)

  • 1.what gets printed? Assuming python version 2.x()

print type(1/2)

A. B. C. D. E.

  • 2. What gets printed?()

A.1 B.2 C.4 D.5 E.7

  • 3. What gets printed?()

A.1 B.3 C.4 D.7 E.none of the above

  • 4. What gets printed?()

A.new line then the string: woow

B.the text exactly like this: r”nwoow”

C.the text like exactly like this: nwoow

D.the letter r and then newline then the text: woow

E.the letter r then the text like this: nwoow

  • 5. Which numbers are printed?()

A.2, 4, 6 B.0, 1, 2, 4, 5, 6 C.0, 1, 4, 5 D.0, 1, 4, 5, 6, 7, 8, 9 E.1, 2, 4, 5, 6

  • 6. What gets printed by the code snippet below?()

A.5 B.5.0 C.5.5 D.6 E.6.0

  • 7. Assuming the filename for the code below is /usr/lib/python/person.py

and the program is run as: python /usr/lib/python/person.py

What gets printed?()

A.Person B.getAge C.usr.lib.python.person D.main E.An exception is thrown

  • 8. What gets printed?()

A.1 B.2 C.An exception is thrown

  • 9.  What gets printed?()

A.4 B.5 C.8 D.12 E.An exception is thrown

  • 10. What gets printed?()

A.1 B.2 C.6 D.10 E.An exception is thrown

 

三,shell筆試題(15分)

檔案如下:

請列印出使用者目錄在/home下面的的使用者目錄,如下

建議一行搞定。

 

四,SQL筆試題(15分)

用一條SQL語句 查詢出每門課都大於80分的學生姓名 。表scores如下:

name   kecheng   fenshu

張三     語文       81

張三     數學       75

李四     語文       76

 

五,python筆試題(20分)

  • 1,python常見的命令列互動自動化模組有哪些?(2分)
  • 2,python的底層網路互動模組有哪些?(2分)
  • 3,python網路互動時,二進位制打包解包的模組有哪些(2分)
  • 4,python的測試框架有哪些?試列出常用的3個或更多(6分)
  • 5,一行把[1,2,3,1,2,3] 中的重複元素剔除。(3分)
  • 6,現在要你使用pyDes(DES加密)和標準庫中的namedtuple,假設你之前沒有接觸過,你如何快速上手? (5分)

相關文章