单选题阅读下列程序  CHARACTER A*4,B*5,C*4  DATA A,B,C/’BIG’,’MIDDLE’,’SMALL’/  WRITE(*,20)A,B,C  20 FORMAT(1X,A2,A3,A4)  END  程序运行结果是()A BIGMIDDLEB *********C BIGMIDSMAD BIMIDSMAL

单选题
阅读下列程序  CHARACTER A*4,B*5,C*4  DATA A,B,C/’BIG’,’MIDDLE’,’SMALL’/  WRITE(*,20)A,B,C  20 FORMAT(1X,A2,A3,A4)  END  程序运行结果是()
A

 BIGMIDDLE

B

 *********

C

 BIGMIDSMA

D

 BIMIDSMAL


参考解析

解析: 暂无解析

相关考题:

在下面程序横线处填上适当内容,使程序输出为:55599。 include using namespace std; te 在下面程序横线处填上适当内容,使程序输出为:55599。include <iostream>using namespace std;template <class TYPE>class HisClass{TYPE data;public:HisClass(TYPE a, TYPE b, TYPE C) ;TYPE getData(){ return data;)};template<class TYPE>HisClass<TYPE>::HisClass(TYPE a,TYPE b,TYPE C){【 】;else主f(b>C)data=b;elsedata=c;}int main(){HisClass<int> x1(3,4,5),x2(5,3,4),x3(4,5,3),x4(7,8,9),x5(8,7,9);cout<<x1.getData()<<x2.getData()<<x3.getData()<<x4.getData()<<X5.getData();return 0;}

阅读分析本题程序段后回答问题:(1)程序实现了什么功能?(2)写出程序的输出结果 阅读分析本题程序段后回答问题:(1)程序实现了什么功能?(3分)(2)写出程序的输出结果;(4分)(3)写出算法的时间复杂度。(3分)#include stdio.h#define N 7typedef int datatype;void main(void){ int 1,j,t;datatype data[N]={1,2,3, 4,5,6, 7}; /*处理的数据*/i=0;j=N-1;while (ij){ t=data[i];data[i++ ]=data[j];data[j--]=t;}printf(”运行结果为: \n);for(i= =0;iN-1;i++)printf(%d; ,data[i]);}

Which statement describes the ROWID data type? () A. Binary data up to 4 gigabytes.B. Character data up to 4 gigabytes.C. Raw binary data of variable length up to 2 gigabytes.D. Binary data stored in an external file, up to 4 gigabytes.E. A hexadecimal string representing the unique address of a row in its table.

阅读下列程序,则运行结果为( )。A.3B.4C.5D.6

下列程序的输出结果是( )。A.a=4,b=4B.a=4,b=5C.a=5,b=4D.a=5,b=5

执行下列程序后,(CX)=( )。 DATA SEGMENT A DW 1, 2, 3, 4, 5 B DW 5 DATA SEGMENT CODE SEGMENT ASSUME CS: CODE, DS: DATA START: MOV AX, DATA MOV DS, AX LEA BX, A ADD BX, B MOV CX, [BX] MOV AH, 4CH INT 21H CODE ENDS END STARTA.400B.0C.10D.100

已知下列函数定义: fun(int%,int c,int n,int datA){int k; for(k=0;k<m*n;k++) {*b=data; b++;} } 则调用此函数的正确写法是(假设变量a的说明为int a[50])( )。A.fun(*a,4,5,1);B.fun(a,4,5,1);C.fun((int*)a,4,5,1);D.fun(a,4,5,1);

请仔细阅读以下程序并完成要求。 If((a>2&&b4|| d 请仔细阅读以下程序并完成要求。If((a>2&&b<3)&&(c>4|| d<5)){Flag=1;}Else{Flag=0;)请分别按照语句覆盖、判定覆盖、条件覆盖、判定/条件覆盖测试用例。

执行下列程序后,屏幕上显示的结果是( )。A.2 3 4 5B.2 3 4 3C.4 5 4 5SXB 执行下列程序后,屏幕上显示的结果是( )。A.2 3 4 5B.2 3 4 3C.4 5 4 5D.2 3 2 3

针对下面程序段,边界值问题可以定位在(62)1:Rem Crege a 10 element integer array2:Rem Initialize each element to -13:Dim data(10) As Integer4:Dim i As Integer5:For i=1 TO 106:data(i)=-17:Next i8:EndA.data(1)B.data(0)C.data(9)D.data(10)

若有以下程序: #include〈iostream〉 using namespace std; int main() { int data[4],i,j,temp; for (i=O; i4; i++) cindata[i]; for (i=1; i4; i++) { j = i-1; temp = data[i]; while (data [j ] tempj =0) { data[j+1] = data[j]; j--; } data[j+1] = temp; } for(i=O;i4;i++) cout〈〈data[i]〈〈" "; cout〈〈end1; return 0; }A.2843B.2348C.8243D.8432

阅读下列FORTRAN77程序: INTEGER A(4,5) DATA A/5*1,5*2,5*3,5*4/ M=0 DO 10 K=1,4 10 M=M+A(K,K+1) WRITE(*,*)M END 上述程序运行后,输出的M值为( )。A.8B.9C.10D.11

阅读下列FORTRAN77程序: INTEGER A(3,3) DATA A/1,2,3,4,5,6,7,8,9/ S=0.0 DO 10 I=1,3 J=MOD(I,3)+1 S=S+A(I,J) 10 CONTINUE WRITE(*,*)S END 上述程序运行后,输出的S值为( )。A.150B.120C.180D.240

Your production database is running in archivelog mode and you are using recovery manager (RMAN) with recovery catalog to perform the database backup at regular intervals. When you attempt to restart the database instance after a regular maintenance task on Sunday, the database fails to open displaying the message that the data file belonging to the users tablespace are corrupted. The steps to recover the damaged data files are follows: 1. Mount the database 2. Open the database 3. Recover the data file 4. Restore the data file 5. Make the data file offline 6. Make the data file online Which option identifies the correct sequence that you must use to recover the data files?()A、2, 4, 3B、1, 4, 3, 2C、2, 5, 4, 3, 6D、5, 2, 4, 3, 6E、1, 5, 4, 3, 6, 2

阅读下列程序段,注释指令中计算符LENGTA的取值.  DATA     SEGMENT  A        DW     10 DUP(?), 1234H,  20 DUP(?)  B        DB    ‘ABCDEF’,6 DUP(?)  C        DW     10, 20 DPU(?)  D        DW     5 DUP(3 DUP(2),5)  DATA     ENDS                ┆  ①       MOV     AX, LENGTH  A  ②       MOV     BX ,LENGTH  B  ③       MOV     CX ,LENGTH  C  ④       MOV    DX ,LENGTH  D

已知:DataSet data=new DataSet();则删除数据集data中person数据表的第5行数据的方法为()A、 data.Tables["person "].Rows[5].Delete();B、 data.Tables["person "].Rows.Delete(5);C、 data.Tables["person "].Rows[4].Delete();D、 data.Tables["person "].Rows[].Delete(4);

有程序:CHARACTER*4A,B*6A=‘ABCD’B=A∥‘EFGH’WRITE(*,*)BEND此程序执行后的输出结果为:()A、ABCDEFGHB、ABCDEFC、ABCDD、EFGH

In a design situation, there are multiple character sets that can properly encode your data. Which three should influence your choice of character set?()A、Syntax when writing queries involving JOINSB、Memory usage when working with the dataC、Character set mapping index hash sizeD、Disk usage when storing data

Which statement describes the ROWID data type? ()A、Binary data up to 4 gigabytes.B、Character data up to 4 gigabytes.C、Raw binary data of variable length up to 2 gigabytes.D、Binary data stored in an external file, up to 4 gigabytes.E、A hexadecimal string representing the unique address of a row in its table.

What does the Character Set Scanner command line utility do?()A、Reports only on any Unicode character conversions required.B、Performs character set conversions to the new specified character set.C、Scans on any character set conversion required, then converts the data.D、Checks for any character definitions that will fail conversion to the new character set.

单选题阅读下列FORTRAN程序:   CHARACTER*10 A, B*6   DO 10 I=1,10   A(I:I)=' '   10 COUNTINUE   A(1:5)='ABCDE'   B='FGHIJK'   A(4:9)=B   WRITE(*,100) A   100 FORMAT(1X,A)   END   程序运行结果是()A ABCDEFGHIJB ABCDEGHIJKC ABCFGHIJKD BCDEFGHIJK

单选题阅读下列程序  LOGICAL L1,L2,L3,L4,L5  DATA L1,L2,L3/3*.TRUE./  L4=.NOT.L1.AND..NOT.L2.AND.L3  L5=.NOT.L1.OR..NOT.L2.OR.L3  WRITE(*,*)L4,L5  END  程序运行结果是()A T TB T FC F FD F T

单选题已知:DataSet data=new DataSet();则删除数据集data中person数据表的第5行数据的方法为()A data.Tables[person ].Rows[5].Delete();B data.Tables[person ].Rows.Delete(5);C data.Tables[person ].Rows[4].Delete();D data.Tables[person ].Rows[].Delete(4);

单选题阅读下列程序 INTEGER M(3,3)   DATA  M/1,2,3,4,5,6,7,8,9/    WRITE(*,10)(M(3,J),J=1,3)     10 FORMAT(1X,3I2)     END  程序运行结果是()A2  5  8B3  6  9C4  5  6D7  8  9

单选题有如下程序:#includemain(){ inti,data; scanf(%d,data); for(i=0;i5;i++) {  if(idata)continue;  printf(%d,,i); } printf();}程序运行时,从键盘输入:3回车后,程序输出结果为(  )。A3,4,B1,2,3,4,C0,1,2,3,4,5,D0,1,2,

单选题有如下程序:#include main(){ int i,data; scanf(%d,data); for(i=0;i5;i++) {  if(idata) break;  printf(%d,,i); }}程序运行时,从键盘输入:3回车后,程序输出结果为(  )。A3,4,B0,1,C3,4,5,D0,1,2,3,

单选题下列程序的运行结果是(  )。public class ArrayTest{public static void main(String[] args){ int data[][]={{1,2,3,4,5},{11,22,33,44,55},{111,222,333,444,555}}; for(int i=0;i if(i%2==0)System.out.print(data[i][4]);}}}A5555B555C555D55