软件水平考试程序员易错题(2018/9/30) |
第1、2题:某服务器的IP地址是74.52.46.99,则其机器中二进制的IP地址为__(61)__,这是一个属于__(62)__的IP地址。
61. A、01111000010100101000011010011001 B、00000011110010101010011010011001 C、00000010010l0ll01001011l0ll00011 D、010010100011010000l0ll1001100011 62. A、A类 B、B类 C、C类 D、D类 |
【单选题】: |
【单选题】: |
第3题:循环语句“for(x=0, y=0;(y!=123)||( x<4);x++);”的循环执行( )
A、无限次 B、不确定次 C、4次 D、3次 |
【单选题】: |
第4、5、6、7、8题: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 |
【单选题】: |
【单选题】: |
【单选题】: |
【单选题】: |
【单选题】: |
第9题:在以下字符列中,合法的长整型常数是( )
A、OL B、4962710 C、0.054838743 D、2.1869el0 |
【单选题】: |
第10题:设x和y为int型变量,则执行下面的循环后,y的值为( )
for(y=l, x=l; y<=50; y++){ if(x>=10) break; if(x%2==1){ x+=5; continue;} X -= 3; } A、2 B、4 C、6 D、8 |
【单选题】: |