An operator is editing a file using vi. Which of the following subcommand sequences will copy the current line plus the next 2 lines to the end of the file?()
A: yy E 3p
B: 3yy G p
C: 3yy :e 5pp
D: yy :g 3
A: yy E 3p
B: 3yy G p
C: 3yy :e 5pp
D: yy :g 3
举一反三
- 在vi中删除3行文本的指令是() A: dd B: 3dd C: yy D: 3yy
- 在南瓜中,果实白色是由显性基因Y决定,黄色由隐性基因y决定。如亲本表型均为白果,且杂交后代3/4白果:1/4黄果,则亲本基因型为( )。 A: YY×YY B: YY×Yy C: Yy×Yy D: Yy×yy
- yy A: hh B: pp C: ii D: yy
- 属双速异步电动机接线方法的是()。 A: YY/YY B: YY/△ C: YY/Y D: △△/Y
- 有如下类定义:#include<iostream.h>class XX{ int xx;public: XX(){ xx=0; cout<<'A';} XX(int n){ xx=n; cout<<'B';}};class YY:public XX{ int yy;public: YY(){ yy=0; cout<<yy;} YY(int n):XX(n+1){yy=n;cout<<yy;} YY(int m,int n):XX(m){yy=n; cout<<yy;}};下列选项中,输出结果为A0的语句是 。 A: YY y1(0,0); B: YY y2(1); C: YY y3(0); D: YY y4;