Redian新闻
>
现在做个research faculty应该是个不错的选择吧
avatar
s*n
2
版上有人了解他们的R—D部门吗?需要经常加班吗?多谢
avatar
S*s
3
现在做个research faculty应该是个不错的选择吧。 当tenure track faculty,特别
是年轻的faculty,没有其他路子搞钱,只能死搞grant,7-9% payline of NIH,基本
没有太多机会。找个有钱的大lab,先干几年research track。等待时机反攻。。。。
avatar
m*9
4
MyClass * pClasses[500];
pClasses[idx] = new MyClass(int);
avatar
S*s
5
有多少人在做research faculty的,谈谈pro 和con。。。

【在 S*****s 的大作中提到】
: 现在做个research faculty应该是个不错的选择吧。 当tenure track faculty,特别
: 是年轻的faculty,没有其他路子搞钱,只能死搞grant,7-9% payline of NIH,基本
: 没有太多机会。找个有钱的大lab,先干几年research track。等待时机反攻。。。。

avatar
l*n
6
is a loop necessary?
for(int i=0; i<500; i++) {
pClasses[i] = new MyClass(int);
}
avatar
s*e
7
新faculty有几个precent discount的
avatar
a*n
8
array of 500 objects of that class.
not array of 500 pointers
avatar
L*O
9
yes if you can have two salaries。。。

【在 S*****s 的大作中提到】
: 现在做个research faculty应该是个不错的选择吧。 当tenure track faculty,特别
: 是年轻的faculty,没有其他路子搞钱,只能死搞grant,7-9% payline of NIH,基本
: 没有太多机会。找个有钱的大lab,先干几年research track。等待时机反攻。。。。

avatar
l*n
10
I am a new learner of C++, can you elaborate a little bit? Thanks a lot!
why "pClasses[idx] = new MyClass(int);" works?
what is idx?
avatar
s*y
11
几年前我有考虑过这条路的。当时版上好多人都警告我这是一条career dead end.
如果你是在National lab里面当scientist 还行,在大老板手下当RAP不是一个特别好的
选择。

【在 S*****s 的大作中提到】
: 现在做个research faculty应该是个不错的选择吧。 当tenure track faculty,特别
: 是年轻的faculty,没有其他路子搞钱,只能死搞grant,7-9% payline of NIH,基本
: 没有太多机会。找个有钱的大lab,先干几年research track。等待时机反攻。。。。

avatar
S*A
12
vector v(n, e);?

is

【在 a****n 的大作中提到】
: array of 500 objects of that class.
: not array of 500 pointers

avatar
s*h
13
你见过55岁左右的research faculty,带着老花镜,一边按摩有关节炎的手指,一边颤
抖着准备杀老鼠,砸干冰吗?
我见过
avatar
m*c
15
It's all depending on your contract. Research track and tenure track shouldn
't have too much difference, but both follows institute's guideline. Some
institutes allow the transition from research track to tenure track, but not
vice versa. However, research track don't usually come with start funding
at the starting point, therefore it's pretty tough to kick the ball rolling
for a NIH funding. If everything works well, you may fund your project
through internal grant or some non-NIH grant. When you gets grant on your
hands, you can initiate a new process for a better contract with your
institute for either a promotion or go to somewhere else with the grant.
It's all about how to negotiate with your institute.
avatar
m*9
16
vector不是对方想要的答案,这个题目考察的就是动态内存分配
avatar
A*y
17
It is all about grants. I know someone who was a research faculty for 10
years, now he/she is fully tenured with 2 R01 and 1 R21 in 6 years. A
tenure track faculty has start up fund but usually has to have new and novel
idea to get grant (you usually can't do what your old boss is doing).
However, a research faculty can be very close to his/her P.I. project and
get R01 as long as he/she can show to the reviewers that the project is an
independent idea.
Both positions require external funding or goodbye to the position in 5-6
years (research faculties might have some extra time). As for institutional
funding, everyone is fighting for it. It could be harder than external
funding.
avatar
m*f
18
What about this answer?
class Array{
Array(int);
}
Array *a;
a = (Array *)malloc(sizeof(Array) * 500);
avatar
A*y
19
It is all about grants. I know someone who was a research faculty for 10
years, now he/she is fully tenured with 2 R01 and 1 R21 in 6 years. A
tenure track faculty has start up fund but usually has to have new and novel
idea to get grant (you usually can't do what your old boss is doing).
However, a research faculty can be very close to his/her P.I. project and
get R01 as long as he/she can show to the reviewers that the project is an
independent idea.
Both positions require external funding or goodbye to the position in 5-6
years (research faculties might have some extra time). As for institutional
funding, everyone is fighting for it. It could be harder than external
funding.
avatar
a*n
20
对了一半, 只分配了内存块, 如果class不是POD(有vptr)或者含有动态内存指针, 这个array还是没法用

【在 m*****f 的大作中提到】
: What about this answer?
: class Array{
: Array(int);
: }
: Array *a;
: a = (Array *)malloc(sizeof(Array) * 500);

avatar
S*s
21
我说的是,如果刚做完postdoc,有这种机会,好像比进tenure track要好些。如果能
找到不需要你自己争取funding的位置(花大老板的钱),只是埋头做研究,发CNS,呵
呵,也挺不错的。

novel
institutional

【在 A******y 的大作中提到】
: It is all about grants. I know someone who was a research faculty for 10
: years, now he/she is fully tenured with 2 R01 and 1 R21 in 6 years. A
: tenure track faculty has start up fund but usually has to have new and novel
: idea to get grant (you usually can't do what your old boss is doing).
: However, a research faculty can be very close to his/her P.I. project and
: get R01 as long as he/she can show to the reviewers that the project is an
: independent idea.
: Both positions require external funding or goodbye to the position in 5-6
: years (research faculties might have some extra time). As for institutional
: funding, everyone is fighting for it. It could be harder than external

avatar
s*t
22
500 个 是 同一个 class吗?
这样会不会 指数无限增长?

【在 a****n 的大作中提到】
: http://www.careercup.com/question?id=230691
: vector也算数组,就是不知道考官同意不同意这个观点,我觉得至少这个不是他想要的答案

avatar
g*y
23
T *pArray = (T*) operator new[](500*sizeof(T));
uninitialized_fill(pArray, pArray+500, int);
avatar
m*f
24
我说你既然要找工作, 怎么没有LinkedIn Profile...

【在 g*******y 的大作中提到】
: T *pArray = (T*) operator new[](500*sizeof(T));
: uninitialized_fill(pArray, pArray+500, int);

avatar
J*d
26
STL里面的vector是要求有default constructor的吧?

【在 m******9 的大作中提到】
: vector不是对方想要的答案,这个题目考察的就是动态内存分配
avatar
z*e
27
interesting, why do you think it doesn't work for vptr? vptr is nothing just
a pointer, kind like:
class A
{
void* pVtbl;
int value;
public:
A(int v):value(v) {};
};
then:
A temp(123);
A* pBuffer = (A*)malloc(sizeof(A)*500);
for(int i=0;i<500;++i)
{
mempcy(pBuffer++, &temp, sizeof(A));
}
这个问题应该是让你模仿vector去实现类似功能(不是直接让你用vector)

这个array还是没法用

【在 a****n 的大作中提到】
: 对了一半, 只分配了内存块, 如果class不是POD(有vptr)或者含有动态内存指针, 这个array还是没法用
avatar
a*n
28
我是说只用下面这个malloc的情况。。。。。。。。。。。。。。。。。
A* pBuffer = (A*)malloc(sizeof(A)*500);

just

【在 z***e 的大作中提到】
: interesting, why do you think it doesn't work for vptr? vptr is nothing just
: a pointer, kind like:
: class A
: {
: void* pVtbl;
: int value;
: public:
: A(int v):value(v) {};
: };
: then:

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。