人人看人人艹,欧美日在线观看,亚洲欧洲在线观看,国内精品视频饥渴少妇在线播放,国产首页,亚洲色图欧美另类,一区二区a视频

專業(yè)軟件設計師網站|培訓機構|服務商(加客服微信:cnitpm或QQ:947530340進軟件設計師學霸群)

軟題庫 培訓課程
當前位置:信管網 >> 軟件設計師 >> 每日一練 >> 文章內容
軟件設計師每日一練試題(2022/9/26)
來源:信管網 2022年09月27日 【所有評論 分享到微信

軟件設計師當天每日一練試題地址:www.tent-cn.com/exam/ExamDay.aspx?t1=4

往期軟件設計師每日一練試題匯總:www.tent-cn.com/class/27/e4_1.html

軟件設計師每日一練試題(2022/9/26)在線測試:www.tent-cn.com/exam/ExamDay.aspx?t1=4&day=2022/9/26

點擊查看:更多軟件設計師習題與指導

軟件設計師每日一練試題內容(2022/9/26)

  • 試題1

    以下關于總線的敘述中,不正確的是()
    A.并行總線適合近距離高速數據傳輸.
    B.串行總線適合長距離數據傳輸
    C.單總線結構在一個總線上適應不同種類的設備,設計簡單且性能很高
    D.專用總線在設計上可以與連接設備實現最佳匹配

    查看答案

    試題參考答案:C

    試題解析與討論:www.tent-cn.com/st/253121672.html

  • 試題2

    ( )是多媒體內容描述接口標準。
    A、MPEG-1 
    B、MPEG-2 
    C、MPEG-4 
    D、MPEG-7 

    查看答案

    試題參考答案:D

    試題解析與討論:www.tent-cn.com/st/76942649.html

  • 試題3

    能力成熟度模型集成(CMMI)是若干過程模型的綜合和改進。連續(xù)式模型和階段式模型是CMMI提供的兩種表示方法,而連續(xù)式模型包括6個過程域能力等級,其中( )使用量化(統(tǒng)計學)手段改變和優(yōu)化過程域,以應對客戶要求的改變和持續(xù)改進計劃中的過程域的功效。
    A.CL2(已管理的)
    B.CL3(已定義級的)
    C.CL4(定量管理的)
    D.CL5(優(yōu)化的)

    查看答案

    試題參考答案:D

    試題解析與討論:www.tent-cn.com/st/4072015665.html

  • 試題4

    下面二叉樹表示的簡單算術表達式為( )。

    A.10*20+30-40
    B.10*(20+30-40)
    C.10*(20+30)-40
    D.10*20+(30-40)

    查看答案

    試題參考答案:C

    試題解析與討論:www.tent-cn.com/st/4071112926.html

  • 試題5

    按照我國著作權法的權利保護期,以下權利中,(  )受到永久保護。
    A.發(fā)表權
    B.修改權
    C.復制權
    D.發(fā)行權

    查看答案

    試題參考答案:B

    試題解析與討論:www.tent-cn.com/st/450984134.html

  • 試題6

    In a world where it seems we already have too much to do, and too many things to think about, it seems the last thing we need is something new that we have to learn.
    But use cases do solve a problem with requirements: with (1 ) declarative requirements it's hard to describle steps and sequences of events.
    Use cases, stated simply, allow description of sequences of events that, taken together, lead to a system doing something useful. As simple as this sounds, this is important. When confronted only with a pile of requiements, it's often(2 )to make sense of what the authors of the  requirements really wanted the system to do. In the preceding example, use cases reduce the ambiguity of the requirements by specifying exactly when and under what conditions certain behavior occurs; as such, the sequence of the behaviors can be regarded as a requirement. Use cases are particularly well suited to capture approaches. Although this may sound simple, the fact is that (3 ) requirement capture approaches, with their emphasis on declarative requirements and "shall" statements, completely fail to capture fail to capture the (4 ) of the system's behavior. Use cases are a simple yet powerful way to express the behavior of the system in way that all stakeholders can easily understand.
    But, like anything, use cases come with their own problems, and as useful as they are, they can be (5 ). The result is something that is as bad, if not worse, that the original problem. Therein it's important to utilize use cases effectively without creating a greater problem than the one you started with.
    (1)A.plenty
    B.loose
    C.extra
    D.strict
    (2)A.impossible
    B.possible
    C.sensible
    D.practical
    (3)A.modern
    B.conventional
    C.different
    D.formal
    (4)A.statics
    B.nature
    C.dynamics
    D.originals
    (5)A.misapplied
    B.applied
    C.used
    D.powerful

    查看答案

    試題參考答案:D、A、B、C、A

    試題解析與討論:www.tent-cn.com/st/253009906.html

  • 試題7

    模塊A提供某個班級某門課程的成績給模塊B,模塊B計算平均成績、最高分和最低分,將計算結果返回給模塊A,則模塊B在軟件結構圖中屬于()模塊。
    A.傳入
    B.傳出
    C.變換
    D.協調

    查看答案

    試題參考答案:C

    試題解析與討論:www.tent-cn.com/st/3803518540.html

  • 試題8

    設求解某問題的遞歸算法如下:
    F(int n){
    if n==1 {
    Move(1)
    }else{
    F(n-1);
    Move(n);
    F(n-1);
    }
    }
    求解該算法的計算時間時,僅考慮算法Move所做的計算為主要計算,且Move 為常數級算法。則算法F的計算時間T(n)的遞推關系式為(1) ;設算法Move的計算時間為k,當n=4 時,算法F的計算時間為(2) 。
    (1)A、T(n)=T(n-1)+1
    B、T(n)=2T(n-1)
    C、T(n)=2T(n-1)+1
    D、T(n)=2T(n+1)+1
    (2)A、14k
    B、15k
    C、16k
    D、17k

    查看答案

    試題參考答案:C、B

    試題解析與討論:www.tent-cn.com/st/78032687.html

  • 試題9

    某用戶在使用校園網中的一臺計算機訪問某網站時,發(fā)現使用域名不能訪問該網站,但是使用該網站的IP地址可以訪問該網站,造成該故障產生的原因有很多,其中不包括(69)。
    A.該計算機設置的本地DNS服務器工作不正常
    B.該計算機的DNS服務器設置錯誤
    C.該計算機與DNS服務器不在同一子網
    D.本地DNS服務器網絡連接中斷

    查看答案

    試題參考答案:C

    試題解析與討論:www.tent-cn.com/st/3807418087.html

  • 試題10

    如下圖所示,模塊A和模塊B都訪問相同的全局變量和數據結構,則這兩個模塊之間的耦合類型為( )耦合。



    A. 公共
    B.控制
    C.標記
    D.數據

    查看答案

    試題參考答案:A

    試題解析與討論:www.tent-cn.com/st/2533114690.html

掃碼關注公眾號

溫馨提示:因考試政策、內容不斷變化與調整,信管網網站提供的以上信息僅供參考,如有異議,請以權威部門公布的內容為準!

信管網致力于為廣大信管從業(yè)人員、愛好者、大學生提供專業(yè)、高質量的課程和服務,解決其考試證書、技能提升和就業(yè)的需求。

信管網軟考課程由信管網依托10年專業(yè)軟考教研傾力打造,官方教材參編作者和資深講師坐鎮(zhèn),通過深研歷年考試出題規(guī)律與考試大綱,深挖核心知識與高頻考點,為學員考試保駕護航。面授、直播&錄播,多種班型靈活學習,滿足不同學員考證需求,降低課程學習難度,使學習效果事半功倍。

相關內容

發(fā)表評論  查看完整評論  

推薦文章