Redian新闻
>
学行星的想回国发展的请看(帮国内朋友转)
avatar
学行星的想回国发展的请看(帮国内朋友转)# Astronomy - 天文
x*n
1
Starwood Preferred Guest信用卡 开卡25000 bonus points可在二手版换500刀
http://goo.gl/gcivd
Earn 10,000 Starpoints with your first purchase and an additional 15,000
Starpoints when you spend $5,000 in 6 months
http://goo.gl/gcivd
填完后会在60秒告诉你结果,这个卡是第一年免年费的,之后是$65, 可以在第二年关
闭避免被收取年费。即使第二年开始有年费,个人觉得还是一张值得长期使用的信用卡
。 消费一笔后两周内会把10000 point在你卡上,不会使用的人可以兑换$100
giftcard. 选择其他的 giftcard(Starbucks, Gap,Nordstrom)请选择Redeem in other
partners。请注意这一万点就可以换到最高5晚的category 1的酒店入住了。
下面的是非常关键的内容:
大家可以直接在二手版直接将spg 25000点数兑换成500美金。
请大家千万不要把点数兑换以上的250刀 amazon gift card,因为可以直接使用获得的
点数入住SPG酒店,Category 1: 以aloft为例,可以直接用2000points/晚 入住周末
房,或者以1200 points+25刀 在任意天入住。 Category 2: 以Four Points by
Sheraton为例,可以使用3000points/晚 入住周末房, 或者以1600 points +30刀在任
意天入住。
即使是消费第一笔后获得的10000points,也可以获得最高五晚的酒店入住。而且这类
酒店在中国区也是有效的。如果消费满5000刀,更可以获得另外的最高七晚的酒店入住。
avatar
F*D
2
【 以下文字转载自 JobHunting 讨论区 】
发信人: UFO007 (股盲), 信区: JobHunting
标 题: a software tech lead position in Beijing
发信站: BBS 未名空间站 (Tue Jun 16 15:24:25 2009, 美东)
I got this msg from the headhunt.. If anybody is interested in this position
, contact the head hunter directly.
Contact info is at the end. Good Luck.
你好!
我是上海ninefind的will,我们是猎头公司,很高兴认识你.
我现在有一个北京的职位,是做存储方面产品研发的,不知是否适合你?如果不适合,请帮
忙看看是否有合适的朋友,谢谢!
具体描述如下
Principal Software Engineer - VTL technical lead, China, Beijing
Responsibilities:
l
avatar
w*o
3
等了5年,排期下个月到了,可是EAD半年内到期,是否再申请呢?求建议。
avatar
t*r
4
1. What is Visual C++?
a.It's a program used for starting other programs.
b.It's a program that you use to create other programs.
c.It's a program for browsing the Web.
d.It's a multimedia program that teaches you how to program.
2.What is the name of the process by which Visual C++ converts your C++
code to a program the computer can understand?
a.Compile.
b.Run.
c.Debug.
d.Build.
3.What do you call the container that stores all the files you write and
all the files Visual C++ writes to create a program?
a.Solution Explorer.
b.Software.
c.Class.
d.Project.
4. Which one of the following is a good example of an attribute for a class
Car?
a.Drive.
b.Color.
c.Stop.
d.Car.
5.Suppose you have a class called Porsche. This class has two attributes,
each being an instance of class BucketSeat. Which statement below
correctly describes this situation?
a.The class Porsche is a BucketSeat.
b.The class Porsche has a BucketSeat.
c.The class BucketSeat is a Porsche.
d.The class BucketSeat has a Porsche.
6. When you use Visual C++, which window do you use to change the
attributes of a form?
a.Form designer.
b.Properties window.
c.Solution Explorer.
d.Object.
7. You've just been hired to write a program for the bank down the street.
What should you do first?
a.Identify the problem and decide why you're writing the program and
who will use it.
b.Design the program using the form designer in C++Builder.
c.Write a set of classes.
d.Divide up your source code into multiple files.
8. What is a technical word for a step-by-step process?
a.Class.
b.Inheritance.
c.If statement.
d.Algorithm.
9. What is a radio button?
a.A control you can type words into.
b.A control with text and a small circular button to its left that you
can click.
c.A control with a slider on it so you can scroll through your forms.
d.A control with a drop-down menu.
10.What type of variable would hold the number 253? (Notice that there
are no double quotation marks around the number 253.)
a.A string variable.
b.A pointer variable.
c.A character variable.
d.An integer variable.
11. Which line of code below declares a variable called Count as an integer
and sets its initial value to 189?
a.int Count = 189;
b.int Count = "189";
c.string Count = "189";
d.string Count = 189;
12. What is a comment in your code?
a.A note in the code that instructs the computer to perform a task.
b.A note that you type into the form designer.
c.A note in the code for the humans reading the program.
d.A note that you type into the Properties window.
13. In an if statement, how do you compare if two numbers are equal?
a.Use != to check for equality.
b.Use == to check for equality.
c.Use <= to check for equality.
d.Use >= to check for equality.
14.If you're doing a case-sensitive comparison (that is, you want your
comparison to be sensitive to case), then which one of the following two
comparisons will be equal?
a.'HOUSE' and 'house'
b.'hose' and 'HOSE'
c.'HORSE' and 'HORSE'
d.'HOWS' and 'HOUSE'
15.Which of the following keywords serves the purpose of "otherwise" or
"none of the above" in an if statement?
a.if
b.{
c.}
d.else
16. How many elements are in the following array?
int morenumbers[80];
a.79.
b.80.
c.0.
d.81.
17. What is the first and last element in the following array?
int morenumbers[80];
a.The first is 0 and the last is 80.
b.The first is 0 and the last is 79.
c.The first is 1 and the last is 80.
d.The first is 1 and the last is 79.
18.Which one of the following sets of code will run a for loop, starting
with 0, and going up to and including 79? (Be sure to pay close attention
to the less-than signs and the equal signs.)
a.int x;
for (x=0; x<79; x++) { x++)="">
b.int x;
for (x=0; x<78; x++) { x++)="">
c.int x;
for (x=0; x<=80; x++) { x++)="">
d.int x;
for (x=0; x<=79; x++) { x++)="">
19. In computer programming, what do you call a block of code that may take
information, process code, and may return a value?
a.An array.
b.A class.
c.A for-loop.
d.A function.
20.Look very closely at the following function. What does it do?
int AddTwo(int Original)
{
int NewNumber;
NewNumber = Original + 2;
return NewNumber;
}
a.The function adds two to a number and returns the answer.
b.The function takes a two and adds two to get four.
c.The function takes an original number and adds the original number
to itself.
d.The function adds two to a string.
21· What is cin? (Please read the choices very carefully.)
a.An object used for reading from the console.
b.An object used for writing to the console.
c.An object used for displaying information on a form.
d.An object used for reading information from a form.
22. Take a look at the following class. What are the names of its member
variables?
class Pen
{
public:
float Length;
string Color;
int InkAmount;
};
a.The member variables are class, Pen, and public.
b.The member variables are class, Pen, public, Length, Color, and
InkAmount.
c.The member variables are public, float, AnsiString, and int.
d.The member variables are Length, Color, and InkAmount.
23.Which of the following is an instance of the Button class?
a.A button you drop on the form from the Toolbox.
b.You typed Button in code.
c.You divided your source code up into function.
d.You add #include in your code.
24. What does MyPen.Length = 6.0; mean? (Please read the choices
carefully.)
a.It means you're retrieving the Length attribute of MyPen and comparing
it to 6.0.
b.It means you're setting all instances of MyPen to 6.0.
c. It means you're storing 6.0 in the Length attribute of MyPen.
d.It means you're storing 6.0 in the MyPen attribute of Length.
25. If you're writing a class and you use the word private, what does that
mean?
a.It means the members that follow the word private can't be accessed
outside the class.
b.It means the class itself can only be accessed by similar classes.
c.It means a comment will follow that's intended only to the users of
the class and not the users of the program.
d.It means you can't create instances of the class.
26. Suppose you have an object named HondaAccord and you want to call the
object's AddGas function. The AddGas function takes a GasStation instance as
a parameter, for which you'll pass AmocoAt34th. How do you write this as
code?
a.AddGas.HondaAccord.(AmocoAt34th);
b.AmocoAt34th.AddGas(HondaAccord);
c.HondaAccord.AmocoAt34th(AddGas);
d.HondaAccord.AddGas(AmocoAt34th);
27.Which of the following must a class declaration have?
a.member functions.
b.private keyword.
c.class keyword.
d.public keyword.
28. What does this line of code do? cout << &x << endl;
a.It prints out the address of the variable called x.
b.It prints out the value of the variable called x.
c.It prints out an ampersand symbol followed by the letter x.
d.It prints out an ampersand symbol followed by the value stored in x.
29. If you have a pointer called ptr, and it points to an object, what
symbols do you type in to access the member variable called height of the
object?
a.height->ptr
b.ptr->height
c.height.ptr
d.ptr.height
30. What does the following line of code mean? class HondaAccord : public
Car {
a.It means the class HondaAccord is a member of the class Car.
b.It means the class HondaAccord is derived from the class Car.
c.It means Car is a public member of HondaAccord.
d.It means the class Car is derived from HondaAccord.
31. What happens if you have a class called Car, and it has a public member
function called Drive, and then from Car, you derive a new class called
FordTaurus?
a.You'll be required to write a new function called Drive for FordTaurus.
b.FordTaurus won't be allowed to have a function called Drive.
c.FordTaurus will inherit the function Drive.
d.FordTaurus will inherit every function except the one called Drive.
32. Suppose Car has a private variable called MilesPerGallon, and from Car
you derive a new class called HondaAccord. Which one of the following
describes the situation?
a.HondaAccord is free to directly access the private member
MilesPerGallon.
b.HondaAccord is free to directly modify the private member
MilesPerGallon.
c.MilesPerGallon is neither a member of HondaAccord nor of Car.
d.HondaAccord can't access the private member MilesPerGallon in the
inherited class called Car.
33. What is a header file?
a.It's a file containing code that you share between different code
files.
b.It's not really a file—it's a function header.
c.It's a file that states the name of your program.
d.It's the file where you're required to put your variable declarations.
34. What does this line mean? #include
a.It means you're going to type a program called iostream.
b.It means you want to include the header file called iostream. The
angled brackets mean iostream isn't in your project directory.
c.It means you want to include the header file called iostream. The
angled brackets mean iostream is in your project directory.
d.It signifies the beginning of your program.
35. Microsoft Visual C++, C++Builder, and gcc are examples of what?
a.C++ code.
b.Builders.
c.Free tools.
d.Compilers.
36.Where should you go for more information about C++?
a.You don't. This class told it all.
b.Many places: the Internet, books, C++ experts, more courses.
c.The compiler will give you all the information you need.
d.Microsoft will send somebody to your home.
avatar
b*i
5
版上有人收集满洲国邮票的吗?
avatar
d*g
6
就是那种开裂很大的
整个肚子都可以看见的那一种
第一次来发帖,多谢多谢
avatar
X*S
7
本人不懂网络技术。前两天家里刚刚装了网络,也加装了路由器,家里四台笔记本。设
定ROUTER是网络公司的人用我的笔记本设置的。星期一装的,结果星期三我的电脑就没
法上网,显示网络能连上但是LIMIT CONNETION, TOUCHPAD 也一样连不上,没办法,
把modem和ROUTER重启电源,结果ROUTER把密码自动改了(是那种自动设置的很长的密
码), 笔记本用改过的密码可以上了,但是到今天刚过两天,又上不去了,症状如下

1. 连CABLE可以上
2. 网络显示是CONNECTED的(但是右下角显示栏计算机图标不正常)
3. 网页打不开
4. wireless network connection status: 在ACTIVITY 看到, RECEIVED 不停的上升
,但是SENT没有,是0
我以为是计算机的问题,所以刚刚重装了系统,但是到头来还是一样的情况,不知道如
何是好。请懂网络的朋友帮帮忙,建议一下,看看是什么问题,被折腾死了。
avatar
a*r
8
中国地质大学(武汉)最近在努力发展行星科学学科,其“行星地质与化学”博士点已
获批准并已有学生毕业,已和亚利桑那州立大学等高校和机构建立合作关系,现正在
努力发展行星遥感、天体生物等学科,以配合中国近期或即将开展的月球、火星、金星
和小行星等探测计划任务,欢迎相关专业人员垂询。
http://careers.agu.org/jobs#/detail/4184502
请和广告中的联系人直接联系,而不要发到我的站内信箱。谢谢。
avatar
G*l
9
I have the exact same situation as you. But my atterney suggested me to
renew. Just in case...
avatar
A*t
10
哪种?

【在 b****i 的大作中提到】
: 版上有人收集满洲国邮票的吗?
avatar
R*o
11
foot locker

【在 d***g 的大作中提到】
: 就是那种开裂很大的
: 整个肚子都可以看见的那一种
: 第一次来发帖,多谢多谢

avatar
a*k
12
Why not call your ISP vendor to get this resolved?
Not really relevant to what this forum is about.

【在 X*S 的大作中提到】
: 本人不懂网络技术。前两天家里刚刚装了网络,也加装了路由器,家里四台笔记本。设
: 定ROUTER是网络公司的人用我的笔记本设置的。星期一装的,结果星期三我的电脑就没
: 法上网,显示网络能连上但是LIMIT CONNETION, TOUCHPAD 也一样连不上,没办法,
: 把modem和ROUTER重启电源,结果ROUTER把密码自动改了(是那种自动设置的很长的密
: 码), 笔记本用改过的密码可以上了,但是到今天刚过两天,又上不去了,症状如下
: :
: 1. 连CABLE可以上
: 2. 网络显示是CONNECTED的(但是右下角显示栏计算机图标不正常)
: 3. 网页打不开
: 4. wireless network connection status: 在ACTIVITY 看到, RECEIVED 不停的上升

avatar
w*o
13
Thank you for your reply. Are you doing the renewal by yourself?
avatar
n*7
14
I have one. do you want buy?
avatar
L*8
15
Same case here except that my EAD will be expired at the end of July. I did
renew last week by myself.

【在 w******o 的大作中提到】
: 等了5年,排期下个月到了,可是EAD半年内到期,是否再申请呢?求建议。
avatar
s*o
16
满洲国邮票都是垃圾。
avatar
z*i
17
你必须更新,假如不更新,那么在你没有拿到绿卡前,你的身份就会变黑.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。