Redian新闻
>
Qualcomm的 401K到底等么回事啊 (转载)
avatar
Qualcomm的 401K到底等么回事啊 (转载)# JobHunting - 待字闺中
k*a
1
1) match price from samsclub
2) use 25off 75
3) use 15%off
4) use gift card to pay if you have
5) get $100 gift check rebate.
final cost -40 or -50
avatar
A*e
2
【 以下文字转载自 Working 讨论区 】
发信人: AFanTee (阿凡提), 信区: Working
标 题: Qualcomm的 401K到底等么回事啊
发信站: BBS 未名空间站 (Mon May 6 22:03:48 2013, 美东)
公司主页上说:
100% on first $1,500, 50% on the next $1,500, 33% on next $7,500, and 10%
thereafter
offer letter上却说: 401k Company Match of up to $5000 per year, based on
your contribution, with full vesting in just two years of employment.
我是完全糊涂了,到底公司每个月出多少啊,如果我自己每个月交1500, 公司会完全
match ?
还是说,每年最多match 5000 ?
请大家指点,谢谢了
-------------------------
谢谢大家,我刚才在另外一个版上收到答案了
company match up to $5,000 per year
in order to get the full company match, you'll have to contribute at least $
13,000 per year
avatar
W*t
3
manager的小舅子可能可以这么买出来,别人基本没戏

【在 k*******a 的大作中提到】
: 1) match price from samsclub
: 2) use 25off 75
: 3) use 15%off
: 4) use gift card to pay if you have
: 5) get $100 gift check rebate.
: final cost -40 or -50

avatar
s*r
4
每年最多5000,说得挺清楚

【在 A*****e 的大作中提到】
: 【 以下文字转载自 Working 讨论区 】
: 发信人: AFanTee (阿凡提), 信区: Working
: 标 题: Qualcomm的 401K到底等么回事啊
: 发信站: BBS 未名空间站 (Mon May 6 22:03:48 2013, 美东)
: 公司主页上说:
: 100% on first $1,500, 50% on the next $1,500, 33% on next $7,500, and 10%
: thereafter
: offer letter上却说: 401k Company Match of up to $5000 per year, based on
: your contribution, with full vesting in just two years of employment.
: 我是完全糊涂了,到底公司每个月出多少啊,如果我自己每个月交1500, 公司会完全

avatar
n*e
5
那你娃能买出来啊~

【在 W****t 的大作中提到】
: manager的小舅子可能可以这么买出来,别人基本没戏
avatar
A*e
6
那前面说的 100% match 1500 就纯属多余了啊
每年5000的话,每个月才400多啊

【在 s*******r 的大作中提到】
: 每年最多5000,说得挺清楚
avatar
c*k
7


【在 k*******a 的大作中提到】
: 1) match price from samsclub
: 2) use 25off 75
: 3) use 15%off
: 4) use gift card to pay if you have
: 5) get $100 gift check rebate.
: final cost -40 or -50

avatar
s*r
8
不多余啊,不是按月平均的

【在 A*****e 的大作中提到】
: 那前面说的 100% match 1500 就纯属多余了啊
: 每年5000的话,每个月才400多啊

avatar
W*t
9
你没事了跑到这里干啥啊。。。。闲的蛋疼

【在 n*******e 的大作中提到】
: 那你娃能买出来啊~
avatar
l*t
10
那是1500是每年吧

【在 A*****e 的大作中提到】
: 那前面说的 100% match 1500 就纯属多余了啊
: 每年5000的话,每个月才400多啊

avatar
w*6
11
我也觉得,不可能同时用这么多胖子的说
avatar
h*e
12
帮你写了一段Java code计算Qualcomm的401K match:
double getCompanyMatch(double yourContribution) {
if (yourContribution <= 1500) {
return yourContribution * 1.0;
}
if (yourContribution <= (1500 + 1500)) {
return 1500 * 1.0 + (yourContribution - 1500) * 0.50;
}
if (yourContribution <= (1500 + 1500 + 7500)) {
return 1500 * 1.0 + 1500 * 0.50 + (yourContribution - 1500 - 1500) *
0.33;
}
return Math.min(5000, 1500 * 1.0 + 1500 * 0.50 + 7500 * 0.33 *
(yourContribution - 1500 - 1500 - 7500) * 0.10);
}
avatar
t*s
13
第一步都很难,能走到第二步就是我的极限了

【在 W****t 的大作中提到】
: manager的小舅子可能可以这么买出来,别人基本没戏
avatar
A*e
14
是啊,每年的前1500 是100% match
我原先想的太美好了,每月公司都这么match一下。
呵呵,为自己的智商着急。。。。

【在 l******t 的大作中提到】
: 那是1500是每年吧
avatar
c*k
15
能有pm就基本是极限了

【在 w******6 的大作中提到】
: 我也觉得,不可能同时用这么多胖子的说
avatar
A*e
16
是啊,每年的前1500 是100% match
我原先想的太美好了,每月公司都这么match一下。
呵呵,为自己的智商着急。。。。

【在 l******t 的大作中提到】
: 那是1500是每年吧
avatar
t*s
17
应该用完25off75再用20off50,lz水平太弱了

【在 w******6 的大作中提到】
: 我也觉得,不可能同时用这么多胖子的说
avatar
l*a
18
参数/返回值类型是不是换一换?

*

【在 h****e 的大作中提到】
: 帮你写了一段Java code计算Qualcomm的401K match:
: double getCompanyMatch(double yourContribution) {
: if (yourContribution <= 1500) {
: return yourContribution * 1.0;
: }
: if (yourContribution <= (1500 + 1500)) {
: return 1500 * 1.0 + (yourContribution - 1500) * 0.50;
: }
: if (yourContribution <= (1500 + 1500 + 7500)) {
: return 1500 * 1.0 + 1500 * 0.50 + (yourContribution - 1500 - 1500) *

avatar
m*r
19
最难的就是第一步

【在 t**s 的大作中提到】
: 第一步都很难,能走到第二步就是我的极限了
avatar
h*e
20
谢了。改成double。最后LZ再取整吧。:)

【在 l*****a 的大作中提到】
: 参数/返回值类型是不是换一换?
:
: *

avatar
f*w
21
一般都是PM(OR)胖子,只能做一个。
avatar
A*e
22
呵呵,Code比文字清楚太多了
多谢大牛

*

【在 h****e 的大作中提到】
: 帮你写了一段Java code计算Qualcomm的401K match:
: double getCompanyMatch(double yourContribution) {
: if (yourContribution <= 1500) {
: return yourContribution * 1.0;
: }
: if (yourContribution <= (1500 + 1500)) {
: return 1500 * 1.0 + (yourContribution - 1500) * 0.50;
: }
: if (yourContribution <= (1500 + 1500 + 7500)) {
: return 1500 * 1.0 + 1500 * 0.50 + (yourContribution - 1500 - 1500) *

avatar
w*o
23
太好了, $50 收购不限量,you make $100
avatar
l*a
24
你账面上的是取整的吗?

【在 h****e 的大作中提到】
: 谢了。改成double。最后LZ再取整吧。:)
avatar
t*o
25
太黑了吧 哈哈

【在 w***o 的大作中提到】
: 太好了, $50 收购不限量,you make $100
avatar
w*d
26
我来我来,58好了,我发我发,恩

【在 t**o 的大作中提到】
: 太黑了吧 哈哈
avatar
s*j
27
难道我看花眼了。。
虫总MM?

【在 w********d 的大作中提到】
: 我来我来,58好了,我发我发,恩
avatar
L*1
28
太黑了,59我收

【在 w********d 的大作中提到】
: 我来我来,58好了,我发我发,恩
avatar
R*8
29
k....

【在 s*****j 的大作中提到】
: 难道我看花眼了。。
: 虫总MM?

avatar
b*i
30
行为艺术吧


【在 k*******a 的大作中提到】
: 1) match price from samsclub
: 2) use 25off 75
: 3) use 15%off
: 4) use gift card to pay if you have
: 5) get $100 gift check rebate.
: final cost -40 or -50

avatar
r*x
31
虫总就是女id啊。

【在 R*****8 的大作中提到】
: k....
avatar
W*t
32
恩,文科傻妞

【在 r*****x 的大作中提到】
: 虫总就是女id啊。
avatar
w*d
33
扫地GG你来了啊

【在 W****t 的大作中提到】
: 恩,文科傻妞
avatar
d*1
34
厚道收
$80一个
profit=$80-(-$50)=$130
不限量
avatar
n*e
35
是啊

【在 W****t 的大作中提到】
: 你没事了跑到这里干啥啊。。。。闲的蛋疼
avatar
s*j
36
K,为啥我一直以为她是男ID呢

【在 W****t 的大作中提到】
: 恩,文科傻妞
avatar
i*4
37


【在 k*******a 的大作中提到】
: 1) match price from samsclub
: 2) use 25off 75
: 3) use 15%off
: 4) use gift card to pay if you have
: 5) get $100 gift check rebate.
: final cost -40 or -50

avatar
r*x
38
我还以为在cvs买olay呢

【在 i******4 的大作中提到】
: 强
avatar
i*4
39
cvs没听说过pm吧,呵呵

【在 r*****x 的大作中提到】
: 我还以为在cvs买olay呢
avatar
d*r
40
From SD - No PM any more. Staples is aware that trick.
avatar
c*a
41
已经n多人抱怨 cs不给pm了。。。
avatar
p*e
42
网上订的会不会被砍呢?

【在 c*****a 的大作中提到】
: 已经n多人抱怨 cs不给pm了。。。
avatar
d*r
43
我再厚道点
85 收
profit=$85-9-50)=$135
也不限量

【在 d*****1 的大作中提到】
: 厚道收
: $80一个
: profit=$80-(-$50)=$130
: 不限量

avatar
S*l
44
只有online 的order才qualified。B&M根本没有rebate。 xxsl

【在 k*******a 的大作中提到】
: 1) match price from samsclub
: 2) use 25off 75
: 3) use 15%off
: 4) use gift card to pay if you have
: 5) get $100 gift check rebate.
: final cost -40 or -50

avatar
T1
45
这个就是师傅用来考验徒弟的专用入门deal
avatar
S*l
46
我们这里倒是可以PM,但不能用任何coupon. 只能上rewards和gc了。

【在 c*****a 的大作中提到】
: 已经n多人抱怨 cs不给pm了。。。
avatar
w*t
47
LZ 是意象天开。。
first of all 100 is for online only.
2nd 30 need combine of another item and is in store only
15% is for instore only
25 off 75 is big YMMV
PM is close to impossible for online order.
go figure
best thing us can get is about 70+ tax on 200
avatar
d*a
48
places an order last night after reading this post. Successfully price
matched over phone in one minute and got a credit back of about $110.
BTW, only one $25 off 100 coupon was used.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。