c#基础笔试题

1、<%# %> 和 <% %> 有什么区别收藏

2、NET和C#有什么区别收藏

3、C#中 property 与 attribute的区别,他们各有什么用处,这种机制的好处 在哪里收藏

4、以下代码运行结果是什么收藏

<pre class="prettyprint lang-cs">class Program { const int bb = aa * 10; const int aa = 10; static readonly int dd = cc * 10; static readonly int cc = 10; static void Main(string[] args) { Console.WriteLine(&quot;aa={0},bb={1},cc={2},dd={3}&quot;, aa, bb,cc,dd); Console.ReadKey(); } }</pre><p></p>

5、下列导航方式中,会使用 Post 的方式调用目标页的是收藏

6、在SQL SERVER数据库中,如果标识列ID的初始值为1,增长量为2,则输入三行数据以后,再删除两行,下次再输入数据行的时候,标识值将是收藏

7、关于Page类,下列选项中描述错误的是收藏

8、ASP.NET生命周期管道的正确的顺序是收藏

9、以下代码输出什么收藏

<pre class="prettyprint lang-cs">class Father { public virtual void ShowA(int i) { Console.Writeline(i); } public void ShowB(Father a) { a.ShowA(1); ShowA(5); } } class Son : Father { public override void ShowA(int i) { base.ShowA(i + 1); } } static void Main(string[] args) { Father a = new Father(); Son b = new Son(); a.ShowB(a); a.ShowB(b); b.ShowB(a); b.ShowB(b); Console.ReadKey(); }</pre><p></p>

网友评论0

云产品购物券
类似试卷