1.tcp協議的擁塞控制就是防止過多的資料注入到網路中,這樣可以使網路中的路由器或鏈路不致過載。常用的方法有:
a慢啟動、視窗滑動
b慢開始、擁塞控制
c快重傳、快恢復
d快開始、快恢復
2.shell 指令碼(shell script),是一種為 shell 編寫的指令碼程式。現有乙個test.s**件,且有可執行許可權,檔案中內容為:
#!/bin/bash
aa='hello world !'
請問下面選項中哪個能正常顯示hello world !
正確答案 :d
ash test.sh >/dev/null 1 && echo $aa
b./test.sh >/dev/null 1 && echo $aa
cbash test.sh >/dev/null 1 && echo $aa
dsource test.sh >/dev/null 1 && echo $aa
5.系統管理員編寫掃瞄臨時檔案的shell程式tmpsc.sh, 測試該程式時提示拒絕執行,解決的方法有( )
正確答案 :bcd
您的答案 :bc
achmod 644 tmpsc.sh
bchmod 755 tmpsc.sh
cchmod a+x tmpsc.sh
dchmod u+x tmpsc.sh
目錄/檔案的滿許可權的形式:
drwxrwxrwx
-rwxrwxrwx
其中:(r:讀取,w:寫,x:執行)
數字對應:(r:4,w:2,x:1), 命令列中的三個數字對應的授權角色為owner, group, others
1. 通過數字修改許可權
chmod 777 [-r]
2.符號型別修改
u: owner
g: group
o: others
a : all
chmod a+x [-r] 所有人都擁有執行許可權
7.object類不含有以下哪種方法?
正確答案 :a
aequal
bwait
cnotify
dclone
equals不是equals。
9
public class main
public static string fun1() finally
}public static string fun2()
}
執行以上程式後,輸出結果正確的是?
正確答案 :c
a.abcd
b.acdb
c.acbd
d.不確定
先去執行fun2()方法,獲取到返回值後,然後存到fun1()區域性變數表中,執行finally語句後,在返回這個值。10
根據類載入器載入類的初始化原理,推斷以下**的輸入結果為?
public class test
}class a
}
正確答案 :a
atesta
batesta
catest
dtest
public class main
public static void updatey(integer value)
public static void main(string args)
}
執行以上程式後,x和y的值分別是多少?
正確答案 :a
您的答案 :b
a10,10
b10,30
c30,10
d30,30
integer 是引用傳遞,但是每次對integer的賦值操作,都是建立了乙個新的物件,並且給變數賦上新的位址值。在main方法中的updatey(y) 與 public static void updatey 指向了不同的integer物件
IT筆試 錯題整理
搜狗2015c 工程師筆試題 1.下面關於迭代器失效的描述哪個是錯誤的 a.vector的插入操作不會導致迭代器失效 b.map的插入操作不會導致迭代器失效 c.vector的刪除操作只會導致指向被刪除元素及後面的迭代器失效 d.map的刪除操作只會導致指向被刪除元素的迭代器失效 解釋 vector...
PHP月考筆試 錯題
一 選擇題。1 在陣列的末尾新增陣列元素的函式是 d a array pop b array shift c array unshift d array push 2 從瀏覽器傳送get請求到伺服器,下列哪些方法能夠接收到該請求中的資料 a b 多選 a get name b request nam...
筆試面試錯題集2
1 以下哪些命令可以檢視當前系統的啟動時間 a w b top c ps d uptime w顯示當前登入者 top顯示當前任務 ps顯示所有程序資訊 uptime可以檢視系統啟動時間 2 與逆波蘭表示式ab cd 對應的中綴表示式是 a a b c d b a b c d c a b c d d ...