更多“Which of the following wireless standards has the highest maximum data rate?() ”相关问题
  • 第1题:

    Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements.You run the following statements in the mydb database: Mysql> CALL prepare_db ( );Mysql> LOAD DATA INFILE ‘/tmp/data.cav‘ INTO TABLE mytable; Mysql> SHOW TABLES;How many events are added to the audit log as a result of the preceding statements?()

    A.12; only top-level statements and stored procedure events are logged

    B.111; top-level statements and all lower-level statements are logged

    C.3; only the top-level statements are logged

    D.102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event


    参考答案:C

  • 第2题:

    WhichcapabilitydoCiscoRFID-ReadyNetworkssupport?()

    A.retrievalandprocessingofinformationfortaggedternsacrossanenterprise

    B.accesstoenterprisenetworksfromdifferentserviceareas

    C.standards-basedcommunicationsformultiplemediatypes

    D.extensivefunctionalityforlargeenterprisesprimarilyfittedwithopticalnetworking


    参考答案:A

  • 第3题:

    WhentwobridgesarecompetingfortherootbridgeofanIEEE802.1Dspanningtreeandbothhavethesamebridgepriorityconfigured,whichparameterdeterminesthewinner?()

    A.highest-numberedIPinterface

    B.MACaddress

    C.deviceuptime

    D.rootportcost


    参考答案:B

  • 第4题:

    A SONET network typically uses which of the following transmission media?()

    A. Single-mode fiber

    B. Multimode fiber

    C. Copper

    D. Wireless


    参考答案:A

  • 第5题:

    Theintegratedservicesroutingarchitectureprovidestheperformance,availability,andreliabilityneededtoscalemission-criticalbusinessapplicationsinthemostdemandingenvironments.WhichstatementbestdescribesthebenefitsofCiscoIntegratedServicesRouters?()

    A.ISRsprovidethreatdefenseagainstattacksfromhackersandvirusesthatcanoccurinthenetwork.

    B.ISRsprovidetheframeworktointegrateandextendwiredandwirelessnetworks

    C.ISRsprovideconcurrentsecurity,voice,data,wireless,andapplicationoptimizationservices.

    D.ISRSprovidethecommonfabric,functionality,andCLIacrossthenetwork.


    参考答案:C

  • 第6题:

    写出下面代码的运行结果。def addInterest(balance,rate): newBalance=balance*(1+rate) balance=newBalance def main(): amount=1000 rate=0.05 addInterest(amount,rate) print (amount) main()


    A