What are  minimum and maximum number of extent pools on an I

题目
单选题
What are  minimum and maximum number of extent pools on an IBM System Storage DS8800 with 64 physical disks()
A

the minimum is 1 and the maximum is 8

B

the minimum is 2 and the maximum is 8

C

the minimum is 2 and the maximum is 16

D

the minimum is 1 and the maximum is 64

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

阅读以下说明和C函数,填充函数中的空缺,将解答填入答题纸的对应栏内。
[说明]
下面的函数sort(int n,int a[])对保存在数组a中的整数序列进行非递减排序。由于该序列中的元素在一定范围内重复取值,因此排序方法是先计算出每个元素出现的次数并记录在数组b中,再从小到大顺序地排列各元素即可得到一个非递减有序序列。例如,对于序列6,5,6,9,6,4,8,6,5,其元素在整数区间[4,9]内取值,因此使数组元素b[0]~b[5]的下标0~5分别对应数值4~9,顺序地扫描序列的每一个元素并累计其出现的次数,即将4的个数记入b[0],5的个数记入b[1],依此类推,9的个数记入b[5]。最后依次判断数组b的每个元素值,并将相应个数的数值顺序地写入结果序列即可。
对于上例,所得数组b的各个元素值如下:
1.jpg
那么在输出序列中写入1个4、2个5、4个6、1个8、1个9,即得4,5,5,6,6,6,6,8,9,从而完成排序处理。

[C函数] void sort(int n,int a[]) { int *b; int i, k, number; int minimum=a[0],maximum=a[0]; /*minimum和maximum分别表示数组a的最小、最大元素值*/ for(i=1; i<n; i++){ if(______) minimum=a[i]; eiSe if (______) maximum=a[i]; } number=maximum-minimum+1; if(number<=i)return; b=(int*)calloc(number,sizeof(int)); if(!b) return; for(i=0;i<n; i++){/*计算数组a的每个元素值出现的次数并记入数组b */ k=a[i]-minimum; ++b[k]; } /*按次序在数组a中写入排好的序列*/ i=______; for(k=0; k<number; k++) for(; ______; --b[k] ) a[i++]=minimum+______; }


答案:
解析:
a[i]<minimum,或a[i]<=minimum,或其等价形式
a[i]>maximum,或a[i]>=maximum,或其等价形式
0
b[k],或b[k]>0,或b[k]!=0,或其等价形式
k


【解析】

本题考查C程序的基本语法和运算逻辑。
首先应认真分析题目中的说明,然后确定代码结构和各变量的作用。
空(1)和(2)所在for语句的功能是求出数组a中的最小元素minimum和最大元素maximum。在设置了minimum和maximum的初始值后,空(1)处的判断条件是只要目前的元素a[i]小于。minimum,就需要更新。minimum,反之,空(2)处的判断条件是只要目前的元素a[i]大于maximum,就需要更新maximum,因此空(1)处应填入a[i]<minimum或其等价方式,空(2)处应填入a[i]>maximum或其等价方式。minimum和maximum的作用是要确定计数数组b的大小。
根据题目中的描述,序列中的每个元素a[i]都对应到计数数组b[]的一个元素b[k],对应方式为:k=a[i]-minimum,其中minimum是数组a中的最小元素,显然在计数时,一个数值出现一次,就在对应的b[k]中累加一次。
空(3)~(5)所在的语句组是产生排序后的序列,重新写入数组a。首先需明确变量i和k的作用,根据它们在该语句组中的出现位置,i用于表示数组a的元素下标,k用于表示数组b中元素的下标,因此,空(3)处应填入0,使得从数组a中下标为0的数组元素开始。通过循环控制"for(k=0; k<number;k++)"已经明确数组b的下标变化方式,而需要写入数组a的元素个数表示在b[k]中,所以"for(; ______; --b[k])"中空(4)处应填入"b[k]>0"或其等价形式。由于b[k]中记录的是元素k+minimum的出现次数,所以空(5)处应填入"k",从而将元素值恢复后再写回去。

第2题:

What is the minimum number of virtual I/O server partitions needed to ensure high availability of the disks when utilizing the Virtual I/O server in a micro-partitioned solution?()

  • A、1
  • B、2
  • C、3
  • D、4

正确答案:B

第3题:

What is the minimum number of CECs required to avoid single points of failure on a Power 570 server?()

A.1

B.2

C.3

D.4


参考答案:B

第4题:

What is the maximum number of agents supported for CCM co-resident installations?()

  • A、5  
  • B、10  
  • C、15  
  • D、20

正确答案:B

第5题:

What is the maximum number of CTI ports for a Cisco Unified Contact Center Express 4.0 Standard deployment? ()

  • A、150  
  • B、200  
  • C、300  
  • D、varies based on the number of expansion servers used  
  • E、varies based on the number of applications configured 

正确答案:C

第6题:

Which two factors determine the recommended maximum number of virtual interfaces on a Cisco UCSsystem?()

  • A、the number of computer blades in the system
  • B、the number of interfaces sharing the uplinks
  • C、the driver version on the OS running on the computer blade
  • D、the number of uplinks between I/O Module and Fabric Interconnect

正确答案:B,D

第7题:

When troubleshooting a network, the output of the command show interfaces indicates a large number of runts. What is a runt?()

  • A、the number of packets that are discarded because they exceed the maximum packet size of the medium
  • B、errors created when the CRC generated by the originating LAN station or far-end device does not match the checksum calculated from the data received.
  • C、the number of packets that are discarded because they are smaller than the minimum packet size of the medium
  • D、the number of received packets that were ignored by the interface because the interface hardware ran low on internal buffers
  • E、the number of times that the interface requested another interface within the router to slow down

正确答案:C

第8题:

What is the maximum size that can be specified when creating an XML column in a DB2 table?()

A.No size is specified

B.The buffer pool size

C.The page size for the table space

D.The extent size for the table space


参考答案:A

第9题:

What call performance statistics are reported on the Cisco Wireless IP Phone 7921 user interface?()

  • A、minimum jitter
  • B、maximum jitter
  • C、upstream standard packet deviation
  • D、average MOS value
  • E、average conceal rate

正确答案:D

第10题:

What is the maximum number of CTI ports for an IPCC Expess Standard deployment? ()

  • A、150 
  • B、200 
  • C、300 
  • D、Depends upon how many expansion servers are used 
  • E、Depends upon the number of applications configured

正确答案:C

更多相关问题