贡献一个面试经验: Nokia Gate5 Berlin
本帖最后由 fyi 于 2010-9-28 13:58 编辑一面,电话面试,全程英语,首先是对方自我介绍,然后是自己自我介绍。
接着发到信箱一个链接,点击链接是一个 online 的文本编辑器,双方都能同时看到和输入。
第一题:
1. In one of our Linux environment, we have a txt based file called log.txt
2. The size of the file is 3 Gb
3. The format of the file is:
Date_time||Error_ID||Error_Description
4. We want to print the Date_Time for all the lines which contains "INFO" in the Error_Description part
5. Search only from last 10 lines
6. Do it efficiently
第二题:(先问的:你知不知道什么是 Regression Test 啊?做过 Regression Test 吗?)
Design a Regression Test for Student Reg. System
Name: up to 10 chars
ID: 0-99999
Dept: String up to 15 chars
OK CANCEL
第三题:
C++
8 1 2 4 3 4 3 2 1 3 1
Stability of Sorting Algoritm = ?
还有一些口头的题目,记不清了。都是关于算法或者基本编程技能的。 谁有答案? 回复 1# fyi
tail --lines=10 log.txt|grep "INFO"|cut -d "||" -f 1 回复fyi
tail --lines=10 log.txt|grep "INFO"|cut -d "||" -f 1
Tommy.s 发表于 2010-9-28 13:28 http://www.dolc.de/forum/images/common/back.gif
高手啊,我好久不用 linux 了,所以面试时候根本没想起来,后来放下电话就想起来怎么写了。FT. 回复 4# fyi
经常用所以会一点儿。。
第二个题目是要 用 perl 写个程序马? 没怎么看明白 回复fyi
经常用所以会一点儿。。
第二个题目是要 用 perl 写个程序马? 没怎么看明白
Tommy.s 发表于 2010-9-28 13:52 http://www.dolc.de/forum/images/common/back.gif
哦,这是测试领域的,如果你写个什么程序,那就是 test automation 了,
那就牛大了。如果 manual test 的话,写 test case 就可以了。 小声地问一句 ,这个是什么level 的?
Entry? junior? Senior? by the way
那个现在做测试的,不都是要用特殊的软件吗?SQS HPQC
怎么现在开些了? 回复 6# fyi
那这样就很容易了,用 perl 3句话就可以了。。 回复fyi
那这样就很容易了,用 perl 3句话就可以了。。
Tommy.s 发表于 2010-9-28 14:41 http://www.dolc.de/forum/images/common/back.gif
试试。。。
页:
[1]
2