CompTIA认证考试

A recently ordered server came standard with one 3.0GHz processor. It is capable of handling fourtotal processors. Which of the following processor combinations can be used in this server?()A、 One, two, three or four processorsB、 One, two, or three proces

题目

A recently ordered server came standard with one 3.0GHz processor. It is capable of handling fourtotal processors. Which of the following processor combinations can be used in this server?()

  • A、 One, two, three or four processors
  • B、 One, two, or three processors
  • C、 One, three, or four processors
  • D、 One, two or four processors
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

下列语句能给数组赋值而不使用for循环的是

A.myArray{[1]="One";[2]="Two";[3]="Three";}

B.String s[5]=new String[]{"Zero", "One", "Two", "There", "Four"};

C.String s[]=new String[]{"Zero", "One", "Two", "There", "Four"};

D.String s[]=new String[]=|"Zero", "One", "Two", "There", "Four"};


正确答案:C
解析:A)、D)语法不正确,B)中s[5]的形式只能通过for循环的格式进行赋值,而不能直接赋值。C)中表达式左侧的“[]”说明现在定义一个数组,不需要指明数组长度,而表达式右侧“[]”在后面直接紧跟初始内容时也是不需要指定数组大小的,数组大小直接由初值长度决定。

第2题:

如何把阿拉伯小写数字(包括小数)1234123.23 转化成英文:one million, two hundred and

thirty-four thousand, one hundred and twenty-three point two three


正确答案:
 

第3题:

以下对枚举类型名的定义中正确的是______。

A.enum a={one,two,three};

B.enum a{on=9,two=-1,three};

C.enum a={"one","two","three"};

D.enum a{"one","two","three"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明;1、在C编译中,对枚单元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个牧举变量。

第4题:

以下对枚举类型名的定义中正确的是( )。

A.enum a={one,two,three};

B.enum a{one=9,two=-1.three=200};

C.enum a={"one","two","four"};

D.enum a{"nine","two","three"};


正确答案:B
解析:枚举类型的定义类似于结构体和共用体,所以选项A和C不正确。大括号中的枚举元素应该使用合法标识符来定义,而不是字符串常量,所以选项D不正确。故应该选择B。

第5题:

以下对枚举类型名的定义中正确的是( )

A.enum a={one,two,three};

B.enum a{one=9,two=-1,three=200};

C.enum a={"one","two","four"};

D.enum a{"nine","two","three"};


正确答案:B

第6题:

以理对枚举类型名的定义中正确的是______。

A.enum a={one, two, three);

B.enum a {one=9, two=1three};

C.enum a={"one", "two", "three"};

D.enum a {"one", "two". "three"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第7题:

Which of the following is the correct configuration for a RAID 5 array?()

A. A two disk set with one data strip

B. A three disk set with two data strips and a parity strip

C. A two disk set with two data strips

D. A four disk set with two sets of data strips


参考答案:B

第8题:

以下对枚举类型名的定义中正确的是______。

A.enum a={one,two,three};

B.enum a{one=9,two=-1,three};

C.enum a={"one","two","three"};

D.enum a{"one","two","three"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enum weekday(sun,mon,tue,wed,thu,fri,sat); 说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第9题:

下列语句能给数组赋值,而不使用for循环的是

A.myArray{[1]="One";[2]="Two";[3]="Three";}

B.String s[5]=new String[] {"Zero","One","Two","Three","Four"};

C.String s[]=new String[] {"Zero","One","Two","Three","Four"};

D.String s[]=new String[]= {"Zero","One","Two","Three","Four"};


正确答案:C
解析:字符串数组赋初值的方法有两种,一种是如选项C一样初始化。另外一种是先为每个数组元素分配引用空间,再为每个数组元素分配空间并赋初值。例如还可做如下赋值:
  string s[]=new String[5];
  s[0]="Zero";
  s[1]="One";
  s[2]="Two";
  s[3]="Three";
  s[4]="Four";

第10题:

Which of the following is the correct configuration for a RAID 5 array?()

  • A、A two disk set with one data strip
  • B、A three disk set with two data strips and a parity strip
  • C、A two disk set with two data strips
  • D、A four disk set with two sets of data strips

正确答案:B

更多相关问题