c# 测试 选择题 麻烦写7,8个字解释一下

1.Whichofthefollowingstatementsistrue?A.Onlywhileloopscanbenested.B.Onlyforloopscanbe... 1. Which of the following statements is true?
A. Only while loops can be nested.
B. Only for loops can be nested.
C. All loops can be nested.
D. Loops cannot be nested.
E. Loops can, but should never, be nested.
============================================================
2. Which of the following ‘for’ loops is the correct representation of the ‘while’ loop?
int x = 0;
while(x < 20)
{
x++;
}
A. for(x = 0; x <= 20; x++)
B. for(x = 0; x < 20; x++)
C. for(x = 0; x > 20; x++)
D. for(x = 0; x >= 20; x++)
=========================================
3. Which of the following is a legal statement that declares an array?
A. []double salesFigures
B. double[] salesFigures;
C. double salesFigures[];
D. double[] salesFigures[];
E. all of the above
==============================
4. Which of the following statements declares and creates an array?
A. double[] salesFigures= new double[20];
B. double salesFigures[] = double[];
C. double salesFigures[] = new double;
D. double[] salesFigures;
E. double[] salesFigures[] = new double[20];
================================
5. The last element in an array of 20 elements called salesFigure is given by the code:
A. salesFigure[21]
B. salesFigure[20]
C. salesFigure[19]
D. salesFigure(21)
E. salesFigure(19)
====================================
6. Which of the following statements regarding C# arrays is true?
A. The first element of an array has an index of 1.
B. The index of the last element of the array is equivalent to the length of the array.
C. The index of the last element of the array is equivalent to the length of the array plus
one.
D. In C#, an array’s size can change after it is initially declared.
E. In C#, an array can only have one dimension.
展开
 我来答
AnotherSilence
2010-08-26 · 超过26用户采纳过TA的回答
知道答主
回答量:71
采纳率:0%
帮助的人:81.7万
展开全部
1、选A,所有的循环都可以嵌套。
2、选B,共循环20次,x最后的值为20
3、选B,数组的声明方法。
4、选A,声明及实例化数组。
5、选C,获取有20个元素数组的最后一个元素。
6、貌似没有正确选项,个人对于D的理解有些模糊,暂选D(如果是动态数组的话,则是可以改变大小的)。
石钟涛声
2010-08-26 · 超过17用户采纳过TA的回答
知道答主
回答量:75
采纳率:0%
帮助的人:59.7万
展开全部
1。以下哪项陈述是正确的?
答:只有while循环可以嵌套。
只有乙for循环可以嵌套。
C.所有循环可以嵌套。
四循环不能嵌套。
大肠杆菌循环可以,但千万不要被嵌套。
================================================== ==========
2。以下哪'的'循环是'而'循环正确代表性?
诠释x = 0时;
而(十<20)

x + +将;

答:为(x = 0等,x <= 20等,x + +)
乙为(x = 0等,x <20等,x + +)
长为(x = 0等,x> 20等,x + +)
四为(x = 0等,x> = 20等,x + +)
=========================================
3。下列哪一个法律声明,声明一个数组?
答:[]双salesFigures
b.按两下[] salesFigures;
三双salesFigures [];
d.双击[] salesFigures [];
所有上述五
==============================
4。下列哪些语句声明并创建一个数组?
答:双[] salesFigures =新的双[20];
b.双击salesFigures [] =双[];
三双salesFigures [] =新双;
d.双击[] salesFigures;
e.按两下[] salesFigures [] =新的双[20];
================================
5。在20个元素的数组的最后一个元素称为 salesFigure给出的代码:
答:salesFigure [21]
二salesFigure [20]
三salesFigure [19]
四salesFigure(21)
五salesFigure(19)
====================================
6。哪一项关于C#中的数组下面的语句是正确的?
答:一个数组的第一个元素有一个为1的索引。
二,数组的最后一个元素的索引等于数组的长度。
丙的数组的最后一个元素的索引,相当于数组的长度加
1。
D.在C#中,数组的大小可以改变它最初宣布之后。
E.在C#中,数组只能有一个层面。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式