欧美在线观看www-欧美在线观看高清一二三区-欧美在线观看网站-欧美在线观看网址-国产高清在线精品免费-国产高清在线精品一区二区

當前位置:高考升學網 > 招聘筆試題 > 正文

中興筆試題和面試題答案與答案(二)

更新:2023-09-19 08:02:43 高考升學網

  11、作業調度程序從處于( )狀態的隊列中選擇適當的作業的作業投入運行

  后備

  12、ATM采用的線路復用方式為( )異步時分多路復用

  13、什么是分布式數據庫

  14、什么是虛擬設備?為什么在操作系統中引入虛擬設備?

  虛擬內存:

  由于系統在運行時有很多信息需要處理,內存有時不夠用,就在硬盤上開辟一個區域,用來臨時存放內存中放不下并不是經常訪問的數據,并且和內存一樣,關機后虛擬內存中的數據也丟失。

  虛擬光驅、光盤、軟驅、軟盤,虛擬網卡,就是虛擬設備

  15、在一個表里,有很多字段,每個字段的值有很多重復的,讓你用寫個SQL語句,把每個字段中出現次數最多的值列出來,并在這個值的前面加上一個-1(如果涉及到多張表,請把別的表中的重復數據也一并修改)

  比如有年齡和工資兩個字段,里面出理次數最多的是18和3000,找出來并改成-118和-13000

  16、TCp為何采用三次握手來建立連接,若采用二次握手可以嗎,請說明原因

  TCp 協議棧的弱點:TCp 連接的資源消耗,其中包括:數據包信息、條件狀態、序列號等。通過故意不完成建立連接所需要的三次握手過程,造成連接一方的資源耗盡。

  通過攻擊者有意的不完成建立連接所需要的三次握手的全過程,從而造成了C 機器的

  資源耗盡。

  17、簡述電路交換和分組交換的區別及優缺點。

  18、

  1)Which statement shows the maximum salary paid in each job category of each department?_______W=

  A. select dept_id, job_cat,max(salary) from employees where salary > max(salary);l?_[3N

  B. select dept_id, job_cat,max(salary) from employees group by dept_id,job_cat;o(hh@Q

  C. select dept_id, job_cat,max(salary) from employees;_ZTRH<

  D. select dept_id, job_cat,max(salary) from employees group by dept_id;`AA

  E. select dept_id, job_cat,max(salary) from employees group by dept_id,job_cat,salary;})X/

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇

  2)description of the students table:7

  sid_id number-_.

  start_date date4

  end_date dateF

  which two function are valid on the start_date column?_________。L

  A. sum(start_date)d=p

  B. avg(start_date)]#=w-v

  C. count(start_date)%UT "A

  D. avg(start_date,end_date)3

  E. min(start_date) %

  F. maximum(start_date)\5kmwa

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  Q;CL4

  3)for which two constraints does the oracle server implicitly create a unique index?______。Yu

  A. not nulluy(

  B. primary|AG^

  C. foreign key

  D. check`q

  E. uniqueC|a

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  o/

  4)in a select statement that includes a where clause,where is the group by clause placed in the select statement?______。^IXC^

  A. immediately after the select clause@[

  B. before the where clauseK

  C. before the from clauseM+=m

  D. after the order by clauseW0

  E. after the where clauseq?&{n

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  EDq6

  5)in a select statement that includes a where clause,where is the order by clause placed in the select statement?______.\5R6;

  A.immediately after the select clausezJ\\a5H

  B.before the where clause!~

  C.after all clauseRAl+K=

  D.after the where clauseCRs

  E.before the from clauseHVx

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  ,mi<

  6)evaluate there two sql statements______.m lx

  Select last_name,salary from employees order by salary;H^SLL

  Select last_name,salary from employees order by 2 asc;,:

  A.the same result B.different result C.the second statement returns a syntax error)_hO

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  AZsn

  7) you would like to display the system date in the format“20051110 14:44:17”。Which select statement should you use?______。uRI

  A. select to_date(sydate,’yearmmdd hh:mm:ss’)from dual;U--+-

  B. select to_sydate,’yearmonthday hh:mi:ss’)from dual;J0!D 6

  C. select to_date(sydate,’yyyymmdd hh24:mi:ss’)from dual;.

  D. select to_sydate,’yyyymmdd hh24:mi:ss’)from dual;?

  E. select to_sydate,’yy-mm-dd hh24:mi:ss’)from dual;_j

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  w|

  8)which select statement will the result ‘ello world’from the string‘Hello world’?______.B=

  A. select substr(‘Hello World’,1)from dual;#s)`4M

  B. select substr(trim(‘Hello World’,1,1))from dual;wNsi

  C. select lower(substr(‘Hello World’,1))from dual;sG9

  D. select lower(trim(‘H’from‘Hello World’))from dual;-

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  [

  9)which are DML statements(choose all that apply)______.aRb!H

  A.commit B.merge C.D. E.creat F.dropc

  10)Select 語句中用來連接字符串的符號是______.kMc`W

  A. “+” B. “&” C.“||” D.“|”Jjl

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  z[(s

  問答題:什么是聚集索引,什么是非聚集索引,什么又是主鍵?Wup%b

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  l/

  、學軟件、學IT的地方 -- 達內科技論壇  J^s)

  國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  ,Y><&~

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  bfh|sq

  ©達內IT技術論壇—中國人學Java、學C++、學C#/.Net、學軟件、學IT的地方 -- 達內科技論壇  Ld

最新圖文

2020年河北新聞網兩學一做

時間:2023-09-18 07:0:24

2020年河北新聞網兩學一做

時間:2023-09-15 11:0:59

兩學一做學習教育知

時間:2023-09-21 06:0:30

2020年開展兩學一做學習教

時間:2023-09-19 21:0:30
主站蜘蛛池模板: 麻豆视频网址 | 99视频精品全国在线观看 | 成人亚洲欧美日韩中文字幕 | 色妞色综合久久夜夜 | 四虎性| 免费高清在线影片一区 | 久久精品国产久精国产 | 啪啪一级视频 | 久久久9999久久精品小说 | 手机在线欧美 | 日韩制服在线 | 欧美一本| 国自产拍在线天天更新91 | 黄色网站在线观看视频 | 日本久久久久中文字幕 | 亚洲免费中文 | 久久国产精品99精品国产 | 99热视屏| 香蕉视频免费网站 | 亚洲色图在线视频 | 操狠狠| 亚洲国内精品 | 久久久噜噜噜久久老司机 | 日本www色视频成人免费网站 | 四虎影视永久在线观看 | 91日韩高清在线观看播放 | 日本不卡高清免费v日本 | 日韩一级在线播放 | 这里只有久久精品视频 | 国产盗摄精品一区二区三区 | 亚洲黄色片在线观看 | 久热这里只有精品99国产6 | 欧美福利一区二区三区 | 春日迟迟再出发综艺在线观看免费 | 国产在线视频91 | 欧美一区二区三区男人的天堂 | 精品国产高清a毛片 | 四虎图库| 男男羞羞视频网站国产 | 99色在线观看 | 亚洲精品视频在线免费 |