软件水平考试程序员易错题(2019/1/16) |
第1、2、3、4、5题:softwaredesignisa__(71)__process.Itrequiresacertain__(72)__off1aironthepartofthedesigner.Designcannotbelearnedfromabook.Itmustbepracticedandlearntbyexperienceandstudyofexistingsystems.Awell__(73)__softwaresystemisstraightforwardtoimplementandmaintain,easily__(74)__andreliable.Badly__(73)__softwaresystems,althoughtheymayworkare__(75)__tobeexpensivetomaintain,difficulttotestandunreliable.
71. A、create B、createD、C、creating D、creative 72. A、amount B、amounted` C、mount D、mounteD、73. A、design B、designeD、C、designing D、designs 74. A、understanD、 B、understands C、understanding D、understooD、75. A、like B、likely C、unlike D、unlikely |
【单选题】: |
【单选题】: |
【单选题】: |
【单选题】: |
【单选题】: |
第6题:函数fopen()的返回值不能是( )
A、NULL B、0 C、1 D、某个内存地址 |
【单选题】: |
第7题:设a为整型变量,下列C表达式中,不能表达数学关系式:10
A、10 B、a==11||a==12|| a==13|| a==14 C、a>10&&a<15 D、!(a<=10)&&!(a>=15) |
【单选题】: |
第8题:设字符型变量 a=3,b=6,计算表达式C=(a^b)<< 2后C的二进制值是( )
A、00011100 B、00000111 C、00000001 D、00010100 |
【单选题】: |
第9题:设有如下定义,则正确的叙述为( )
char x[]={"abcdefg"}; char y[]={'a','b','c','d','e','f','g'}; A、数组x和数组y等价 B、数组x和数组y长度相同 C、数组X的长度大于数组y的长度 D、数组X的长度小于数组y的长度 |
【单选题】: |