data2=data1;
data2=(2,6);
data2.rea1=data1.rea1;
data2.rea1=data1.unrea1;
第1题:
下面结构体的定义语句中,错误的是( )。
A.struct ord{int x;int Y;int Z;};struet ord a;
B.struct ord{int x;int y;int Z;}struct ord a;
C.struct ord{int X;int Y;int Z;}a;
D.struct{int X;int y;int Z;}a;
第2题:
A.The/datafilesystemdoesnotexist.
B.Thismessageindicatesthatthe/data2/snapdirectorydoesnotexist.
C.ThenameoftheBackingStoreisincorrect,itshouldbe/dev/fssnap/0
D.Thismessageindicatesthatyoucannothavethebackingstorefileonthesamefilesystemasthefilesystembeingsnapped.
第3题:
执行下列程序段后,DATA1单元的值为( ) DATA1 DB 10H,20H DATA2 DB 30H,40H MOV AX,WORD PTR DATA1 CMP AX,WORD PTR DATA2 JA L MOV BX,WORD PTR DATA2 MOV WORD PTR DATA2,AX MOV WORD PTR DATA1,BX L:HLT
A.40H
B.30H
C.20H
D.10H
第4题:
设有定义:

则以下赋值语句中错误的是( )。
A.data2=(2,6);
B.data2=datal;
C.data;real=datal.real;
D.data2.real=datal.unreal;
第5题:
设有定义:
struct complex
{ int real,unreal;} datal={1,8},data2;
则以下赋值语句中错误的是
A.Data2=Data1;
B.Data2=(2,6);
C.Data2.Rea1=Data1.Real;
D.Data2.Real=Datal.unRea
第6题:
指出以下数据定义伪指令所分配的字节数(80386系统)。 (1)DATA1 DF 12,34,56 (2)DATA2 DF DATA2 (3)DATA3 DQ 0,10 DUP(?) (4)DATA4 DT 0,1,2
第7题:
指出以下数据定义伪指令所分配的字节数(8086系统)。 (1)DATA1 DB 10,?,‘A’ (2)DATA2 DW 10 DUP(2,3 DUP(?),1) (3)DATA3 DB ‘HELLO,WORLD!’,‘$’ (4)DATA4 DW DATA4
第8题:
试编写程序,将内部RAM单元中DATA1开始的20个单字节数依次与DATA2单元为起始地址的20个单字节数据进行交换。
第9题:
You created a snapshot of the /data2 filesystem as follows: # fssnap -F ufs -o bs=/data2/snap /data2 But, the system responds with the following error: snapshot error: Invalid backing file path What is the problem? ()
第10题:
A
B
C
D
第11题:
The /data filesystem does not exist.
This message indicates that the /data2/snap directory does not exist.
The name of the Backing Store is incorrect, it should be /dev/fssnap/0
This message indicates that you cannot have the backing store file on the same filesystem as the filesystem being snapped.
第12题:
比较字符串是否完全相同不能用==
equals()和equalsIgnoreCase()的作用完全一致
equalsIgnoreCase()表示如果两个字符串完全相同则返回true,否则返回false
Stringdate1,date2;则比较二者是否相同的语句是data1=equals(data2);
第13题:
设有定义: struet complex {int real,unreal;)datal={1,8},data2; 则以下赋值语句中错误的是( )。
A.data2=datal;
B.data2={2,6};
C.data2.real=datal.real;
D.data2.real=datal.unreal;
第14题:
设有定义:
则以下赋值语句中错误的是( )。
A.data2=datal;
B.data2=(2,6.;
C.
D.
第15题:
设有定义: Struct complex {int real,unreal;}data1={1,8},data2; 则以下赋值语句中错误的是( )。
A.data2={data1.rea1,data1.unrea1};
B.data2=(2,6);
C.data2.rea1=data1->rea1;
D.data2->rea1=data1.unrea1;
第16题:
设有定义:
struct complex
{int real,unreal;}datal={1,8},data2;
则以下赋值语句中错误的是( )。
A.data2=(2,6);
B.data2=datal;
C.data2.real=datal.real;
D.data2.real:datal.unreal;
第17题:
第18题:
关于字符串比较,下列叙述哪个是正确的()
第19题:
试编写一程序,将外部数据区DATA1单元开始的50个单节数逐一依次移动到内部RAM中DATA2单元开始的数据区中。
第20题:
下面能够正确打开的一组语句是:()。
第21题:
Open“Data1”forInputAs#1Open“Data1”forRandomAs#2
Open“Data1”forOutputAs#1Open“Data2”forInputAs#1
Open“Data1”forOutputAs#1Open“Data2”forInputAs#2
Open“Data1”forInputAs#1Open“Data1”forInputAs#2
第22题:
s[0]=m[1];
s=m;
s.n=m.n;
s[2].x=m[2].x;
第23题: