注册一亩三分地论坛,查看更多干货!
您需要 登录 才可以下载或查看附件。没有帐号?注册账号 
x
Haven Life是纽约一个保险公司,我有几个朋友在里面工作,据他们说工作压力不大,同事都还行,整体文化就类似个startup。我面试的是Full stack,除了跟HR聊天那一轮以外,一共两轮技术店面。
第一轮,45分钟,中国人小哥,人非常nice,互相介绍自己以后先问了一些JS和JAVA的基础题,比如let和var的区别,closure,nodejs的工作原理,java里final和finally的区别,exception的种类和区别。然后开始写题,题目是Valid Parentheses,leetcode原题,秒写,然后问了问工作经验,最近做什么项目,项目里的挑战。总体比较轻松愉快就结束了,从头到位小哥都没难为我。
第二轮,1小时,美国人小哥,提前15分钟发的题,题目描述超级长,但其实是个非常简单的commission计算题。题目如下。我面试之后在Github上搜到了有人写的java版本,在github的搜索里搜“havenlife” 出来的第一个结果就是。 我当时用js写的,如有人需要可以留言。
我最后没拿到offer,自己觉得两轮面试都还可以,题目都写出来了,也算中规中矩,写题过程中一直都在交流,也跑了test cases。收到拒信后我联系了HR要Feedback,后来HR的manager给我打了个电话说all positive feedback,只是hiring manage说我不适合,一票否决。。。唉,所以我并不知道跪在了哪里。如果有感兴趣的小伙伴可以面一下试试。
A thriving agency sells insurance policies through a network of agents. Agents are people that are licensed to sell an insurance policy to a customer.
Some agents are licensed to sell insurance policies either directly or through other agents. These are super agents.
Every agent has 1 or more pre-defined hierarchies that they cant commission % of the policy amount = 0% * 2.25% * 100000 = 0
Total commission: 1125
Sale 2: Policy Face Amount: $100,000; Agent Hierarchy: H2; Commission Plan: B
- Selling Agent (Bob) gets 70% of the agent commission % of policy amount = 70% * 2% * 100000 = 1400
- First Super Agent (A) gets 8% of the agent commission % of the policy amount = 8% * 3.25% * 100000 = 260
- Second Super Agent (X) gets 4% of the agent commission % of the policy amount = 4% * 2.5% * 100000 = 100 - Third Super Agent (D) gets 0% of the agent commission % of the policy amount = 0% * 2.75% * 100000 = 0
- Fourth Super Agent (Z) gets 0% of the agent commission % of the policy amount = 0% * 1.75% * 100000 = 0
Total commission: 1760
|