随笔分类 -  interview

摘要:epamdifference between abstract class & interface?what is OOP?vmfront-end1. bootstrap的grid system2. jQuery的deferred object和promised,适用场景和技术,选择器。3. Jav... 阅读全文
posted @ 2015-08-31 10:00 tanchao 阅读(121) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。
posted @ 2015-08-18 17:05 tanchao 阅读(8) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。
posted @ 2015-06-12 08:00 tanchao 阅读(10) 评论(0) 推荐(0)
摘要:Behavior Questions:whom is your favorite programer? why?why you use Python? why not others?could you describe your project now? why you don't use some... 阅读全文
posted @ 2014-06-10 02:22 tanchao 阅读(258) 评论(0) 推荐(0)
摘要:前一篇文章是我做的题 这是剩余的三道,都很基础。1. Write a method to generate the nth number of the Fibonacci sequence.Defined as f(0)=0f(1)=1f(n)=f(n-1)+ f(n-2) where n>1Seq... 阅读全文
posted @ 2014-06-10 02:12 tanchao 阅读(171) 评论(0) 推荐(0)
摘要:题目:2) Write code to find the 2nd smallest element in a binary search tree (BST) .Javaclass Node {public Node left;public Node right;public Node parent... 阅读全文
posted @ 2014-06-08 02:20 tanchao 阅读(389) 评论(0) 推荐(0)