昨天去了見工,除去兩次見暑期工的經驗外,
第一次真正好formal咁面試,
表現......麻麻-_-
期實直頭可以話係差添-__-
一開始,筆試:
第一版,程式語言的知識
詳列十多種程式語言剔熟練程度1-5
Very familiarize: None
familiarize:C++
OK:Java
not familiarize:
Basic,SQL
no knowledge:others not above, such as API,J2EE,Oracle,UML,etc
第二版,寫程式,兩題
1)given a decimal number, write a function to count the number of bits in binary representation
MY ANS:
int binary_bits(int num)
{
int no_bits=0;
while (num != 0)
{
num = (num - (num%2))/2;
no_bits++;
};
return no_bits+1;
}
2)given a array of character, write a function to find the position of 'x' in the array
MY ANS:
int find_position(char * ch)
{
int position = -1;
char * head = ch;
for (int i=0; i <= ch.length()-1;i++) { if (*head == 'x') position = head - ch; head++; }; return position; } 回答完後,覆了一次,按電話通知那人說"我搞定了"(我可不知他姓什名誰,他也沒自我介紹) 他進來,看了一次,中途另一人拿了部notebook進來並坐下工作 他看後唸唸有詞地說,"這樣做?" 接著把答卷給了另一人看 接著便開始發問了 "先介紹下你自己" my mine blank a second 接著我開始自我介紹... "你為什麼應徵這份工" 我答... "EIE 讀什麼的" 我答... "不如你解釋下這兩個程式" 我解... 接著他介紹了一下他們公司 說這是第一輪面試 問我有沒有問題 我答-暫時沒有 接著握手後便送了我出去了
Wednesday, February 4, 2009
Posted by roy at 1:42 PM Labels: Normal Day
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment