【判断题】
遵义会议集中解决了党的政治路线和组织问题,并选举毛泽东为中共中央总书记。
A. 对
B. 错
查看试卷,进入试卷练习
微信扫一扫,开始刷题

答案
B
解析
暂无解析
相关试题
【单选题】
A vSphere content library administrator is attempting to unpublish the content library, but the option is grayed out as shown in the Exhibit. Which statement identifies the reason for not being able to unpublish? ___
A. The content library is optimized for syncing over HTTP.
B. A synchronization operation is in progress with this content library.
C. There are active subscriptions on this content library.
D. Underlying storage for this content library is not accessible.
【单选题】
Assuming a mirrored (RAID-1) object configuration, how many hosts must contribute storage in a non-stretched VMware vSAN cluster to satisfy the “Number of failures to tolerate” policy option?“n” is the desired “Number of failures to tolerate” value for all options.___
A. 2n+2
B. 2n
C. 2n+1
D. 3n
【单选题】
An administrator must change the statistics level for short-term performance monitoring and wants to collect metrics for all counters, excluding minimum and maximum rollup values. What would be the statistics level?___
A. Level 3
B. Level 1
C. Level 2
D. Level 4
【单选题】
In a vSphere environment, two resource pools are created as shown in the Exhibit. Each VM is configured with 1 GB of memory. When the administrator tried to power on VM3, the operation failed. What action in the resource pool settings will allow VM3 to power on successfully?___
A. Deselect Expandable Memory Reservation
B. Increase Memory Reservation
C. Deselect Expandable CPU Reservation
D. Increase the CPU Reservation
【单选题】
Which network is used by vSphere HA when VMware vSAN is enabled?___
A. Management network
B. vSphere Replication network
C. vMotion network
D. VSAN network
【单选题】
Which statement is correct when migrating from a Windows vCenter Server to the vCenter Server Appliance 6.5?___
A. Migration deployments do not migrate local OS users from the source vCenter Server.
B. Migration deployments support DHCP on the source vCenter Server.
C. Migration deployments allow the source vCenter Server to remain powered on afterwards.
D. Migration deployments support custom ports for all services on the source vCenter Server.
【单选题】
How can failback of a recovered virtual machine in vSphere Replication be performed?___
A. No action required, because failback is automatically performed to the source site.
B. Configure a new replication in the reverse direction at the target site.
C. Disable or Stop the virtual machine replication on the source site.
D. Power off and unregister the virtual machine on the target site.
【单选题】
After upgrading the vSphere infrastructure and VMware Tools to version 6.5, the “Upgrade VM Compatibility” option is grayed out in the vSphere Web Client. (See Exhibit.) What must the administrator do to enable the VM compatibility upgrade?___
A. VMware Tools should be upgraded last.
B. Restart the ESXi server.
C. Uninstall VMware Tools.
D. Power off the virtual machine.
【单选题】
What availability mode does vCenter HA provide?___
A. Active-Passive
B. Active-Standby
C. Active-Active
D. Load-balanced
【单选题】
In which scenario will vSphere DRS balance resources when set to Fully Automated?___
A. Hosts with only shared storage
B. Hosts are part of a vSphere HA cluster
C. Power Management is set to Balanced on hosts
D. Hosts with shared or non-shared storage
【单选题】
What VMware technology can be used to move physical servers to the vSphere infrastructure?___
A. VMware vMotion
B. VMware Converter
C. VMware vCenter Server
D. OVF transport
推荐试题
【单选题】
带头结点的单链表first为空的判定条件是:___
A. first == NULL
B. first->next == NULL
C. first->next == first
D. first != NULL
【单选题】
在一个单链表中,若q所指结点是p所指结点的前驱结点,若在q与p之间插入一个s所指的结点,则执行___ 。
A. s→next=p→next; p→next=s
B. p→next=s; s→next=q
C. p→next=s→next; s→next=p
D. q→next=s; s→next=p
【单选题】
下面关于线性表的叙述错误的是___。
A. 线性表采用顺序存储必须占用一片连续的存储空间
B. 线性表采用链式存储不必占用一片连续的存储空间
C. 线性表采用链式存储便于插入和删除操作的实现
D. 线性表采用顺序存储便于插入和删除操作的实现
【单选题】
在一个长度为n 的顺序表中,向第i个元素(1≤i≤n+1)之前插入一个新元素时,需要向后移动________个元素。___
A. n-i
B. n-i+1
C. n-i-1
D. i
【单选题】
顺序表和链表相比存储密度较大,这是因为 ___。
A. 顺序表的存储空间是预先分配的
B. 顺序表不需要增加指针来表示元素之间的逻辑关系
C. 链表中所有节点的地址是不连续的
D. 顺序表中所有元素的存储地址是连续的
【单选题】
在一个单链表中,若删除p所指结点的后续结点,则执行___。
A. p—>next= p—>next—>next;
B. p= p—>next; p—>next= p—>next—>next;
C. p—>next= p—>next
D. p= p—>next—>next;
【单选题】
在一个单链表中,若p所指结点不是最后结点,在p之后插入s所指结点,则执行___。
A. s—>next=p; p—>next=s
B. s—>next=p—>next; p—>next=s
C. s—>next=p—>next; p=s
D. p—>next=s; s—>next=p
【单选题】
判定一个循环队列Q(最多有MAXQSIZE个元素空间)为空的条件为___ 。
A. Q.front==Q.rear
B. Q.front!=Q.rear
C. Q.front==(Q.rear+1)%MAXQSIZE
D. Q.front!=(Q.rear+1)%MAXQSIZE
【单选题】
判定一个循环队列Q(最多有MAXQSIZE个元素空间)为满的条件为___。
A. Q->front==Q->rear
B. Q->front!=Q->rear
C. Q->front==(Q->rear+1)%MAXQSIZE
D. Q->front!=(Q->rear+1)%MAXQSIZE
【单选题】
在循环队列中用数组A[0..m-1] 存放队列元素,其队头和队尾指针分别为front和rear,则当前队列中的元素个数是___。
A. ( front - rear + 1) % m
B. ( rear - front + 1) % m
C. ( front - rear + m) % m
D. ( rear - front + m) % m
【单选题】
若用一个大小为6的数组来实现循环队列,且当前rear和front的值分别为0和3。当从队列中删除一个元素,再加入两个元素后,rear和front的值分别为___?
A. 1和5
B. 2和4
C. 4和2
D. 5和1
【单选题】
数组M[1..4,1..5]的每个元素占5个单元,按行优先次序存储在起始地址为1000的连续的内存单元中,则最后一个元素M[4,5] 的地址为 _________
A. 1005
B. 1015
C. 1100
D. 1095
【单选题】
三维数组A[4][5][6]按行优先存储方法存储在内存中,若每个元素占2个存储单元,且数组中第一个元素的存储地址为120,则元素A[3][4][5]的存储地址为___
A. 356
B. 358
C. 360
D. 362
【单选题】
对某二叉树进行前序遍历的结果为ABDEFC,中序遍历的结果为DBFEAC,则后序周游的结果为___
A. DBFEAC
B. DFEBCA
C. BDFECA
D. BDEFAC