An A+ Certified̳

题目

An A+ Certified Technician MUST do an install on a Windows XP system from the distribution CD. However, the system does not boot from this CD. What is the MOST likely cause of this problem?()

  • A、The CD is defective.
  • B、The CD is not bootable.
  • C、The CD-ROM drive is defective.
  • D、The Boot Sequence is not set in the BIOS to boot first from the CD
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

以下程序的输出结果是

main()

{ int a,i;a=0;

for(i=1;i<5;i++)

{ switch(i)

{ case 0:

case 3:a+=2;

case 1:

case 2:a+=3;

default:a+=5; }

}printf("%d\n",a);}

A.31

B.13

C.10

D.20


正确答案:A
解析:本题考查用于多分支选择的switch语句, 其一般形式为:
switch(表达式)
{
case常量表达式1: 语句1;
case常量表达式2: 语句2;

case常量表达式n: 语句n;
default : 语句n+1;
}
其语义是:计算表达式的值,并逐个与其后的常量表达式值进行比较,当表达式的值与某个常量表达式的值相等时,即执行其后的语句,然后不再进行判断,继续执行后面所有 case后的语句;如表达式的值与所有case后的常量表达式均不相等时,则执行default后的语句。

第2题:

在三部门经济模型中,消费支出C等于()

A、自主消费a+边际消费倾向MPC×国民收入NI

B、自主消费a+边际消费倾向MPC×个人收入PI

C、自主消费a+边际消费倾向MPC×个人可支配收入PDI

D、自主消费a+边际储蓄倾向MPS×个人可支配收入PDI


参考答案:C

第3题:

以下程序的输出结果是

main()

{int a,i;a=0;

for(i=1;i<5;i++)

{switch(i)

{case 0:

case 3:a+=2;

case 1:

case 2:a+=3;

default:a+=5;

}

}printf("%d\n",a);

}

A.31

B.13

C.10

D.20


正确答案:A

第4题:

If your diskette has been(66), the computer can not store any new information on it.

A.formatted

B.write protected

C.tested

D.Certified


正确答案:B
解析:如果你的软盘被写保护了,电脑就无法往软盘上写信息。

第5题:

Each bank is () annually by a certified public accountant.

A、checked

B、examined

C、inspected

D、audited


参考答案:D

第6题:

听力原文:W: Then certified checks, cashier's and cash letters of credit are "all variants of demand deposits.

M: Yes, that's right.

Q: Which of the following is not one form. of demand deposits?

(13)

A.Cashier's.

B.Savings certificate.

C.Cash letters of credit.

D.Certified cheeks.


正确答案:B
解析:女士谈到活期存款时提到了"certified checks"、"cashier's"、"cash letters of credit",但没有提及"savings certificate"。

第7题:

下列程序的输出结果是( )。 #include<stdio.h> main( ) { int a=0,i; for(i=1;i<5;i++) { switch(i) { case 0: case 3:a+=1; case 1: case 2:a+=2; default:a+=3; } } printf("%d",i); }

A.19

B.1

C.6

D.8


正确答案:A
本题考查switch语句。当i=1时,执行casel,因为没有遇到break语句,所以依次往下运行,“a=a+2=2,a=a+3=5”;当i=2时,执行case2,因为没有遇到break语句,所以依次往下执行,“a=a+2=7,a=a+3=10”;当i=3时,执行case3,a=a+1=11,因为没有遇到break语句,所以依次往下运行,a=a+2=13,a=a+3=16;当i=4时,执行default,a=a+3=19,结束循环。

第8题:

以下程序运行后的输出结果是【10】。

include<stdio.h>

main()

{ char a;

for(a=0;a<15;a+=5)

{putchar(a+'A');}

printf("\n");

}


正确答案:AFK
AFK 解析:本题是进行字符输出,第一次输出0+'A',即A;第二次输出5+'A',即F;第三次输出10+'A',即K,然后跳出循环。

第9题:

有以下程序 main( ) { int a=0,i; for(i=1;i<5; i++) { switch (i) { case 0 case 3:a+ =2; case 1; case 2;a+=3; default, a+=5; } } printf("%d\n",a) ; }

A.31

B.13

C.10

D.20


正确答案:A

第10题:

下面程序段的运行结果是( )。 char * format="%s,a=%d,b=%d\n"; int a=11,b=10; a+ =b; printf(format,"a+=b",a,b);

A.for,"a+=b",ab

B.format,"a+=b"

C.a+=b,a=21,b=10

D.以上结果都不对


正确答案:C
解析:字符串常量是由双引号括起来的一串字符,每一个字符串常量都分别占用内存中一串连续的存储空间,这些连续的存储空间实际上就是字符型一维数组。

更多相关问题