由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Bloomberg internship 二轮店面+offer
相关主题
Bloomberg 电面Bloomberg 的full time和intern是一回事吗?
Bloomberg FSD电面面经我真的很想知道
Bloomberg phone interview 一般多久会有通知?Bloomberg两轮电面面经(往事、悲剧)
菜鸟关于bloomberg网上考试题的两个问题bloomberg电面,非cs的会问些啥啊
Bloomberg Feeds Developer 是什么?请教一下,bloomberg非CS的电面都问点啥啊
bloomberg一天面试200人啊关于bloomberg的offer问题
bloomberg电话面试求祝福Bloomberg FSD相关信息分享
bloomberg那个online test大概要有多长时间?Bloomberg FSD 相关(2)
相关话题的讨论汇总
话题: int话题: wes话题: avarage话题: arr话题: transfer
进入JobHunting版参与讨论
1 (共1页)
l******8
发帖数: 21
1
申请的FSD internship,上月参加了他家的Discovered Day,算是一整天的参观日+第
一轮面试。本来上
周三就面完了,但由于是新ID,3日内不能发帖。。。
本人大四,国内两年后transfer来到美国,年底毕业。学校一般,专业知识在学校里学
的很浅,几乎都是这两个月突击的。
上周三中午二面,technical interview + HR + senior manager
technical问题如下:
1. 具体内容忘记了,是关于一个pointer function 输出“hello world” 的题,感觉
我答得很乱,程序改了又该。然后讨论了polymorphism. 内存中地址存放问题
2. 写function,find the average of an array. 我用了double类型的 for loop,
感觉这方法很笨,但也没多想,之后说了说如果array很大如何处理。
3. talked about data structure, linked list, array, queue, binary tree, draw
them and expl
l*******y
发帖数: 1498
2
6.10*10*10的大方块由1*1*1的小方块组成,问表面有多少个小方块。(10*10*10-9*9*
9)
这个我怎么算的是 488个(10×10×2 + (10×2 + 8×2)×8))。。。
H*****L
发帖数: 5705
3
cong..不过有些题答的貌似不对
l*******y
发帖数: 1498
4
7. 两个蛋糕,他先切第一个,我可以选大的部分,但是这样的话当他切第二个的时候
我只能听他安排。或者不选的话自动得到小的部分,然后可以在切第二个蛋糕的时候选
大块或小块,问最多我能得到多少蛋糕。(75%)
如果先选大的,后来听他安排,如果他安排大的给我,那我不是最多可以得到100%
y**i
发帖数: 1112
5
这个貌似答得不对,按照楼主的思路,总方块数-内部方块数应该等于10*10*10-8*8*8=
488
内部的方块边长应该是8而不是9

9*

【在 l*******y 的大作中提到】
: 6.10*10*10的大方块由1*1*1的小方块组成,问表面有多少个小方块。(10*10*10-9*9*
: 9)
: 这个我怎么算的是 488个(10×10×2 + (10×2 + 8×2)×8))。。。

l*******y
发帖数: 1498
6
我用的是笨方法,你的更好。。。

8=

【在 y**i 的大作中提到】
: 这个貌似答得不对,按照楼主的思路,总方块数-内部方块数应该等于10*10*10-8*8*8=
: 488
: 内部的方块边长应该是8而不是9
:
: 9*

l******8
发帖数: 21
7
两边都是精明的,对方当然不会给你100%的机会,如果你选大的话对方在第二个就会给
你0%,如果你选小的话在第二个你只能得到50%。所以解下面方程:a+50=b,a+b=100,
答案就是结果。

【在 l*******y 的大作中提到】
: 7. 两个蛋糕,他先切第一个,我可以选大的部分,但是这样的话当他切第二个的时候
: 我只能听他安排。或者不选的话自动得到小的部分,然后可以在切第二个蛋糕的时候选
: 大块或小块,问最多我能得到多少蛋糕。(75%)
: 如果先选大的,后来听他安排,如果他安排大的给我,那我不是最多可以得到100%

l******8
发帖数: 21
8
第六题答案一开始打错了,是10立方-8立方。。。。这道题当时是在面试官说完题干同
时我就给了他答案,貌似感动了他
s*********i
发帖数: 66
9
2. 写function,find the average of an array.
divide and conquer:
private int calc_avarage(int[] arr, int l, int r)
{
if (l < r)
{
int m = (l + r) / 2;
int left = calc_avarage(arr, l, m);
int right = calc_avarage(arr, m + 1, r);
return (left + right) / 2;
}
else
return arr[l];
}
r*****s
发帖数: 51
10

divide and conquer is indeed neat, but i don't think it is efficient. it
does same number of additions, but more divisions.

【在 s*********i 的大作中提到】
: 2. 写function,find the average of an array.
: divide and conquer:
: private int calc_avarage(int[] arr, int l, int r)
: {
: if (l < r)
: {
: int m = (l + r) / 2;
: int left = calc_avarage(arr, l, m);
: int right = calc_avarage(arr, m + 1, r);
: return (left + right) / 2;

相关主题
bloomberg一天面试200人啊Bloomberg 的full time和intern是一回事吗?
bloomberg电话面试求祝福我真的很想知道
bloomberg那个online test大概要有多长时间?Bloomberg两轮电面面经(往事、悲剧)
进入JobHunting版参与讨论
p******a
发帖数: 299
11
cong man~
o**********t
发帖数: 406
12
完全不对,整数平均不一定是整数。

【在 s*********i 的大作中提到】
: 2. 写function,find the average of an array.
: divide and conquer:
: private int calc_avarage(int[] arr, int l, int r)
: {
: if (l < r)
: {
: int m = (l + r) / 2;
: int left = calc_avarage(arr, l, m);
: int right = calc_avarage(arr, m + 1, r);
: return (left + right) / 2;

c*******L
发帖数: 125
13

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~错的,左右两边数组未必一样大

【在 s*********i 的大作中提到】
: 2. 写function,find the average of an array.
: divide and conquer:
: private int calc_avarage(int[] arr, int l, int r)
: {
: if (l < r)
: {
: int m = (l + r) / 2;
: int left = calc_avarage(arr, l, m);
: int right = calc_avarage(arr, m + 1, r);
: return (left + right) / 2;

r*******4
发帖数: 41
14
my niece wants to transfer to US in year 2011, she currently is a freshman
at a decent college at China. her plan is like what you already achieved,
transfer to US college after two years study at a Chinese college. so she needs apply in a couple of months. I am wondering whether you have any advice regarding transfer application which
you can kindly share with us? thanks a lot.
l******8
发帖数: 21
15
actually, just go to the website of each college she wants to apply for,
many of the colleges here provide transfer program. application process is
general, the only difference is she need a WES evaluation to transfer her
credits.

needs apply in a couple of months. I am wondering whether you have any
advice regarding transfer application which

【在 r*******4 的大作中提到】
: my niece wants to transfer to US in year 2011, she currently is a freshman
: at a decent college at China. her plan is like what you already achieved,
: transfer to US college after two years study at a Chinese college. so she needs apply in a couple of months. I am wondering whether you have any advice regarding transfer application which
: you can kindly share with us? thanks a lot.

r*******4
发帖数: 41
16
thank you very much for your quick response. regarding the WES evaluation,
does she need to do it before application? and usually how long does it
take? many years ago when we applied for graduate study here, we just
asked an English copy from the Chinese school, and mailed it to the American
schools by ourselves. it was easy, so i do not have any experience about
this. Actually I had never thought this WES evaluation before you mentioned
it today. Thank you very much . and good luck with yo
l***r
发帖数: 241
17
cong
b*****a
发帖数: 726
18
神阿,原来面试internship要问这么多问题啊。。。。。
还好我以前面试的时候没问,要不估计我就翘了。。
祝楼主好运!
l******8
发帖数: 21
19
如果切三分之一的话最终你能得到6/5,但对方当然不会这么做,这道题的真正意思就是你最多能从对方手里拿到多少。按这个思路:如果你第一次选较大的一块,那么第二次肯定只能得到0%,如果你第一次选小的,那第二次最多得到50%。
l******8
发帖数: 21
20
it's case by case, even in my school they didn't need WES before I came here
. She don't need to worry about that right now, just get admissiion first,
and then talk to dean or advisor about how to transfer her credits. The
whold process would takes about two months.
yeah, i will work at lexington. I'm very appreciated if you can set up a
meeting for me!

,
American
mentioned
there, and maybe I can arrange a lunch meeting for you if you want.

【在 r*******4 的大作中提到】
: thank you very much for your quick response. regarding the WES evaluation,
: does she need to do it before application? and usually how long does it
: take? many years ago when we applied for graduate study here, we just
: asked an English copy from the Chinese school, and mailed it to the American
: schools by ourselves. it was easy, so i do not have any experience about
: this. Actually I had never thought this WES evaluation before you mentioned
: it today. Thank you very much . and good luck with yo

r*******4
发帖数: 41
21
thanks a lot for the information.
I will talk with my friend and get back to you later.

here

【在 l******8 的大作中提到】
: it's case by case, even in my school they didn't need WES before I came here
: . She don't need to worry about that right now, just get admissiion first,
: and then talk to dean or advisor about how to transfer her credits. The
: whold process would takes about two months.
: yeah, i will work at lexington. I'm very appreciated if you can set up a
: meeting for me!
:
: ,
: American
: mentioned

m******9
发帖数: 67
22
实习不是要用cpt吗

【在 l******8 的大作中提到】
: 申请的FSD internship,上月参加了他家的Discovered Day,算是一整天的参观日+第
: 一轮面试。本来上
: 周三就面完了,但由于是新ID,3日内不能发帖。。。
: 本人大四,国内两年后transfer来到美国,年底毕业。学校一般,专业知识在学校里学
: 的很浅,几乎都是这两个月突击的。
: 上周三中午二面,technical interview + HR + senior manager
: technical问题如下:
: 1. 具体内容忘记了,是关于一个pointer function 输出“hello world” 的题,感觉
: 我答得很乱,程序改了又该。然后讨论了polymorphism. 内存中地址存放问题
: 2. 写function,find the average of an array. 我用了double类型的 for loop,

1 (共1页)
进入JobHunting版参与讨论
相关主题
Bloomberg FSD 相关(2)Bloomberg Feeds Developer 是什么?
报2个offer~帮忙看下还能negotiate吗?bloomberg一天面试200人啊
bloomberg 面经bloomberg电话面试求祝福
Bloomberg FSD 相关(3)bloomberg那个online test大概要有多长时间?
Bloomberg 电面Bloomberg 的full time和intern是一回事吗?
Bloomberg FSD电面面经我真的很想知道
Bloomberg phone interview 一般多久会有通知?Bloomberg两轮电面面经(往事、悲剧)
菜鸟关于bloomberg网上考试题的两个问题bloomberg电面,非cs的会问些啥啊
相关话题的讨论汇总
话题: int话题: wes话题: avarage话题: arr话题: transfer