Today, Infusion held a talk in Columbia University about tech interview.

Talker: Nishit Shah @ Infusion, Techinical Account Manager, Dev -> Team Lead -> Manager

3 Real Questions

Smart?

Gets Things Done?

Fit the team?

The Introductions

Tell me about yourself?

Tell me about your last job?

Goal: First Impression + Attitude

Highlight positives from prior roles; things you learned, or unique experiences.

Keep it to 1 minute!

CS Fundamentals

OOP Fundamentals

Data Structure/ Memory Management

Multithreading/ Concurrent Programming

Coding Best Practices

Databases

Goals: Measure experience, aptitude

Access breadth and depth - find gaps

Do not memorize definitions and read out! Provide examples, not just definitions!

Cite bult-in examples from major frameworks.

Show you understand/ have used it.

Don't go overboard! (brevity is beautify)

- "Why"/ "How does"
- Can you give me an example?

- How have you applied this in a project?

- What happens if...

OOP Fundamentals

"What is Object Oriented Programming?"

Polymorphism

Overload vs Override

Abstarct Classes

Interfaces

Access Modifiers

Static, Final, Read only

Constructors & Destructors

Data Structures

Array[], ArrayList

HashMap

...

Memory Management

Scopes

Struct vs Classes

Pass By Value vs Pass By Referrence

Stack vs Heap

Pointers vs Referrences

Garbage Collector

Disposable pattern/ using scopes

Multithreading/ Concurrent Programming

Treads vs Processes

Async, wait, notify, sleep

Context Switching

Race conditions, deadlock

Locks/ Mutexes/ Semaphores

Coding Best Practices

Exception Handling

Logging

Source Control

Commenting

Naming Conventions

Testing

Debugging

Build Management

Databases

Schema Design/ Normalization

Select Statements

  Joins

  Aggregate Funcs/ Group By

Transactions/ ACID
Tables vs Views

Stored Procedures

ORMs

Algorithms & Problem Solving

Measuring Aptitude:

  Applying what ou know

  Solving "new" problems

"Hands On" vs Theory: Whiteboarding, writing codes

Thought Process & Reasoning

Communication

Tips:

"Right" matters less than thought process.

Talk your way through the problem.

Break it down. State/ clarify assumptions

Draw/ write it out: visualize your logic.

BUT "knowing the answer" isn't the point, you need to be able to explain it!

Get started; how quickly you can solve matters.

Write out pseudo code/ comments.

State assumptions, think about corner cases.

Example:s

9 balls, same size, 8 are the same weight. Find heavy ball using a balance in the least number of weighings.

Do you have any questions for me?

Tips:

Know what factor you're looking for in a job/ company.

Skip "administrative" questions; (ask the recruiter)

Show you've done your homework

  Know the company

  Know the interviewer

Example:

1. Everyone seems friendly and energetic - can you tell me more about the culture?

2. How do you support continual learning for your employees, especially new grads?

3. I was really impressed with XXX<case study>. What have been some of your favorite projects?

4. What do you see as the near term challenges and long term opportunities of this role/ position?

5. Do you have any feedback on how today went?

Rock the Tech Interview的更多相关文章

  1. How to prepare system design questions in a tech interview?

    http://blog.baozitraining.org/2014/09/how-to-prepare-system-design-questions.html 如何准备面试中的系统设计问题一直都是 ...

  2. Freewheel Tech interview

    1.聊背景.. 2.聊项目..然饿我的项目是webvr..基本面试官很少会了解这个..应该再多做实习多做些项目.. 3.浏览器输入网址后到页面呈现出来的过程 4.缓存机制, 浏览器如何判断一个图片有没 ...

  3. GitHub最强技术面试手册:Tech Interview Handbook

    摘要: 求职还是需要认真准备的. 原文:超实用技术面试手册,从工作申请.面试考题再到优势谈判,GitHub获30000星 作者:量子位 技术人员求职面试,单刷leetcode上的大厂题库可能还不够. ...

  4. A Problem-Solving FlowChart || 如何解决编程问题

    This is from book Cracking the coding interview, Gayle Laakmann Mcdowell. The flowchart can be used ...

  5. think

    https://github.com/crossoverJie/Java-Interview Java-Interview https://github.com/aalansehaiyang/tech ...

  6. Leetcode 简略题解 - 共567题

    Leetcode 简略题解 - 共567题     写在开头:我作为一个老实人,一向非常反感骗赞.收智商税两种行为.前几天看到不止两三位用户说自己辛苦写了干货,结果收藏数是点赞数的三倍有余,感觉自己的 ...

  7. 作为程序员,你关注哪些国外 IT 网站?

    1.在线编程练习: LintCode——在线刷题网站,阶梯式训练,可帮助你更快速深入地了解各类面试题型,提供专业导师写的最优代码作为参考(Lintcode 标准答案查询——lintcode 的参考答案 ...

  8. 一些比较好的国外IT网站

    1.在线编程练习: LintCode --在线刷题网站,阶梯式训练,可帮助你更快速深入地了解各类面试题型,提供专业导师写的最优代码作为参考 (Lintcode 标准答案查询--lintcode 的参考 ...

  9. 有了这10个GitHub仓库,开发者如同buff加持

    摘要:列出了10个极好的仓库,它们为所有web和软件开发人员提供了巨大的价值. 本文分享自华为云社区<所有开发者都应该知道的10个GitHub仓库>,作者: Ocean2022 . 除了作 ...

随机推荐

  1. CentOS下安装无线网卡驱动 (转)

    1. 确定自己的网卡和内核版本:lspci | grep Network  #根据输出的信息确定网卡的型号.uname -a             #确定内核版本 2. 配置yum使用RPMForg ...

  2. RedHat安装GCC问题-解决依赖问题

    RedHat Linux在安装gcc时需要cpp和cloog-ppl但是在安装cpp的时候需要这个依赖:libmpfr.so.1()(64bit) is needed by cpp-4.4.6-3.e ...

  3. c++之 变量

    变量的基本操作 变量就是一个可以变化的量,变量由变量类型.变量名.初始值(可选)组成,例如: int abc = 10; 变量类型:int 变量名:abc 初始值:10 // 该值为可选项,在创建变量 ...

  4. 【Spark Core】任务运行机制和Task源代码浅析1

    引言 上一小节<TaskScheduler源代码与任务提交原理浅析2>介绍了Driver側将Stage进行划分.依据Executor闲置情况分发任务,终于通过DriverActor向exe ...

  5. 一、cocos2dx概念简介

    cocos2dx概念介绍 1)scene,继承自CCScene 场景,一个游戏运行期间的显示界面,一个应用里面可以有多个场景,但是每次只能有一个是激活状态,也可以理解为一次只能显示一个界面. 例如,你 ...

  6. 7. 稀疏表示之OMP,SOMP算法及openCV实现

    一.前言 稀疏表示是自上世纪90年代开始,从人眼的视觉感受野获得启示,逐渐被人们所研究.现在已经发展为一种重要的信息表示方法.所谓稀疏表示是指,一个信号在过完备字典中,可以由少数个原子线性表达, 其数 ...

  7. undefined和null的区别

    在javascript中undefined和null几乎是没有区别的 undefined==null;//true;   区别:   null是一个表示“无”的对象,转为数值为0:或者说没有对象,此处 ...

  8. ScriptManager局部刷新

    ScriptManager和UpdatePanel控件联合使用可以实现页面异步局部更新的效果.其中的UpdatePanel就是设置页面中异步局部更新区域,它必须依赖于ScriptManager存在,因 ...

  9. 详解一名合格PHP工程师应该具备的基本知识结构

    在学习php时的一些小沉淀,供童鞋们欣赏哈.. 1.掌握语言本身的语法,熟悉常用类库是必须的: 2.面向对象最为当今的主流也是必须掌握的: 3.常用设计模式必须掌握,设计模式是前辈的总结.经验: 4. ...

  10. Windows7上FTP服务器建立

    1. FTP服务器建立 注意:千万不能使用FTP和ftp建立用户,否则无法登陆ftp服务器. 1.1本地机器上创建一个用户 这个用户是用来登录到FTP的.我的电脑右键->管理->本地用户和 ...