【单选题】【消耗次数:1】
下列哪项属于字寻址( )
I0.2
VB10
VW10
ID0
参考答案:
复制
纠错
相关题目
【单选题】 循环“for(i=0,x=1;i=10xi++);”的循环执行(  )。
①  无限次    
②  不确定次     
③  10次     
④  9次
【单选题】 下列哪项属于双字寻址( )
①  MD28
②  QW1
③  V1.0
④  IB0
【单选题】 在JavaScript中,运行下面的代码,sum的值是( )。 var sum = 0; for(i = 1; i < 10; i++) { if(i%5==0) break; sum = sum + i; }
①  40
②  50
③  5
④  10
【单选题】 说明语句“staticinti=10;”中,“i=10”的含义是()
①  只说明了一个变量
②  与inti=10在功能上等价
③  将变量i初始化为10
④  将变量i赋值为10
【单选题】 在JavaScript中,运行下面的代码,sum的值是( )。var sum = 0;for(i = 1; i ( 10; i++) { if(i%5==0) break; sum = sum + i;}(选择一项)
①  40
②  50
③  5
④  10
【单选题】 已知三点A(10、20、15)、B(10、0、30)、C(0、10、0),则在坐标面上的点为______。
①  Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:普通表格; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.5pt; mso-bidi-font-size:11.0pt; font-family:等线; mso-ascii-font-family:等线; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:等线; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:等线; mso-hansi-theme-font:minor-latin; mso-font-kerning:1.0pt;} A、B、C三点
②  Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:普通表格; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.5pt; mso-bidi-font-size:11.0pt; font-family:等线; mso-ascii-font-family:等线; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:等线; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:等线; mso-hansi-theme-font:minor-latin; mso-font-kerning:1.0pt;} B点
③  Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:普通表格; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.5pt; mso-bidi-font-size:11.0pt; font-family:等线; mso-ascii-font-family:等线; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:等线; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:等线; mso-hansi-theme-font:minor-latin; mso-font-kerning:1.0pt;} B、C两点
④  Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:普通表格; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.5pt; mso-bidi-font-size:11.0pt; font-family:等线; mso-ascii-font-family:等线; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:等线; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:等线; mso-hansi-theme-font:minor-latin; mso-font-kerning:1.0pt;} C点
【单选题】 若int i=10; 执行下列程序后,变量i的正确结果是( ) switch ( i ) { case 9: i+=1; case 10: i+=1; case 11: i+=1; default : i+=1; }
①  13
②  12
③  11
④  10
【单选题】 在下面循环语句中循环体执行的次数为(????) ?int i=0; do i++; while(i*i<10);
①  4
②  3
③  5
④  2
【单选题】 在下面循环语句中循环体执行的次数为()。 int i=0; do i++; while(i*i<10);
①  4
②  3
③  5
④  2
【单选题】 下述程序的运行结果( )。 #includevoid main() { char ch; int i=0; for(ch=achzch++) { printf(%c ,ch); if(i%10==0) printf(\n } printf(\n }
①  a b c d e f g h i j k l m n o p q r s t u v w x y z
②  a b c d e f g h i j k l m n o p q r s t u v w x y z
③  a b c d e f g h i j k l m n o p q r s t u v w x y z
④  a b c d e f g h i j k l m n o p q r s t u v w x y z
随机题目
【判断题】 路肩横坡坡度一般较路面横坡大1%,但是高速公路和一级公路的硬路肩采用与路面行车道同结构,可采用与路面行车道相同的路面横坡度。()
①  正确
②  错误
【判断题】 水泥稳定碎石材料组成设计中水泥用量按最佳用量方法设计。()
①  正确
②  错误
【判断题】 在等应变控制的疲劳试验过程中,随着加载次数的增加,应力将会缓慢增加。()
①  正确
②  错误
【判断题】 沥青路面比水泥路面要好。()
①  正确
②  错误
【判断题】 沥青混凝土路面面层越厚,油石比越大,其高温稳定性越好。()
①  正确
②  错误
【判断题】 挡土墙与其他石砌防护体的根本区别就在于其砌筑方式和厚度不同。()
①  正确
②  错误
【多选题】 影响路基压实的因素有()。
①  含水量
②  压路机重量
③  土质
④  压路机的生产厂家
⑤  压路机类型
【多选题】 下列结合料稳定类不适合作高速公路基层的有()。
①  二灰砂砾
②  水泥土
③  水泥砂砾
④  二灰土
【单选题】 在路面结构设计中,土基模量是指下列哪个模量()。
①  切线模量
②  割线模量
③  回弹模量
④  弯拉模量
【单选题】 二灰是指以下哪两种材料()。
①  水泥和石灰
②  水泥和粉煤灰
③  石灰与煤渣
④  石灰与粉煤灰