每次错的都一毛一样,背的真的假。
1、Which of the following is reference type() C
A.enum
B.struct
C.string
D.int
值类型变量可以直接分配给一个值。它们是从类 System.ValueType 中派生的,比如 int、char、float,string从 System.String ,从object派生
2、What event is triggered when the form is loaded() B
A.Click
B.Load
C.GotFocus
D.DoubleClick
3、C# project file extension is() C
A.sln
B.proj
C.csproj
D.cs
4、How many kinds of timer in .Net, and what’s the difference between them?
- 1.定义在System.Windows.Forms里
- 2.定义在System.Threading.Timer类里
- 3.定义在System.Timers.Timer类里
5、Difference between Process and Thread?
多线程(这个简直是我的必错题,无解,记好三个大字,就不能错了啊)
6、Write a bubble sort.
int[] list = { 7, 2, 3, 8, 6, 10, 88, 55 };
int e;
for (int i = 0; i < list.Length - 1; i++)
{
for (int j = list.Length - 1; j > i; j--)
{
if (list[j] < list[j - 1])
{
e = list[j];
list[j] = list[j - 1];
list[j - 1] = e;
}
}
}
7、jdee 了解过没?(好像说的是GDI+)
Java Development Environment for Emacs
8、完整的介绍一个项目。
9、数据的查询优化?有哪几种索引
建立索引。普通索引、唯一索引、主键索引、组合索引。索引可以加快查询速度,但是过多的索引会变慢更新表的速率,占用磁盘索引文件(一般影响不大)。