久久久国产精品秘人口麻豆|永久免费AV无语国产|人成电影免费中文字幕|久久AV嫩草影院2

    1. <dfn id="yitbn"><samp id="yitbn"><progress id="yitbn"></progress></samp></dfn>

          <div id="yitbn"></div>

          1. 首頁(yè) 考試吧論壇 Exam8視線 考試商城 網(wǎng)絡(luò)課程 模擬考試 考友錄 實(shí)用文檔 繽紛校園 英語(yǔ)學(xué)習(xí)
            2010考研 | 自學(xué)考試 | 成人高考 | 專 升 本 | 法律碩士 | MBA/MPA | 中 科 院
            四六級(jí) | 商務(wù)英語(yǔ) | 公共英語(yǔ) | 職稱日語(yǔ) | 職稱英語(yǔ) | 博思 | 口譯筆譯 | GRE GMAT | 日語(yǔ) | 托福
            雅思 | 專四專八 | 新概念 | 自考英語(yǔ) | 零起點(diǎn)英、、、、韓語(yǔ) | 在職申碩英語(yǔ)
            在職攻碩英語(yǔ) | 成人英語(yǔ)三級(jí)
            等級(jí)考試 | 水平考試 | 微軟認(rèn)證 | 思科認(rèn)證 | Oracle認(rèn)證 | Linux認(rèn)證
            公務(wù)員 | 報(bào)關(guān)員 | 報(bào)檢員 | 外銷員 | 司法考試 | 導(dǎo)游考試 | 教師資格 | 國(guó)際商務(wù)師 | 跟單員
            單證員 | 物流師 | 價(jià)格鑒證師 | 銀行從業(yè)資格 | 證券從業(yè)資格 | 人力資源管理師 | 管理咨詢師
            期貨從業(yè)資格 | 社會(huì)工作者
            會(huì)計(jì)職稱 | 注會(huì)CPA | 經(jīng)濟(jì)師 | 統(tǒng)計(jì)師 | 注冊(cè)稅務(wù)師 | 評(píng)估師 | 精算師 | 高會(huì) | ACCA | 審計(jì)師
            法律顧問 | 會(huì)計(jì)證
            一級(jí)建造師 | 二級(jí)建造師 | 造價(jià)師 | 監(jiān)理師 | 安全師 | 咨詢師 | 結(jié)構(gòu)師 | 建筑師 | 安全評(píng)價(jià)師
            房地產(chǎn)估價(jià)師 | 土地估價(jià)師 | 設(shè)備監(jiān)理師 | 巖土工程師 | 質(zhì)量資格 | 房地產(chǎn)經(jīng)紀(jì)人 | 造價(jià)員
            投資項(xiàng)目管理 | 土地代理人 | 環(huán)保師 | 環(huán)境影響評(píng)價(jià) | 物業(yè)管理師 | 城市規(guī)劃師 | 公路監(jiān)理師
            公路造價(jià)工程師 | 招標(biāo)師
            執(zhí)業(yè)護(hù)士 | 執(zhí)業(yè)醫(yī)師 | 執(zhí)業(yè)藥師 | 衛(wèi)生資格

            全國(guó)計(jì)算機(jī)等級(jí)考試四級(jí)試題(二)

              (61) There are several periods in a computer,the shortest period is
              A.Instruction period
              B.Machine period
              C.Beat period
              D.CPU period

              (62) Which set is empty?
              A.{xx is a real number and x2=9 B){xx is a real number and x2-1=0}
            C){xx is a real number and x2+1=0} D){xx is a real number and x=2x+1}

              (63) What is the relation represented in the exhibit shown below?
              A.R={(1,2),(1,3),(1,4),(1,5)}
              B.R={(1,1),(2,2),(3,3),(4,4),(5,5)}
              C.R={(1,2),(1,3),(1,4),(2,3),(4,1),(4,5),(5,5)}
              D.R={(1,2),(1,3),(1,4),(2,2),(2,3),(4,1),(4,4),(4,5)}

              (64) What is the contrapositive of the following implication?“If it is raining,then I get wet.”
              A.If I get wet,then it is raining.
              B.If I am wet ,then if is raining.
              C.If it is not raining, I do not get wet.
              D.If I do not get wet,then it is not raining.

              (65) Which property does R posses? (2 grades)
            Let A={1,2,3,4} and let R ={<1,2>,<2,2>,<3,4>,<4,1>}
              A.Symmetry
              B.Reflexivity
              C.Asymmetry
              D.Antisymmetry

              (66) When walking a tree, which traversal method yields a prefix, or Polish,form?
              A.lnorder
              B.Preorder
              C.Postorder
              D.Reorder

              (67) ln the following statements about graph operations, which one is NOT correct?
            (2 grades)
              A.Spanning tree of a graph may not be unique.
              B.Minimum spanning tree of a graph may not be unique.
              C.Finding critical path is an operation on directed graph.
              D.Finding critical path is an operation on undirected graph.

              (68) Which traversal method for a binary tree does the following Pascal code illustrate? (2 grades)
            procedure traverse(p:pointer);
            begin
            if p<>nil
            then begin
            traverse(p↑.left);
            process(p);
            traverse(p↑.right)
            end
            end;
              A.lnorder
              B.Preorder
              C.Postorder
              D.Reorder

              (69) What storage scheme does MS-DOS use for storing files on a disk?
              A.I-nodes
              B.a(chǎn) linked list allocation
              C.a(chǎn) continuous allocation
              D.a(chǎn) linked list with index

              (70) Which of the followings is NOT a condition for deadlock?
              A.Starvation
              B.Circular Wait
              C.No Preemption
              D.Mutual Exclusion

              (71) Assume that an operating system uses a round-robin scheduler. The process’s quantum is 20 msec,and the context switch is 5 msec. What percentage of the CPU’s time is spent on administrative overhead? (2 grades)
              A.5%
              B.15%
              C.20%
              D.25%

              (72) What state is a process in when it can’t run because it needs a resource to become available? (2 grades)
              A.Ready
              B.Interrupt
              C.Blocked
              D.Running

              (73) The following sectors are requested from the disk:
            11,1,36,16,34,9,12
            What is the order of the sector reads if you are using the elevator algorithm?
            (2 grades)
              A.1,9,11,12,16,34,36
              B.11,1,36,16,34,9,12
              C.11,12,9,16,1,34,36
              D.11,12,16,34,36,9,1

              (74) What is the candidate key of a relational database?
              A.A field with a constraint placed on it.
              B.A set of fields that have no data in them.
              C.A set of fields in a table used to identify a record uniquely.
              D.Fields from multiple tables that are used for sorting records.

              (75) What Normal From is the table shown in the exhibit? (2 grades)

              emps tbl
            emp_idemp_nameemp_phonedept_namedept_phonedept_mgrname
            (1) emp_id→emp_name, emp_phone, dept_name(2) dept_name→dept_phone, dept_mgrname
            
              A.1NF
              B.2NF
              C.3NF
              D.BCNF

              (76) Which operating system can Oracle database NOT be used in?
              A.DOS
              B.UNIX
              C.Windows95
              D.IBM Mainframes

              (77) Which values are NOT permitted to be part of the primary key?
              A.NULL
              B.punctuation
              C.special characters
              D.a(chǎn)lpha-numeric characters

              (78) Which phase of the software engineering process results in the Software Requirements Specification?
              A.definition phase
              B.engineering phase
              C.maintenance phase
              D.development phase

              (79) When drawing multilevel data flow chart of top-down, the balance between parent chart and son chart must be taken into account, and to pass judgment for the balance of the charts is regularly maintained by (2 grades)
              A.Output data
              B.Data dictionary
              C.Processing number
              D.Input data

              (80) Which is the strictest form of cohesion?
              A.logical
              B.functional
              C.procedural
              D.coincidental

              (81) Which is NOT a concept of White Box Testing? (2 grades)
              A.You should execute all loops at their boundary conditions.
              B.You should execute all interfaces at their boundary conditions.
              C.You should execute all logical decisions on their true and false sides.
              D.You should execute all independent paths within a module at least once.

              (82) Prototyping method is a dynamic design process, it requires people who use prototyping method should have the following capability
              A.Proficient program expertise
              B.Immediately acquire requirement
              C.Coordinate & organize eloquently
              D.Handle tools smartly

              (83) There are two styles in the evolution of instruction set , that is CISC and RISC. Which chip belongs to the RISC?
              A.i APX 432
              B.VAX-11/780
              C.Motorola 68000
              D.Power PC

              (84) In advanced PC bus or local bus, which one has the fastest data throughput?
              A.ISA
              B.PCI
              C.MCA
              D.EISA

              (85) There are many methods in the CPETT(short for Computer Performance Evaluation Tools and Techniques). One of them is the method that runs a Kernel as the load of a computer. So we call it
              A.Monitor method
              B.Benchmark method
              C.Model method
              D.Physical method

              (86) There are two common types in page replacement algorithm: stack and non-stack strategies. When a real page number increase only stack algorithm can increase the hit rate monotonously. In the following replacement algorithm,which one belongs to non-stack strategy?(2 grades)
              A.FIFO
              B.LRU
              C.PFF
              D.OPT

              (87) What binary number is encoded with Differential Manchester in the diagram below? (2 grades)
              A.10110011100
              B.11001100011
              C.11000110010
              D.00111001101

              (88) Each host or router on the Internet has its own IP address. There are four IP addresses as followings. Which IP address is erronedus?
              A.189.132.2.1
              B.255.255.255.0
              C.198.73.265.50
              D.192.0.0.3

              (89) When should Frequency Division Multiplexing be used?
              A.when the attenuation on a medium is greater than 25%.
              B.when the white noise on the medium exceeds 50% of the medium’s bandwidth
              C.when the achievable data rate of the medium exceeds the data rate of the digital signals to be transmitted
              D.when the useful bandwidth of the medium exceeds the required bandwidth of the digital signals to be transmited

              (90) The universe of hypertext servers that allow text, graphics, sound, and other multimedia files to be viewed togather and navigated via hypertext links. It is now the fastest growing area of the Internet. It is
              A.Gopher
              B.WWW
              C.E-mail
              D.FTP

            文章搜索
            全國(guó)計(jì)算機(jī)等級(jí)考試四級(jí)試題(二)網(wǎng)友評(píng)論網(wǎng)友評(píng)論
            版權(quán)聲明 --------------------------------------------------------------------------------------
                如果計(jì)算機(jī)等級(jí)考試網(wǎng)所轉(zhuǎn)載內(nèi)容不慎侵犯了您的權(quán)益,請(qǐng)與我們聯(lián)系,我們將會(huì)及時(shí)處理。如轉(zhuǎn)載本計(jì)算機(jī)等級(jí)考試網(wǎng)內(nèi)容,請(qǐng)注明出處。
             gaoxiaoliang