【填空题】
27.登上长春运用库___道检修平台前,必须确认___已挂,进入检修平台执行“一人一卡”制度。
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
1-6|接地杆
解析
暂无解析
相关试题
【填空题】
28. 现场防护员应熟知常用___、___、___和___,熟知有关作业防护办法、程序和要求。
【填空题】
29. 在___、___线路上或有可能侵入铁路营业线设备___的施工和作业,需设置防护员。
【填空题】
30.区间行走时,应在路肩或路旁走行;在双线区间,应___列车方向走行;必须走道心时,应设置___。
【填空题】
31.劳动安全“四不伤害”内容___、___、___、___。
【单选题】
下列字符列中,不是用来表达转义字符是___。
A. \\
B. \'
C. 074
D. \0
【单选题】
下列字符列中,能作为单个标识符是___
A. ? a
B. a=2
C. a.3
D. a_3
【单选题】
一个C语言程序是由___组成。
A. 主程序和子程序
B. 函数
C. ) 若干过程
D. ) 多个子程序
【单选题】
下列字符列中,可以作为“字符串常量”的是___。
A. ABC
B. “ABC“
C. ‘abc’
D. ‘a’
【单选题】
一个 char 型数据,它的值在内存中存放的是 ___。
A. ASCll 代码值
B. 代码值
C. 内码值
D. 十进制代码值
【单选题】
执行语句“x=(a=3,b=a--);”后,X,a, b 的值依次为___。
A. 3,3,2
B. 2,3,2
C. 3,2,3
D. 2,3,3
【单选题】
以下能正确定义且赋初值的语句是___。
A. int n1=n2=10;           
B. char c=32
C. float f=f+1.1;          
D. double x=12.3E2.5
【单选题】
若有定义:int a=8, b=5; float C;,执行语句C=a/b+0.4;后,C的值为___。
A. 1.4  
B. 1     C、2.0       D、2
【单选题】
使用“scanf(”x=%f,y=%f“,&x,&y)”,要使 x,y 均为 1.25,正确的输入是___。
A. 1.25,1.25
B. 1.25 1.25
C. x=1.25,y=1.25
D. X=1.25 y=1.25
【单选题】
设有 int i=010,j=10;则执行“printf(”%d, %d\n“,++i,j--);”的输出是___。
A. ll, 10
B. 9, 10
C. 010, 9
D. 10, 9
【单选题】
以下4组用户定义标识符中,不合法的是___。
A. main
B. If
C. int
D. txt
【单选题】
已知int j,i=1;执行语句“j=i++;”后,变量i的值是___。
A. 1
B. 2
C. –1
D. -2
【单选题】
在C语言中,要求运算数必须是整型的运算符是___。
A. %
B. /
C. <
D. !
【单选题】
以下选项中不能作为 C 语言合法常量的是___。
A. 'cd'
B. 0.1e+6
C. "\a"
D. '\011'
【单选题】
程序运行后的输出结果是:___。
A. 3
B. 5
C. -1
D. -2
【单选题】
当用户要求输入的字符串中含有空格时,应使用的输入函数是___。
A. scanf( )
B. getchar( )
C. gets( )
D. getc( )
【单选题】
if语句的控制条件是___。
A. 只能用关系表达式
B. 只能用逻辑表达式
C. 只能用关系表达式或逻辑表达式
D. 可以用任何表达式
【单选题】
以下错误的描述是___。
A. break语句不能用于循环语句和switch语句外的任何其他语句
B. 在switch 语句中使用break语句或continue语句的作用相同
C. 在循环语句中使用continue语句是为了结束本次循环,而不是终止整个循环
D. 在循环语句中使用break语句是为了使流程跳出循环体,提前结束循环
【单选题】
当把以下四个表达式用作if语句的控制表达式时,有一个选项与其它三个选项含义不同,这个选项是___。
A. k%2
B. k%2==1         
C. (k%2)!=0          
D. !k%2==1
【单选题】
若变量c为char类型,能正确判断出c为小写字母的表达式是___。
A. 'a'<=c<= 'z'
B. (c>= 'a')||(c<= 'z')
C. ('a'<=c)and ('z'>=c)
D. (c>= 'a')&&(c<= 'z')
【单选题】
下列条件语句中,功能与其他语句不同的是___。
A. if(a==0) printf("%d\n",x); else printf("%d\n",y);  
B. if(a==0) printf("%d\n",y); else printf("%d\n",x)
C. if (a!=0) printf("%d\n",x); else printf("%d\n",y)
D. if(a) printf("%d\n",x); else printf("%d\n",y)
【单选题】
以下错误的描述是___。
A. break语句不能用于循环语句和switch语句外的任何其他语句。
B. 在switch 语句中使用break语句或continue语句的作用相同。
C. 在循环语句中使用continue语句是为了结束本次循环,而不是终止整个循环。
D. 在循环语句中使用break语句是为了使流程跳出循环体,提前结束循环。
【单选题】
for (j=0;j<10;j++);循环结束后,j的值是___。
A. 12
B. 11
C. 10
D. 9
【单选题】
下面对数组的定义正确的是 ___
A. int n=10; int array[n]
B. int array[10]
C. int n; scanf(“%d”,&n); int array[n]
D. int n; int array[n]; scanf(“%s”,array)
【单选题】
正确的数组定义语句为 ___
A. int A[-3]
B. int A[3,5]
C. int A[ ][ ]
D. int *A[3]
【单选题】
设已定义数组int array[3][4]; 则对此数组正确的引用是 ___
A. array[1,2]
B. array [1][4]
C. array[1][1+2]
D. array(1)(3)
【单选题】
设二维数组array有m列,则在array[i][j]之前的元素个数为___
A. j*m+i
B. i*m+j
C. i*m+j-1
D. i*m+j+1
【单选题】
长度为5的int类型数组和长度为3的double类型数组,哪一个数组占用内存空间多___
A. int 型的多
B. double型的多
C. 一样多
D. 不一定
【单选题】
字符数组char a[]=“one\n”;占多少内存字节___
A. 3
B. 4
C. 不一定
D. 5
【单选题】
下面哪个说法是错误的___
A. 数组元素有相同的名字
B. 数组元素有相同的数据类型
C. 数组元素在内存中是连续存储的
D. 数组元素有据有相同的下标
【单选题】
二维数组第一个元素的下标是___
A. 0,0
B. 0,1
C. 1,1
D. 1,0
【单选题】
若有定义 float x[3][100],下标最大的数组元素是___
A. x[2][99]
B. x[0][100]
C. x[3][99]
D. x[2][100]
【单选题】
判断字符串s1是否大于字符串s2, 则应当使用: ___
A. if(s1>s2)
B. if(strcmp(s1,s2))
C. if(strcmp(s1,s2)>0)
D. if(strcmp(s2,s1)>0)
【单选题】
下述对C语言字符数组的描述正确的是___ 
A. 任何一维数组的名称都是该数组存储单元的开始地址,且其每个元素按照顺序连续占用存储空间
B. 一维数组的元素在引用时其下标大小没有限制
C. 任何一个一维数组的元素,可以根据内存的情况按照其先后顺序以连续或非连续的方式占用存储
【单选题】
 下述对C语言字符数组的描述中正确的是___
A. 任何一个一维数组的元素在引用时,其下标可以是整型、实型或字符型常量
B. 一维数组的元素实质上就是一个变量,代表内存中的一个存储单元
C. 如果要引用数组中的每一个元素,则直接使用该数组名称即可
D. 以上都不对
【单选题】
在一个C语言程序构成中,较完整的描述是___
A. 由主程序与子程序构成
B. 由多个主函数与多个函数构成
C. 由主函数与函数构成
D. 由一个主函数与多个函数构成
推荐试题
【单选题】
What VM Monitoring setting would ensure that the maximum reset window for a virtual machine is 24 hours?___
A. Medium
B. Low
C. High
D. Normal
【单选题】
What is the default space threshold for vSphere Storage DRS?___
A. 80%
B. 70%
C. 90%
D. 95%
【单选题】
Which is the correct sequence to upgrade a vSphere infrastructure?___
A. vCenter Server>ESXi host> VMware Tools>VM compatibility
B. ESXi host>vCenter Server> VMware Tools>VM compatibility
C. vCenter host> ESXi host> VM compatibility> VMware Tools
D. ESXi host>vCenter Server> VM compatibility>VMware Tools
【单选题】
An administrator has a large boot from SAN cluster and wants to ensure consistent configuration by using host profiles. What special considerations are required for boot from SAN hosts?___
A. Change the “Device is shared clusterwide” setting to “false” in the host profile.
B. Verify that the boot LUN is correctly identified as the boot device in the host profile.
C. The boot from SAN device must report as a local device.
D. Host profiles are incompatible with boot from SAN hosts.
【单选题】
When using VMware Converter to import a Windows server and improve the consistency of the destination virtual machine, which optional step can be performed immediately prior to powering down the source server?___
A. Perform a final synchronization task.
B. Remove the server from the network.
C. Uninstall production applications.
D. Remove the server from the Active Directory domain.
【单选题】
Restoration of the vCenter Server Appliance is accomplished using which interface?___
A. vSphere Web Client
B. vSphere Client
C. vCenter Server Appliance Management Interface
D. vCenter Server Appliance GUI Installer
【单选题】
When attempting to migrate a virtual machine to another host in the same cluster, the error message, “Select a valid compute resource” returns. What could cause this error?___
A. Both hosts run different versions of ESXi.
B. Both hosts are not sharing the same datastore.
C. VMware Tools is not installed.
D. Virtual machine has an ISO attached.
【单选题】
When will vSphere Data Protection delete the expired backup image of a Platform Service Controller?___
A. Immediately after the retention period has expired.
B. After the expired backup image is restored.
C. During the next backup window following expiry.
D. During the next maintenance window following expiry.
【单选题】
Group A has permission to download files in Content Library. Group B does not have permission to download files in Content Library. If a user is a member of both groups, what will be the result?___
A. The user cannot download file from Content Library.
B. The user can download file from Content Library.
C. The user cannot access Content Library.
D. The user can access Content Library.
【单选题】
An administrator is trying to set up Host Partial Failure Response, but the Automated option is grayed out. What can the administrator change to enable the Automated option?___
A. Change the vSphere DRS Automation level to Partially Automated.
B. Change the vSphere DRS Automation level to Fully Automated.
C. Enable vSphere HA Host Monitoring.
D. Change the vSphere DPM Automation level to Automatic.
【单选题】
When you attempt to open a virtual machine console from the vSphere Web Client, the console does not connect. The following error message appears:<HTTP ERROR 404> <Problem accessin/.Reason: Not Found>. Why did not connect?___
A. Port 443 is in use.
B. Port 9443 is in use.
C. Port 8443 is in use.
D. Port 22443 is in use.
【单选题】
What new feature was introduced to the Content Library in vSphere 6.5?___
A. Mount an ISO directly from the Content Library.
B. Deploy a virtual machine from an OVF Package in a Content Library.
C. Upload a File from a URL to a Library Item.
D. Upload a File from a Local System to a Library Item.
【单选题】
How can an administrator exclude Encryption rights from a support engineer?___
A. Clone the role Virtual machine power user, remove Cryptographic operations privileges.
B. Clone the role Administrator and assign to the support engineer.
C. Clone the role Virtual machine power user and assign to the support engineer.
D. Clone the role No cryptography administrator and select privileges only for the support engineer.
【单选题】
The administrator must back up a vCenter HA deployment. Which component must be backed up?___
A. Passive node
B. Witness node
C. External database
D. Active node
【单选题】
What is the supported protocol to perform remote L3 traffic monitoring in vSphere 6.5?___
A. VXLAN
B. ERSPAN
C. RSPAN
D. SPAN
【单选题】
What are the minimum hardware requirements for a Windows vCenter Server with embedded PSC that manages a “Small” environment?___
A. 2vCPUs, 16 GB RAM
B. 4 vCPUs, 16 GB RAM
C. 2 vCPUs, 10 GB RAM
D. 4 vCPUs, 10 GB RAM
【单选题】
Which port is used for communication between ESXi and vSphere Data protection?___
A. 80
B. 443
C. 902
D. 22
【单选题】
What can prevent Storage DRS from functioning on a datastore?___
A. The datastore is configured for Virtual Machine Swapfile location.
B. The datastore is shared across multiple datacenters.
C. The datastore is connected to a host that is running Storage I/O Control.
D. Storage DRS advanced option IgnoreAffinityRulesForMaintenance is set to 1.
【单选题】
When troubleshooting VMware vCenter Server issues, when logging level provides maximum detail?___
A. Verbose
B. Trivia
C. Info
D. Error
【单选题】
What new feature is introduced in NFS 4.1 on ESXi 6.5?___
A. IPv6
B. KRB5i
C. AUTH_SYS
D. Storage DRS
【单选题】
What configuration option would ensure that a virtual NUMA topology is defined on VMs having more than eight virtual CPUs?___
A. cupid.coresPerSocket
B. numa.vcpu.followcorespersocket
C. numa.vcpu.maxPerVirtualNode
D. numa.vcpu.min
【单选题】
What is the minimum disk space required to deploy vSphere Data Protection (VDP) with 8 TB configuration?___
A. 4 TB
B. 16 TB
C. 8 TB
D. 12 TB
【单选题】
What advanced option for vSphere HA defines a maximum number of reset attempts by VMCP for a virtual machine?___
A. das.maxterminates
B. das.isolationshutdowntimeout
C. das.maxresets
D. fdm.isolationpolicydelaysec
【单选题】
What vSphere technology enables the administrator to ensure consistent configuration at scale?___
A. PowerCLI
B. Host Profiles
C. esxcli
D. vSphere Web Client
【单选题】
Which port is used for vSphere HA agent-to-agent communication?___
A. 443
B. 8182
C. 22
D. 902
【单选题】
Which log file would assist in identifying an issue that occurred during the database export phase of a vCenter Server upgrade process?___
A. vcdb_import.out
B. export.json
C. export-upgrade-runner.log
D. vcdb_export.out
【单选题】
Bidirectional CHAP is support by which storage initiator?___
A. software FCoE HBA
B. Fibre Channel HBA
C. independent hardware iSCSI HBA
D. dependent hardware iSCSI HBA
【单选题】
What is a pool of raw storage capacity that a storage system can provide to Virtual Volumes?___
A. protocol endpoint
B. storage container
C. storage provider
D. datastore
【单选题】
vSphere 6.5 DRS is now Network-Aware. Based on network utilization, when will DRS balance VMs?___
A. DRS will balance VMs when a network resource pool is configured for VMs.
B. DRS will balance VMs when Network I/O Control is enabled.
C. DRS will place VMs on initial boot for hosts that have network utilization lower that the threshold.
D. DRS will vMotion VMs when network utilization is higher than the threshold on a particular host.
【单选题】
A scripted upgrade of ESXi fails due to an incorrect parameter in the upgrade script. What file must the administrator modify to correct the problem?___
A. vmreconfig.pl
B. hostinfo.pl
C. ks.cfg
D. boot.cfg
【单选题】
A VM folder contains VM1 and VM2. Group A has permission to power on virtual machines, defined on the VM folder and its children. Group B has permission to power off virtual machine VM2. If a user is a member of group A and B, what action can the user perform?___
A. Suspend VM2.
B. Power off VM1.
C. Power on and power off VM1.
D. Power on and power off VM2.
【单选题】
The networking team has requested to have a dedicated network for iSCSI traffic. This task has been assigned to the vSphere Administrator. What is the VMware-recommended way to accomplish this?___
A. Configure Static Routes on each ESXi Server.
B. Configure the right subnet.
C. Create a custom IP Stack.
D. Define a dedicated gateway for the iSCSI vmkernel.
【单选题】
To prevent possible failures or issues during a vSphere upgrade, which component should be upgraded first?___
A. ESXi Hosts
B. virtual machines
C. datastores
D. vCenter Server
【单选题】
What is the command for updating an ESXi host?___
A. esxcli software vib update –d /vmfs/volumes/Datastore/DirectoryName/PatchName.zip
B. esxupdate software update –d”/vmfs/volumes/Datastore/DirectoryName/PatchName.zip”
C. esxcli software update –d “/vmfs/volumes/Datastore/DirectoryName/PatchName.zip”
D. esxupdate software vib update –d /vmfs/volumes/Datastore/DirectoryName/PatchName.zip
【单选题】
A vSphere Administrator would like to identify which physical NUMA node their virtual machine is currently residing on. What esxtop metric would provide this information?___
A. GST_ND[x]
B. OVD_ND[x]
C. NRMEM
D. NHN
【单选题】
How can a vSphere administrator ensure that two virtual machines never run on the same datastore in a datastore cluster, while permitting the VMs to be load-balanced?___
A. Use an Intra-VM Anti-Affinity Rule.
B. Configure a storage DRS VM override.
C. Disable storage
D. RS for the VMs.
【单选题】
What is the VMware-recommended way to move a physical adapter out of Network I/O Control’s scope?___
A. Set the teaming policy to “Route Based on Physical NIC Load.”
B. Add the vmnic to the Net.NetNiocAllowOverCommit parameter in Advanced System Settings.
C. Add the vmnic to the Net.IOControlPnicOptOut parameter in Advanced System Settings.
D. Move the vmnic to a different vmUplink port on the Distributed Switch.
【单选题】
A VM folder contains VM1 and VM2. Group A has permission to power on virtual machines, defined on the VM folder and its children. Group B has permission to power off virtual machines, defined on the VM folder and its children. If a user is a member of Groups A and B, what will be the user’s effective permission on VM1 and VM2?___
A. Power on
B. Power off.
C. Power on and Power off.
D. Reset.
【单选题】
Group 1 is granted console interaction on a VM folder. User 1 is granted no console interaction on the same VM folder. What will be the outcome if User 1 tries to access the console of a virtual machine?___
A. User 1 will not be able to access the virtual machines in the VM folder.
B. User 1 will not have access to the virtual machine console.
C. User 1 will have access to the virtual machine console.
D. User 1 will have console access only via the vSphere Web Client.
【单选题】
Which statement is true regarding the use of VMFS3 datastores with vSphere 6.5?___
A. VMFS3 datastores can be used but not created.
B. VMFS3 datastores can be neither used nor created.
C. VMFS3 datastores will be present but unmounted.
D. VMFS3 datastores can be created and used.