mcq 队列_MCQ | 8086微处理器中的寻址模式

mcq 队列

Question 1:

问题1:

You are given the following instruction:
ADD AX , [1024]
You are provided the following data:
DS = 3423H ; SS = 1234H ; CS= 4567H
Find the effective address location for the given instruction.

您得到以下指示:
添加AX,[1024]
提供以下数据:
DS = 3423H; SS = 1234H; CS = 4567H
查找给定指令的有效地址位置。

  1. 35254 H

    35254高

  2. 13364 H

    13364高

  3. 46694 H

    46694高

  4. 4447 H

    4447高

Answer: a. 35254 H

答: 35254高

Explanation:

说明:

The address is directly mentioned in the instruction. So, The Data Segment Register will be used as the segment for the given offset address value. Hence the effective address is:

该地址在指令中直接提及。 因此,数据段寄存器将用作给定偏移地址值的段。 因此,有效地址为:

    =   3423H X 10H + 1024H
= 	34230H + 1024H
= 	35254H



Question 2:

问题2:

Which segment register is being used in the given instruction?
MOV CX , SS: [BX]

给定指令中使用哪个段寄存器?
MOV CX,SS:[BX]

  1. Extra Segment Register (ES)

    额外段寄存器(ES)

  2. Code Segment Register (CS)

    代码段寄存器(CS)

  3. Stack Segment Register (SS)

    堆栈段寄存器(SS)

  4. None of the Above

    以上都不是

Answer: c. Stack Segment Register (SS)

答:c。 堆栈段寄存器(SS)

Explanation:

说明:

Here, the concept of Segment Override Prefix is being used. Although the default segment for the offset BX is DS, as the SS is mentioned in the instruction, it is overriding the default segment. Hence, the Stack Segment (SS) register is being used here.

在此,使用段覆盖前缀的概念。 尽管偏移量BX的默认段是DS,但正如指令中提到的SS一样,它覆盖了默认段。 因此,此处使用了堆栈段(SS)寄存器。



Question 3:

问题3:

You are given the following instruction:
MOV AX , 02H [BX] [SI]
and are provided the following data:
DS = 3290H ; SS = 1004H ; ES= 4237H ; BX= 1100H ; SI= 1101H
Find the effective address location for the given instruction.

您得到以下指示:
MOV AX,02H [BX] [SI]
并提供以下数据:
DS = 3290H; SS = 1004H; ES = 4237H; BX = 1100H; SI = 1101H
查找给定指令的有效地址位置。

  1. 35254 H

    35254高

  2. A234F H

    A234F高

  3. 34B03 H

    34B03高

  4. 4447E H

    4447E高

Answer: c. 34B03 H

答:c。 34B03高

Explanation:

说明:

The address is mentioned in the instruction contains register BX and SI with 8-bit displacement. So, The Data Segment Register (DS) will be used as the segment for the given offset address value. Hence the effective address is:

指令中提到的地址包含具有8位位移的寄存器BX和SI。 因此,数据段寄存器(DS)将用作给定偏移地址值的段。 因此,有效地址为:

    Effective Address	=	3290H X 10H + ( 02H + 1100H + 1101H )
= 	329000H + 2203H
= 	34B03H



Question 4:

问题4:

Which segment register is being used in the given instruction?
MOV CX , [IP]

给定指令中使用哪个段寄存器?
MOV CX,[IP]

  1. Extra Segment Register (ES)

    额外段寄存器(ES)

  2. Code Segment Register (CS)

    代码段寄存器(CS)

  3. Stack Segment Register (SS)

    堆栈段寄存器(SS)

  4. None of the Above

    以上都不是

Answer: c. Stack Segment Register (SS)

答:c。 堆栈段寄存器(SS)

Explanation:

说明:

Here, the default segment for the offset IP is SS. Hence, the Stack Segment (SS) register is being used here.

此处,偏移IP的默认段为SS。 因此,此处使用了堆栈段(SS)寄存器。



Question 5:

问题5:

Which addressing mode is being used in the given instruction?
MOV AX, [1234H]

给定指令中使用哪种寻址模式?
MOV AX,[1234H]

  1. Base Addressing Mode

    基本寻址模式

  2. Immediate Addressing Mode

    立即寻址模式

  3. Register Addressing Mode

    寄存器寻址模式

  4. Direct Addressing Mode

    直接寻址模式

Answer: d. Direct Addressing Mode

答案:d。 直接寻址模式

Explanation:

说明:

The given instruction is using the direct addressing mode as the address is directly mentioned in the instruction rather than being stored in any register.

给定指令使用直接寻址模式,因为该地址在指令中直接提及,而不是存储在任何寄存器中。

翻译自: https://www.includehelp.com/embedded-system/mcq-addressing-modes-in-8086.aspx

mcq 队列

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544557.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

聊聊redis分布式锁的8大坑

前言在分布式系统中,由于redis分布式锁相对于更简单和高效,成为了分布式锁的首先,被我们用到了很多实际业务场景当中。但不是说用了redis分布式锁,就可以高枕无忧了,如果没有用好或者用对,也会引来一些意想…

python 唯一元素_检查所有元素在Python中是否唯一

python 唯一元素Here, we are implementing a python program to check whether all elements of a list are unique or not? 在这里,我们正在实现一个python程序来检查列表的所有元素是否唯一? Its very simple to check, by following two steps 按…

MyBatis 批量插入数据的 3 种方法!

作者 | 王磊来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone批量插入功能是我们日常工作中比较常见的业务功能之一,之前我也写过一篇关于《MyBatis Plus 批量数据插入功能,yy…

MongoDB: The Definitive Guide

第一章 简介 MongoDB是面向文档的数据库,不是关系型数据库。内置对MapReduce的支持,以及对地理空间索引的支持。 丰富的数据模型容易扩展,它所采用的面向文档的数据模型可以使其在多台服务器之间分割数据丰富的功能,索引、存储Jav…

Python联网下载文件

声明 Python版本2.7.3所需Py文件——urllib22.7.3版本的Python Shell即可直接执行,但需要联网若程序执行成功,则会下载以下网址的txt文本并打印在shell中 http://helloworldbook2.com/data/message.txt 本代码来源于《父与子的编程之旅——与小卡特一起…

java 生产者消费者代码_Java生产者和消费者代码

java 生产者消费者代码This also helps us to understand the concept of synchronised multi-threading in java, the basic work of our code is that the producer will produce a thread and load it into the memory and after producing the producer thread we would be…

如何给SpringBoot配置轻松加密?

在实践中,项目的某些配置信息是需要进行加密处理的,以减少敏感信息泄露的风险。比如,在使用Druid时,就可以基于它提供的公私钥加密方式对数据库的密码进行加密。但更多时候,比如Redis密码、MQ密码等敏感信息&#xff0…

secureFX上传文件的时候报错,secureFX崩溃

SecureFX experienced a fatal error and must close.A crash dump file has been......打开注册表,HKEY_CURRENT_MACHINE->SOFTWARE->Vandyke中的secureCRT和secureFX中的license是secureCRT、secureFX的注册信息,不能删除,删除后需要…

C语言将循环小数/有限小数转换为分数

文章目录数学基础编程思路代码数学基础 早在小学的时候我就对循环小数非常感兴趣,加上初中和高中对循环小数可以说有一定基础研究,因此想到写一个将循环下小数转换为分数的程序,非常有意思,并且对初学者来说,它的输入…

c#中将整数转化为字符串_在C#中将字符串转换为字节数组

c#中将整数转化为字符串Prerequisite: How to declare and use byte[] in C#? 先决条件: 如何在C#中声明和使用byte []? C#中的字符串到字节数组的转换 (String to Byte Array Conversion in C#) In C#, it is possible that a …

升级了 Windows 11 正式版,有坑吗?

作者 | 王磊来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)今天磊哥去公司上班,惊喜的发现 Windows 提示更新了,并且是 Windows 11 正式版,这太让人…

python序列切片

Python中的序列包括字符串、列表、元组,下面以字符串为例进行演示,列表和元组效果同字符串>>> a0123456789 >>> a[0:2] 01 >>> a[3:5] 34 >>> a[-2] 8 >>> a[0:] 0123456789 >>> a[2:] 23456789 …

C语言结构体的应用——万年历

文章目录万年历简述代码万年历简述 万年历——就是输入一个日期可以查询是星期几,这个功能看起来很普通,但是如果用程序时间的话,还是药费一番周折: 我们需要保存一个固定的日期,存放它是星期几,输入一个自定义的日期…

@Value竟然能玩出这么多花样

前言对于从事java开发工作的小伙伴来说,spring框架肯定再熟悉不过了。spring给开发者提供了非常丰富的api,满足我们日常的工作需求。如果想要创建bean实例,可以使用Controller、Service、Repository、Component等注解。如果想要依赖注入某个对…

ruby 生成哈希值_如何检查Ruby中是否存在哈希键?

ruby 生成哈希值We know that Hashes are the instances which are the combination of keys and their values. A particular key in hash may contain more than one value as well. In this article, we will see how we can check or test the presence of a particular ke…

C语言实现线性动态(单向)链表【详细步骤】

文章目录什么是链表为什么不用结构体数组链表的操作创建表删除元素插入元素代码及运行结果什么是链表 链表是数据结构里面的一种,线性链表是链表的一种,线性链表的延伸有双向链表和环形链表。在编程语言中优化数据结构可以在处理大数据时大大降低程序的…

移动前端经验小结

1. 移动端头部标签 head meta <!DOCTYPE html> <!-- 使用 HTML5 doctype&#xff0c;不区分大小写 --> <html lang"zh-cmn-Hans"> <!-- 更加标准的 lang 属性写法 http://zhi.hu/XyIa --> <head><!-- 声明文档使用的字符编码 -->…

再见收费的Navicat!操作所有数据库靠它就够了!

为了快速管理数据库&#xff0c;我们一般都会选择一款顺手的数据库管理工具。Navicat、DataGrip虽然很好用&#xff0c;但都是收费的。今天给大家推荐一款免费、功能强大的数据库管理工具DBeaver&#xff0c;希望对大家有所帮助&#xff01;DBeaver简介 DBeaver是一款开源的数据…

查找两个字符串中相同字符串_使两个字符串相同的最低成本

查找两个字符串中相同字符串Problem statement: 问题陈述&#xff1a; Given two strings string1 and string2 find the minimum cost required to make the given two strings identical. We can delete characters from both the strings. The cost of deleting a characte…

Matlab对指定参数的曲线进行非线性拟合

Matlab拟合曲线的方式 Matlab拟合曲线的方式有很多种&#xff0c;有三次样条插值、线性插值、多项式拟合等等。多项式拟合由于函数由f(x)anxnan−1xn−1...a1xa0f(x)a_nx^na_{n-1}x^{n-1}...a_1xa_0f(x)an​xnan−1​xn−1...a1​xa0​组成&#xff0c;若采用最小二乘法拟合&a…