下列程序执行后,DX寄存器的内容是( )。 CODE SEGMENT ASSUME CS:CODE START: MOV CL,3 MOV DX,0C6H ROLDX,2 ROR DX,CL CODE ENDS END STARTA.35B.63HC.53HD.138H

下列程序执行后,DX寄存器的内容是( )。 CODE SEGMENT ASSUME CS:CODE START: MOV CL,3 MOV DX,0C6H ROLDX,2 ROR DX,CL CODE ENDS END START

A.35

B.63H

C.53H

D.138H


相关考题:

有汇编程序段如下 CODES SEGMENT ASSUME CS:CODES START: MOV CX, 10 XOR AX, AX MOV BX, 1 AGAIN: ADD AX, BX INC BX LOOP AGAIN CODES ENDS END START 程序执行后,AX和BX的内容分别是 bx=cx+1 Ax=0+bx-1A.10,10B.55,10C.55,11D.60,10

试分析下列程序段执行完后,X单元的内容是【 】。DATA SEGMENTX DW 0Y DW 0Z DW 100,200,300DATA ENDSCODE SEGMENTASSUME CS:CODE DS:DATASTART: MOV AX,DATAMOV DS,AXLEA BX,ZMOV AX,[BX]MOV Y,AXMOV AX,2[BX]MOV AX,YMOV X,AXMOV AH,4CHINT 21HCODE ENDSEND START

完成下面的程序段,使程序显示中的字符串。DATA SEGMENTBUE DB ‘HOW DO YOU DO?’,ODH,OAH,’$‘┆DATA ENDSCODE SEGMENT┆MOV AX,DATAMOV DS,AX┆MOV DX【 】MOV AH, 9INT 21H┆CODE ENDS

You need to write a code segment that transfers the contents of a byte array named dataToSendby using a NetworkStream object named netStream.You need to use a cache of size 8,192 bytes.Which code segment should you use?()A.B.C.D.

You need to write a code segment that transfers the first 80 bytes from a stream variable named stream1 into a new byte array named byteArray.You also need to ensure that the code segment assigns the number of bytes that are transferred to an integer variable named bytesTransferred.Which code segment should you use?()A.bytesTransferred=stream1.Read(byteArray,0,80);B.C.D.

阅读下述程序,指出宏指令ABC的功能是______。1 ABC MACRO X1,X2,X32 LOCAL CONT3 PUSH AX4 MOV AX, X15 SUB AX, X26 CMP AX, 07 JGE CONT8 NEG AX9 CONT: MOV X3, AX10 POP AX11 ENDM12 DATA SEGMENT13 X DW 3214 Y DW 9815 Z DW ?16 DATA ENDS17 CODE SEGMENT18 ASSUME CS:CODE,DS:DTAT19 BEGIN: MOV AX, DATA20 MOV DS,AX21 ABC X,Y,Z22 MOV AH, 4CH23 INT 21H24 CODE ENDS25 END BEGIN

下列程序段执行完后,A单元的内容是【 】H。DATA SEGMENTA DW 0B DW 0C DW 230,20,54DATA ENDSCODE SEGMENT……MOV BX,OFFSET CMOV AX,[BX]ADD B,AXMOV AX,2[BX]SAL AX,1ADD AX,BMOV A,AX……CODE ENDS

下列程序执行后,DX寄存器的内容是( )。 CODE SEGMENT ASSUMECS:CODE START: MOV CL,3 MOV DX,0C6H ROL DX,2 ROR DX,CL CODE ENDS END STARTA.35B.63HC.53HD.138H

下面的程序用来从键盘重复接收一字符送BUFF开始的单元,直到接收到行结束标志ODH。在程序中填空,保证其正确运行。1 DATA SEGMENT2 BUFF DW 128 DUP(0)3 DATA ENDS4 CODE SGEMENT5 ASSUME CS:CODE,DS:DATA6 BEGIN: MOV AX, DATA7 MOV DS, AX8 LEA SI, BUFF9 GCH: MOV AH, 01H10 INT 21H11 MOV [SI], AL12 INC SI13 __________14 JNE GCH15 MOV AH, 4CH16 INT 21H17 CODE ENDS18 END BEGIN

执行下列程序后,(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

假设某汇编语言源程序的代码段的段名是CSEG,启动地址为START,下面可用来预置CS寄存器的语句是( )。A.ASSUME CS:CSEGB.END STARTC.MOV CS,CSEGD.MOV AX,CSEG 和MOV CS,AX

下列程序执行后,DX寄存器的内容是( ) CODE SEGMENT ASSUME CS:CODE START: MOV CL,3 MOV DX,0C6H ROL DX,2 ROR DX,CL CODE ENDS END STARTA.35B.63HC.53HD.138H

下述程序的功能是求变量X和变量Y的和送AX寄存器,请填空。DATA SEGMENTX DW 5Y DW 6DATA ENDSCODE SEGMENTASSUME CS:CODE,DS:DATABEGIN: MOV AX, DATAMOV DS, AXMOV AX, XADD AX, YMOV AH, 4CHINT 21H_________END BEGIN

有汇编程序段如下 CODES SEGMENT ASSUME CS:CODES START: MOV CX, 30 XOR AX, AX MOV BX, 1 AGAIN: ADD AX, BX INC BX LOOP AGAIN CODES ENDS END START 程序执行后,AX和BX的内容分别是A.465,31B.465,30C.434,31D.434,30

哪个对车间代码(workshop code)的描述是正确的?()A、车间代码(workshop code)可以通过仪表读出B、车间代码(workshop code)产生于维修车间C、车间代码(workshop code)可以帮助客户提取他/她的车辆在非营业时间D、车间代码(workshop code)可以帮助创建工单E、车间代码(workshop code)可以通过Star Diagnosis读出

下面语句中是堆桔段定义的语句是()。A、CODE SEGMENTB、DATA SEGMENTC、STACK SEGMENT ‘STACK’D、MAIN PROC FAR

下面是将内存一字节数据高四位和低四位互换并放回原位置的程序,其中有7个语句中有错误,请找出错误的地方并改正。 第1行 DATA SEGMENT 第2行 DD1 DB 23H 第3行 DATA ENDM 第4行 CODE SEGMENT 第5行 ASSUME CS:CODE,DS:DATA 第6行 START MOV AX,DATA 第7行 MOV DS,AX 第8行 LEA SI,OFFSET DD1;取变量DD1的偏移地址 第9行 MOV AL,[SI] 第10行 MOV DL,4;设置移位次数 第11行 RCR AL,CL;循环右移4次 第12行 MOV [SI],AL 第13行 MOV AH,4CH 第14行 INT 21H 第15行 CODE ENDP;代码段结束 第16行 END BEGIN

阅读程序段,回答问题: CWD XOR AX,DX SUB AX,DX 该程序片段中,AX寄存器的内容是一个16位有符号数。若执行前(AX)=0FEDCH,则执行后(AX)等于多少?

若寄存器AX、BX、CX、DX的内容分别为14,15,16,17,依次执行PUSH AX,PUSH BX,POP CX,POP DX指令后,寄存器DX的内容为()A、14B、15C、16D、17

可以用几种方法得到DX ERROR CODE的解释。

80486CPU响应中断时,自动压入堆栈的信息是()。A、AX,BX,CX,DX的内容B、AX,CX的内容C、CS,IP,SP的内容D、CS,IP,标志寄存器的内容

You create a Web page named TestPage.aspx and a user control named TestUserControl.ascx. TestPage.aspx uses TestUserControl.ascx as shown in the following line of code. On TestUserControl.ascx, you need to add a read-only member named CityName to return the value "New York". You also must add code to TestPage.aspx to read this value. Which two actions should you perform?()A、Add the following line of code to the TestUserControl.ascx.cs code-behind file. public string CityName { get { return "New York"; } } B、Add the following line of code to the TestUserControl.ascx.cs code-behind file. protected readonly string CityName = "New York"; C、Add the following code segment to the TestPage.aspx.cs code-behind file. protected void Page_Load(object sender, EventArgs e) { string s = testControl.CityName; } D、Add the following code segment to the TestPage.aspx.cs code-behind file. protected void Page_Load(object sender, EventArgs e) { string s = testControl.Attributes["CityName"]; }

单选题You are developing an application that dynamically loads assemblies from an application directory. You need to write a code segment that loads an assembly named Company1.dll into the current application domain. Which code segment should you use?()A AB BC CD D

单选题You create a method that runs by using the credentials of the end user. You need to use  Microsoft Windows groups to authorize the user. You must add a code segment that identifies whether a user is in the local group named Clerk.Which code segment should you use?()A AB BC CD D

单选题You are creating an ASP.NET Web site. The site has a master page named Custom.master. The code-behind file for Custom.master contains the following code segment.Partial Public Class Custom  Inherits System.Web.UI.MasterPagePublic Property Region As String    Protected Sub Page_Load(ByVal sender As Object,ByVal e As System.EventArgs) Handles Me.LoadEnd SubEnd Class You create a new ASP.NET page and specify Custom.master as its master page.You add a Label control named lblRegion to the new page.  You need to display the value of the master pages Region property in lblRegion.What should you do? ()AAdd the following code segment to the Page_Load method of the page code-behind file. Dim custom As Custom = Me.Parent  lblRegion.Text = custom.RegionBAdd the following code segment to the Page_Load method of the page code-behind file. Dim custom As Custom = Me.Master  lblRegion.Text = custom.RegionCAdd the following code segment to the Page_Load method of the Custom.Master.vb code-behind file. Dim lblRegion As Label = Page.FindControl(lblRegion) lblRegion.Text = Me.RegionDAdd the following code segment to the Page_Load method of the Custom.Master.vb code-behind file. Dim lblRegion As Label = Master.FindControl(lblRegion) lblRegion.Text = Me.Region

单选题You are developing an application that runs by using the credentials of the end user. Only users who are members of the Administrator group get permission to run the application. You write the following security code to protect sensitive data within the application.bool isAdmin=false;  WindowsBuiltInRole role=WindowsBuiltInRole.Administrator; ......  if(!isAdmin)          throw new Exception("User not permitted");   You need to add a code segment to this security code to ensure that the application throws an exception if a user is not a member of the Administrator group. Which code segment should you use?()A AB BC CD D

单选题You are creating a Windows Forms application by using the .NET Framework 3.5.You plan to develop a new control for the application. You need to ensure that the control extends the DataGridView control by allowing the cells to contain multicolored text. What should you do?()AOverride the OnPaint method.BWrite a code segment to handle the CellPainting event.CWrite a code segment to handle the CellParsing event.DWrite a code segment to handle the RowPostPaint event.