Skip to main content

来说说我面试的一点经验吧

发信人: Mandelbrot (Big Cong to LP!!!!!), 信区: Quant
标  题: 来说说我面试的一点经验吧
发信站: BBS 未名空间站 (Wed Apr  2 22:31:32 2008)

最近的三四个月里,一共面了九个人,全是entry level(我自己也面不了senior的,
找senior工作的就不用听我罗嗦了。呵呵)。多数是来onsite的,也有几个phone
screen的。这其中有最后给了offer的,也有pass的。在这里说几个典型案例,攒点人
品。

我的手比较松,只给过两个fail。第一个是和我一个学校,系差不多的印度人。因为专
业接近,所以看他的简历的时候就看出很多问题。phone screen的时候问了几个专业问
题,答得都不好。然后问了一些数学问题,也不满意。最后问了一个很简单的概率问题
,他做了近半个小时都做不出来。最要命的是,他喜欢猜答案。题目做了一半,就说我
想这个答案是什么什么。而且一次都没有猜对。第二个是一个同胞。主要问题是准备得
太不好了。简历上写的有 finance knowledge,而且列了一些书。但是面试的时候发现
所有和finance相关的问题都答不上来,书也只看头几章。说实话,如果是onsite,我
不会给同胞fail的。但是这是个phone screen,与其让人家大老远的白跑一趟,不如好
好看书用处大。

说完故事,说几个建议。
1,简历上的东西一定要扎实。其实学物理的,工程的,数学的,在面试的时候很容易
遇到同行。搞不好很细节的东西人家也知道。如果这些本专业的东西答不好,印象就大
打折扣了。
2,学工程,数值计算的人最好注意一下本行的数学基础。工程细节一般知道的人不多
,大家也不太感兴趣。但数学是通用语言,这也是最容易被问到的东西。
3,Experience要写得实在,一个model有多少是自己做的,就写多少。写得太好,面
试的期望值就很高。如果发现有水份,落差就很大。有的candidate做题做得很好,底
子也很扎实,就是和senior聊经历的时候出了纰漏。这样fail掉,实在很冤枉。
4,最后也是最重要的,要苦练内功。数学,finance,编程,不可偏废。我常问数学
和finance。不喜欢的就是在没有严格推理的情况下猜答案。打个比方,解一个
recursive的数列求和。解出了头三项,就猜这是个什么数列,解是什么,但不做数学
归纳。我的同事问过一个写着精通perl的人regex的一个东西(忘记是什么了),结果
没答出来。这种事情通常就会给很坏的印象。如果是同胞还算了,要不是的话,我就
pass了。
--

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...