|
中軟的面試比較經(jīng)典,也比較嚴(yán)格,一般有四輪,類似于微軟的面試。中軟面過以后,根據(jù)項(xiàng)目組,會推到美國微軟那邊運(yùn)用live meeting & con-call 再面一次。以下是我的面試題及個(gè)人的小分析,拿出來和大家share一下。希望更多的人能過這個(gè)坎。如有什么問題,可以一起交流。直接進(jìn)入主題:
1. English communication. (sale yourself, project information, your interesting,and how to deal with problem you encounter etc.)
2. the using of key words "new".
Regarding this problem, you can refer to my other blog with this path: new . or you can get more information from interNET.
3.Write a method which can remove the same unit from a Array which has been sorted.
//在排序好的數(shù)組中移除相同的元素public int [] RemoveCommon(int [] a){
if (a.Length==0)
{
return a;
}
List <int> Result = new List<int>();
int i , j;
i = j = 0;
int temp = a[0];
while (i < a.Length)
{
if (a[i] != temp)
{
j++;
temp = a[i];
Result.Add(temp);
}
i++;
}
// convert List to Array
//......
return Result;
}
NET技術(shù):中軟面試題-最新,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。