单选题What is the most likely problem with this script () VAR=1   ((VAR=$VAR+1))    while [ $VAR -It 10 ]    do   echo $VAR  doneA #!/bin/ksh line is missingB Variable name VAR is not properly initializedC Loop variable is not incremented inside the loopD Re

题目
单选题
What is the most likely problem with this script () VAR=1   ((VAR=$VAR+1))    while [ $VAR -It 10 ]    do   echo $VAR  done
A

#!/bin/ksh line is missing

B

Variable name VAR is not properly initialized

C

Loop variable is not incremented inside the loop

D

Replace brackets with braces


相似考题
更多“单选题What is the most likely problem with this script () VAR=1   ((VAR=$VAR+1))    while [ $VAR -It 10 ]    do   echo $VAR  doneA #!/bin/ksh line is missingB Variable name VAR is not properly initializedC Loop variable is not incremented inside the loopD Re”相关问题
  • 第1题:

    Giventhefollowingscript,whydoestheoutputcomeoutasanemptylineinsteadof"dog"()!/bin/ksh$VAR=dogecho"${VAR}"

    A.The$VARvariablewasnotexported.

    B.The$VARshouldhavebeensetasVAR.

    C.dogneedsdoublequotesarounditwhensetting$VAR.

    D.The{}shouldnotbearoundVARintheechocommand.


    参考答案:B

  • 第2题:

    ASystempadministratorsuspectstheyarereceivinganerrorfromoneoftheirnightlycronjobs.Thejobis:01***/usr/local/bin/nightlycheck.plWhereshouldtheadministratorfirstlookforerrorsreportedbythiscronjob()

    A./var/log/syslog.out

    B.var/log/cron.log

    C./var/spool/cron/logs

    D.mail


    参考答案:D

  • 第3题:

    An operator needs to change from the /usr/bin to the /var/spool directory. Which of the following commands will accomplish this?()

    A. cd /var/spool

    B. lcd /var/spool

    C. cd /usr/bin /var/spool

    D. lcd /usr/bin /var/spool


    参考答案:A

  • 第4题:

    对于某金融机构而言,其计算vaR有两个投资时期可以选择,分别是1天和10天,那么()。

    A:1天的VaR值与10天的vaR间的关系不确定
    B:1天的VaR值比10天的vaR更大
    C:1天的VaR值与10天的VaR值相等
    D:1天的VaR值比10天的VaR值要小

    答案:A
    解析:
    vaR是指在市场正常波动下,某一金融资产或证券组合的最大可能损失。确切地说,VaR描述了在某特定的时期内,在给定的置信度下,某一金融资产或其组合可能遭受的最大潜在损失值,其大小取决于两个重要的参数:持有期和置信度。通常情况下,银行等金融机构倾向于按日计算VaR,但对于一般投资者而言,可按周或月计算VaR。国际清算银行规定的作为计算银行监管资本vaR有期为10天。因此,1天的VaR值与10天的VaR值之间无必然联系。

  • 第5题:

    An operator needs to change from the /usr/bin to the /var/spool directory. Which of the following commands will accomplish this?()

    • A、cd /var/spool
    • B、lcd /var/spool
    • C、cd /usr/bin /var/spool
    • D、lcd /usr/bin /var/spool

    正确答案:A

  • 第6题:

    Given the following script, why does the output come out as an empty line instead of "dog"()#!/bin/ksh  $VAR=dog  echo "${VAR}"

    • A、The $VAR variable was not exported.
    • B、The $VAR should have been set as VAR.
    • C、dog needs double quotes around it when setting $VAR.
    • D、The { } should not be around VAR in the echo command.

    正确答案:B

  • 第7题:

    Given the following scripts, what output would be generated() usr/local/bin/scriptl    #!/usr/bin/ksh    VARl=red    export VARl=green    VARl=blue    /usr/local/bin/script2    ARl=yellow   /usr/local/bin/script2     #!/bin/ksh   echo "The sky is ${VAR1}."

    • A、The sky is red.
    • B、The sky is blue.
    • C、The sky is green.
    • D、The sky is yellow.

    正确答案:C

  • 第8题:

    A System p administrator needs to run the annualreval.sh script, directing standard error to /var/log/reval.err, and appending standard out to /var/log/reval.log.  How can this be accomplished ()

    • A、annualreval.sh 2>&1 /var/log/reval.log 2> /var/log/reval.err
    • B、annualreval.sh 1>/var/log/reval.log 2>/var/log/reval.err
    • C、annualreval.sh 2>>&1 /var/log/reval.log /var/log/reval.err
    • D、annualreval.sh 1>>/var/log/reval.log 2>/var/log/reval.err

    正确答案:D

  • 第9题:

    单选题
    Given the following script, why does the output come out as an empty line instead of "dog"()#!/bin/ksh  $VAR=dog  echo "${VAR}"
    A

    The $VAR variable was not exported.

    B

    The $VAR should have been set as VAR.

    C

    dog needs double quotes around it when setting $VAR.

    D

    The { } should not be around VAR in the echo command.


    正确答案: B
    解析: 暂无解析

  • 第10题:

    单选题
    Given the following scripts, what output would be generated() usr/local/bin/scriptl    #!/usr/bin/ksh    VARl=red    export VARl=green    VARl=blue    /usr/local/bin/script2    ARl=yellow   /usr/local/bin/script2     #!/bin/ksh   echo "The sky is ${VAR1}."
    A

    The sky is red.

    B

    The sky is blue.

    C

    The sky is green.

    D

    The sky is yellow.


    正确答案: B
    解析: 暂无解析

  • 第11题:

    单选题
    以下代码的输出结果是() while(1) { $var++; $result=$var; if($result==17)break; $var--; } echo($result);
    A

    0

    B

    17

    C

    18

    D

    这是一个无限循环,没有输出


    正确答案: D
    解析: 暂无解析

  • 第12题:

    单选题
    What is the most likely problem with this script () VAR=1   ((VAR=$VAR+1))    while [ $VAR -It 10 ]    do   echo $VAR  done
    A

    #!/bin/ksh line is missing

    B

    Variable name VAR is not properly initialized

    C

    Loop variable is not incremented inside the loop

    D

    Replace brackets with braces


    正确答案: C
    解析: 暂无解析

  • 第13题:

    以下程序的输出结果是( )。 Dim var1 Dim var2 Dim var3 var1 = "Hello" var2 = "World !" var3 = var1&" "&var2 var1 = 10 var2 = 20 MsgBox var1 + var2

    A.Hello World! 30

    B.30

    C.102

    D.Hello World!


    正确答案:B
    解析:本题考查变体类型和字符串连接符的用法。在程序中首先给变体类型var1和var2,并赋厂字符串值,所以它们的类型是字符串型,然后将两个字符串相连接的结果赋给变量var3。接下来,又给var1和var2赋了整型值,所以它们现在是整型了,这时输出它们相加的值30。

  • 第14题:

    Whatisthemostlikelyproblemwiththisscript()VAR=1((VAR=$VAR+1))while[$VAR-It10]doecho$VARdone

    A.#!/bin/kshlineismissing

    B.VariablenameVARisnotproperlyinitialized

    C.Loopvariableisnotincrementedinsidetheloop

    D.Replacebracketswithbraces


    参考答案:C

  • 第15题:

    对于某金融机构而言,其计算VaR值有两个投资时期可以选择,分别是1天和10天,那么()。
    A. 1天的VaR值与10天的VaR值相等
    B. 1天的VaR值与10天的VaR值之间的关系不确定
    C. 1天的VaR值比10天的VaR值要小
    D. 1天的VaR值比10天的VaR值要大


    答案:B
    解析:
    答案为B。 VaR是指在市场正常波动下,某一金融资产或证券组合的最大可能损失。确切地说,VaR描述了在某一特定的时期内,在给定的置信度下,某一金融资产或其组合可能遭受的最大潜在损失值。通常情况下,银行等金融机构倾向于按日计算VaR;对于一般投资者而言,可按周或月计算VaR。国际清算银行规定的作为计算银行监管资本VaR持有期为10天。置信度水平通常选择95%~99%之间,而99%的置信度意味着预期100天里只有1天所发生的损失会超过相应的VaR值。因此,1天的VaR值与10天的VaR值之间无必然联系。

  • 第16题:

    以下代码的输出结果是() while(1) { $var++; $result=$var; if($result==17)break; $var--; } echo($result);

    • A、0
    • B、17
    • C、18
    • D、这是一个无限循环,没有输出

    正确答案:D

  • 第17题:

    设VAR1、VAR2为字变量,LAB为标号,分析下列指令的错误之处并加以改正。 (1) ADD VAR1,VAR2 (2) MOV AL,VAR2 (3) SUB AL,VAR1 (4) JMP LAB[SI] (5) JNZ VAR1 (6) JMP NEAR LAB


    正确答案: (1) ADD VAR1,VAR2
    错误,两个操作数不能都为存储单元,可改为 MOV BX,VAR2 ADD VAR1,BX
    (2) MOV AL,VAR2
    错误,数据类型不匹配,可改为MOV AX,VAR2
    (3) SUB AL,VAR1
    错误,数据类型不匹配,可改为SUB AX,VAR1
    (4) JMP LAB[SI]
    错误,寄存器相对寻址形式中不能用标号做位移量,可改为JMP VAR1[SI]
    (5) JNZ VAR1
    错误,条件跳转指令只能进行段内短跳转,所以后面只能跟短标号。可改为JNZ LAB
    (6) JMP NEAR LAB
    错误,缺少运算符PTR,可改为JMP NEAR PTR LAB

  • 第18题:

    What is the most likely problem with this script () VAR=1   ((VAR=$VAR+1))    while [ $VAR -It 10 ]    do   echo $VAR  done

    • A、#!/bin/ksh line is missing
    • B、Variable name VAR is not properly initialized
    • C、Loop variable is not incremented inside the loop
    • D、Replace brackets with braces

    正确答案:C

  • 第19题:

    What is the primary syslog file?()

    • A、/var/syslog-file
    • B、/var/syslog
    • C、/var/log/messages
    • D、/log-file

    正确答案:C

  • 第20题:

    单选题
    Given the following script, why does the output come out as an empty line instead of "dog"?()
    A

    The $VAR variable was not exported

    B

    The $VAR should have been set as VAR

    C

    dog needs double quotes around it when setting $VAR

    D

    The { } should not be around VAR in the echo command


    正确答案: B
    解析: 暂无解析

  • 第21题:

    单选题
    A System p administrator needs to run the annualreval.sh script, directing standard error to /var/log/reval.err, and appending standard out to /var/log/reval.log.  How can this be accomplished ()
    A

    annualreval.sh 2>&1 /var/log/reval.log 2> /var/log/reval.err

    B

    annualreval.sh 1>/var/log/reval.log 2>/var/log/reval.err

    C

    annualreval.sh 2>>&1 /var/log/reval.log /var/log/reval.err

    D

    annualreval.sh 1>>/var/log/reval.log 2>/var/log/reval.err


    正确答案: B
    解析: 暂无解析

  • 第22题:

    单选题
    An operator needs to change from the /usr/bin to the /var/spool directory. Which of the following commands will accomplish this?()
    A

    cd /var/spool

    B

    lcd /var/spool

    C

    cd /usr/bin /var/spool

    D

    lcd /usr/bin /var/spool


    正确答案: B
    解析: 暂无解析

  • 第23题:

    单选题
    What is the primary syslog file?()
    A

    /var/syslog-file

    B

    /var/syslog

    C

    /var/log/messages

    D

    /log-file


    正确答案: D
    解析: 暂无解析

  • 第24题:

    单选题
    Click the Exhibit button. Assuming the tag library in the exhibit is imported with the prefix stock,which custom tag invocation outputsthe contents of the variable exposed by the quote tag?()
    A

    <;stock:quote&ensp;symbol=";SUNW";&ensp;/>;${var}

    B

    ${var}.&ensp;<;stock:quote&ensp;symbol=";SUNW";&ensp;/>;

    C

    <;stock:quote&ensp;symbol=";SUNW";>;.&ensp;${var}.&ensp;<;/stock:quote>;

    D

    <;stock:quote&ensp;symbol=";SUNW";&ensp;var=";quote";&ensp;/>;${quote}


    正确答案: A
    解析: 暂无解析