计算机导论考试重点(key points of computer introduction examination)

计算机导论考试重点(key points of computer introduction examination)

ID:16170785

大小:22.95 KB

页数:12页

时间:2018-08-08

上传者:xinshengwencai
计算机导论考试重点(key points of computer introduction examination)_第1页
计算机导论考试重点(key points of computer introduction examination)_第2页
计算机导论考试重点(key points of computer introduction examination)_第3页
计算机导论考试重点(key points of computer introduction examination)_第4页
计算机导论考试重点(key points of computer introduction examination)_第5页
资源描述:

《计算机导论考试重点(key points of computer introduction examination)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

计算机导论考试重点(Keypointsofcomputerintroductionexamination)ThecachememoryreadandwritespeedandeasethemaincontradictionofCPUrunningspeedcannotmeettheneeds;morestoragespaceforvirtualmemorytosolvetheproblemofmemorycapacityissmall,cannotsavethelargerprogramwithmoredata,soastomaketherenovationofmemorysystemhashigherspeed,morereadingandwritinglargestoragespace,therelativelylowcostofmanufacturingandoperatingrequirements.Thepursuitofarenovatedmemorysystemwithhigherperformancepriceratioisthecoreideaofthethreelevelstoragearchitecture.Theoperatingprincipleofthememorysystemofthethreestagestructureisbasedonthelocalityprincipleoftheprogramrunning.Thelocalprincipleofprogramoperationisembodiedin:(1)thelocalprincipleoftime.Inashortperiodoftime,therecentlyaccessedprogramsanddataarelikelytobeaccessedagain.(2)theprincipleofspatiallocality.Thatis,recently,itisoftenconcentratedinasmallstoragearea.(3)localityprincipleofinstructionexecutionsequence.Instructionsequenceexecutionismorelikelythantransferexecution.Inathreestagememorysystem,thestoredinformationmustsatisfythefollowingprinciples: ConsistencyprincipleThatis,thesameinformationwillbestoredinseverallevelsofmemoryatthesametime,thisinformationmustbekeptthesamevalueinseverallevelsofmemory.InclusionprincipleIntheinnerlayer(closetoCPU)inmemoryofinformationmustbeincludedinthememoryoftheouterlayers,namelyalltheinformationinthememoryisacopyoftheinnerpartoftheouterinformationstoredinmemory,thisistoensurethenormaloperationoftheprocedures,toachieveinformationsharing,improvetheutilizationrateofrequiredsystemresources.Notviceversa.10.whatisaninterface?Whatisitsmainfunction?Answer:theproblemofdataexchangewillbringintothecorrespondinglogiccomponentsbetweensynchronizationandcoordination,dataformatconversioninthehostandperipherals,theselogiccomponentsarecalledinputandoutputinterface,referredtoastheinterface.Thebasicfunctionsoftheinput/outputinterfaceare:(1)torealizedatabufferingandprovidedatabuffermechanismintheprocessofexchanginginformationbetweenhostandequipment,sothatthehostandtheperipheraldevicecanmeettheworkingspeed.(2)thedataformatconversion,forexample,whenthesignal isnotcomplicitinhostanddeviceandsignallevelconversionfunction,datatransmissionformat(serialandparallel)conversionfunction,directmemoryaccessinadditionaldemand.(3)providethestatusofperipheralsandinterfaces,provideeffectivehelpforCPUtocontrolallkindsofperipherals,andexchangethestatusinformationofhostandperipheraldevices.(4)torealizethecommunicationandcontrolbetweenthehostandtheperipheral,andrealizethedataexchangebetweenthehostandthedevice.Thirdchapters3.brieflydescribethecommonfeaturesofmachinelanguageandassemblylanguage.Assemblylanguagehasanessentiallyinstructionsystemcorrespondingtomachinelanguage.Inmostcases,aassemblerdirectivedirectlycorrespondstoamachineinstruction,andafewassemblyinstructionscorrespondtoseveralmachineinstructions,sotheessenceofassemblylanguageisthesameasmachinelanguage.Aswiththemachineinstructions,assemblyinstructionsdirectlytothecomputerhardwareoperation,requiretheprogrammerhasprofoundknowledgeofcomputerscience;eachinstructioncanonlyachieveaveryfineoperation(e.g.,mobileincrement),thesourceprogramisgenerallymorecomplex,tediousanderrorprone.9.brieflydescribethefunctionsofsemanticprocessing. Answer:thesemanticprocessinginthecompilationprocessimplementstwofunctions:(1)toexaminethestaticsemanticsofeachgrammaticalstructure,thatis,toverifywhetherasyntaxstructureislegitimateisreallymeaningful,andsometimesrefertothisworkasstaticsemanticanalysisorstaticreview.(2)ifthestaticsemanticsiscorrect,thesemanticprocessingmustexecutetherealtranslation,orgenerateanintermediaterepresentationoftheprogram(intermediatecode),orgeneratetheactualtargetcode.Whatisthetaskofthe11.targetcodegenerationphase?Answer:thetaskofthetargetcodegenerationphaseistotransformtheintermediatecodeintotheabsoluteinstructioncodeorrelocatableinstructioncodeorassemblyinstructioncodeonaparticularmachine.Thisisthefinalstageofcompilation,Itisrelatedtothestructureofthehardwaresystemandinstructionmeaning,thisphaseofworkisverycomplex,involvingtheuseofstoragespaceallocation,functionalcomponentsofhardwaresystemofmachineinstructions,varioustypesofdatavariablesandschedulingregisterandbackupregisteretc..Fourthchapters Whatarethecharacteristicsofprogramminglanguageusingtop-downprogrammingin3.structuredprogramminglanguage?Answer:usingstructuredprogramminglanguageusingtop-downmethodofprogrammingischaracterizedby:(1)thestructureoftheproblemdecomposedintosubproblemsmustcorrespondtooneofthe3basicprogramstructures.(2)thedivisionoftheproblemdeterminesthestructureoftheprogram.Ontheonehand,thesubproblemdeterminestheleveloftheprogramwhichisastructureof3basicstructures;ontheotherhand,aproblemthathowtodivideintosubproblemsisflexible,notonlyadecompositionmethod.Thequalityofthedesigndependsonthequalityofthedecomposition,andalsodeterminesthedifferentstructuresoftheprogram.(3)theboundaryoftheproblemshouldbeclearanddefinite.Onlyinthiswaycanwesolvetheseproblemsaccurately,otherwise,theywillbeambiguousandcannotstart.4.brieflydescribethedifferencebetweenobjectorientedandstructuredprogramming.Answer:objectorientedisanewmethodandnewideawhichisessentiallydifferentfromthetraditionalstructuredmethod.Itabsorbsalltheadvantagesofthestructureoftheprogramdesign,butalsoconsidertherelationshipbetweentherealworldandcomputer,thinksthattherealworldiscomposedofaseriesofrelatedtoeachotherandcancommunicatewitheachotherentities,thisentityistheobjectinobject-oriented method,eachobjecthasitsownnaturalattributesandbehaviorcharacteristics,andaclassofsimilartothecommonobjectisabstractdescription,objectorientedmethodinthecoreoftheclass.5.whatisadatastructure?Whatarethephysicalstructuresofdata?Answer:datastructurereferstothecollectionoftherelationshipsamongdataelements,includingthelogicalstructure,physicalstructureanddataoperationofdata.Therearefourkindsofphysicalstructureofdata,theyaresequentialstructure,linkedliststructure,indexstructureandhashstructure.(1)sequencestructure:allelementsarestoredinacontinuousstorageunit,logicalstorageadjacentelementsinthephysicallocationoftheadjacentstorageunit,thestoragerepresentationcalledsequentialstoragestructure.(2)liststructure:thelogicaladjacentelementdoesnotrequireitsphysicalpositionadjacent,thelogicalrelationshipbetweenelementsisexpressedbytheattachedpointerdomain,thusthestoragerepresentationiscalledthechainstoragestructure.(3)indexstructure:eachdatastructurecreatesanindextable,eachdataelementoccupiesoneofthetables,eachtableitemusuallycontainskeywordsandaddresspointers.Thekeywordisadataitemthatuniquelyidentifiesadataelement. (4)hashstructure:byconstructingthecorrespondinghashfunction,thevalueofthehashfunctionisusedtodeterminetheaddressstoredbytheelement.Fifthchapters1.whatisthealgorithm,whatarethecharacteristicsofthealgorithm?Answer:"Algorithm"isanorderedsetofexplicitandexecutedstepsthatterminateandproduceresultsinafiniteamountoftime".Thecharacteristicsofthealgorithmare:(1)finiteproperty(termination):analgorithmmustbeexecutedwithinafinitenumberofstepsandwithinareasonablefinitetime.(2)certainty:eachoperationstepinthealgorithmmusthaveadefinitemeaning,andnotwosenseisallowed.(3)validity(enforceability):theoperationstepsdescribedinthealgorithmareexecutable,andthefinalresultscanbeobtained.(4)inputandoutput:analgorithmshouldhavezeroormoreinputdataand1ormoreoutputdata.2.whatisthealgorithm'stimecomplexityandspacecomplexity,howtoexpress? Answer:timecomplexityisafunctionrelatedtotheproblemsizeandalgorithminput,whichrepresentsthetimeittakesforthealgorithmtorun.Remember,T(n),wherenrepresentsthesizeoftheproblem.Thespacecomplexityofthealgorithm(Spacecomplexity)isusedtomeasurethespatialcomplexityofthealgorithm,thatis,thesizeofthespaceoccupiedbytheprogramexecutingthealgorithminthecomputer.Inbrief,thespacecomplexityisalsoafunctionrelatedtotheproblemsizeandalgorithminput.Remember,S(n),wherenrepresentsthesizeoftheproblem.Thetimecomplexityandspacecomplexityarealsointroduced.Thesymbol"O"isintroducedtorepresenttheorderofmagnitudebetweenT(n),S(n)andtheproblemsizen.3.representtheprocessoflanguageprocessingbygraphicmethod.Answer:theprocessoflanguageprocessingisshowninthepicture:Sixthchapters1.abriefdescriptionofacomponentofDBMS.Answer:DBMSisusuallycomposedoffourparts,anditisalsothefunctionofDBMS:(1)datadefinitionlanguageDDLanditstranslationprocessingprogram:definethedataobjectsinthedatabase. (2)datamanipulationlanguageDMLanditscompiler(orinterpreter)program:query,insert,delete,modifyandsoon.(3)thedatabaseoperationcontrolprogram:toachieveunifiedmanagementandcontrolofthedatabase,soastoensurethesafetyandintegrityofdata,anddataconcurrencycontrol,completethedatabaseoffaultrecoveryfunction.(4)utilityprogram:completetheestablishmentandmaintenanceofdatabase,dataformatconversionandcommunication,databasedumpandotherfunctions.3.brieflydescribetheintegrityofrelationaldatabases.Answer:intherelationalmodel,threeintegrityconstraintsaredefined:entityintegrity,referentialintegrity,anduserdefinedintegrity.Themainprovisionsofentityintegritycodesinarelationship(includingthemainattributesofall)cannotbeempty;theoutercodemustbeavalidvaluekeyinanotherrelationofthereferentialintegrityrules,orempty;userdefinedintegrityisaccordingtotheapplicationrequirementsanddatarequirementsmustmeetthesemanticrequirements.Therangeofvalueofacertainattribute.Seventhchapters3.whatissoftwareengineering?Answer:softwareengineeringisanengineeringscienceresearchmethods,large-scaleprogramdesigntoolsand management,alsoistousethesystem,standardandquantitativeapproachtothedevelopment,operationandmaintenanceofsystemengineeringsoftware.Softwareengineeringisaninterdisciplinarysubject,involvingcomputerscience,managementscience,engineeringandmathematics.Thetheoryandmethodofsoftwareengineeringtechnology,arebuiltonthebasisofcomputerscience,itistheprinciple,managementmethodforsoftwareproductionmanagement;engineeringpointofviewofcostestimating,schedulingandimplementationplan;usemathematicalmethodstoestablishsoftwarereliabilitymodelandanalysisofvariousalgorithmsandproperties.Softwareengineeringisanengineeringdisciplinethatguidesthedevelopmentandmaintenanceofcomputersoftware.Ninthchapters1.whatiscalledinformation,data,signals?Answer:information(Information)istherepresentationoftheattributesandinterrelatedcharacteristicsofobjectivethings.Itreflectstheexistenceformandmovementstateofobjectivethings.Theinformationinthecomputerisacombinationofletters,numbers,symbols,andthecarrieroftheinformationcanbewritten,sound,graphics,imagesandsoon.Data(Data)isthedigitalformofinformationortheformofdigitalinformation.Signal(Signal)isthetransmissionmediumthatcarries information.Inthecommunicationsystem,itiscommonlyusedtodescribetheelectricalsignals,opticalsignals,carriersignals,pulsesignals,modulationsignalsandsoon.Fourteenthchapters3.whatarethemethodsofknowledgerepresentation?Answer:knowledgerepresentationisadescriptionofknowledge,inartificialintelligence,mainlyreferstoadatastructureapplicabletothecomputer.Inartificialintelligence,knowledgerepresentationmethodsarecommonlyused:firstorderpredicatelogicrepresentation,generativerepresentation,framerepresentation,semanticnetworkrepresentation,processrepresentation,scriptrepresentationmethod,Petrinetworkmethodandsoonobjectorientedrepresentation.4.whataretheclassicalreasoningtechniques?Answer:reasoningisthemainwayofthinkingforhumanproblemsolving,anditstaskistouseknowledge,soitiscloselyrelatedtotherepresentationofknowledge.Classicalreasoningmainlyincludesdeterministicreasoning,includingreductionreasoning,digestiondeductivereasoningandruledeductionreasoning.Theyarebasedontheclassicallogic,andusethedefiniteknowledgetocarryouttheexactreasoning,andtheyarealsoakindofmonotonicreasoning.

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。
大家都在看
近期热门
关闭