题目内容

关于病毒特点,以下说法正确的是

A. 必须借助于电子显微镜才能看到
B. 只含一种核酸
C. 严格寄生
D. 以复制方式增殖

查看答案
更多问题

在bash中,使用循环for i in `seq 1 2 5`,每次循环时,i的值分别是多少()。

A. 1 2 3
B. 1 3 5
C. 1 3
D. 1

在bash中,使用循环for i in {0..3},每次循环时,i的值分别是多少()。

A. 0 2
B. 0 1 2
C. 0 1 2 3
D. 1 2 3

下列脚本的运行结果是():#!/bin/bashnumber=5until [ ${number} -gt 10 ]doif [ `expr ${number} % 3` -eq 0 ]thenecho $numberfilet number=number+1done

A. 6 9
B. 5 3
C. 5 10
D. 5 6 7 8 9 10

下列脚本的运行结果是():#!/bin/bashresult=0for i in 1 2 3 4dolet result=result+idoneecho $result

A. 10
B. 4
C. result+i
D. 报错

答案查题题库