【导语】“shanewu”通过精心收集,向本站投稿了9篇北电英文笔试题,小编在这里给大家带来北电英文笔试题,希望大家喜欢!
- 目录
篇1:北电英文笔试题
1. tranlation (mandatory)
cdma venders have worked hard to give cdma roaming capabilities via the development of ruim-essentially, a sim card for cdma handsets currently being deployed in china for new cdma operator china unicom. korean cellco ktf demonstrated earlier this year the ability to roam between gsm and cdma using such cards.however,only the card containing the user’s service data can roam-not the cdma handset or the user’s number (except via call forwarding).
2. programming (mandatory)
linked list
a. implement a linked list for integers,which supports the insertafter (insert a node after a specified node) and removeafter (remove the node after a specified node)methods;
b. implement a method to sort the linked list to descending order.
3. debugging (mandatory)
a. for each of the following recursive methods,enter y in the answer box if the method terminaters (assume i=5), otherwise enter n.static int f(int i){
return f(i-1)*f(i-1);
}
ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-1);}
}
ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-2);}
}
ansewr:
b. there are two errors in the following java program:
static void g(int i){
if(i==1){return;}
if(i%2==0){g(i/2);return;}
else {g(3*i);return;}
}
please correct them to make sure we can get the pri
nted-out result as below:
3 10 5 16 8 4 2 1
篇2:北电笔试题
北电笔试题
英文笔试题
1. Tranlation (Mandatory)
CDMA venders have worked hard to give CDMA roaming capabilities via the development of RUIM-essentially, a SIM card for CDMA handsets currently being deployed in China for new CDMA operator China Unicom. Korean cellco KTF demonstrated earlier this year the ability to roam between GSM and CDMA using such cards.However,only the card containing the user’s service data can roam-not the CDMA handset or the user’s number (except via call forwarding).
2. Programming (Mandatory)
Linked list
a. Implement a linked list for integers,which supports the insertafter (insert a node after a specified node) and removeafter (remove the node after a specified node)methods;
b. Implement a method to sort the linked list to descending order.
3. Debugging (Mandatory)
a. For each of the following recursive methods,enter Y in the answer box if the method terminaters (assume i=5), Otherwise enter N.static int f(int i){
return f(i-1)*f(i-1);
}
Ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-1);}
}
Ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-2);}
}
Ansewr:
b. There are two errors in the following JAVA program:
static void g(int i){
if(i==1){return;}
if(i%2==0){g(i/2);return;}
else {g(3*i);return;}
}
please correct them to make sure we can get the printed-out result as below:
3 10 5 16 8 4 2 1
篇3:广东北电研发考笔试题
广东北电研发考笔试题
广东北电-研发笔试题目如下:
加拿大著名电信设备制造商北电网络公司始建于一个世纪以前,在通讯发展进步历程中始终处于领袖地位,广东北电通信设备有限公司成立于1995年3月,是北电在华投资的核心公司之一,
1)笔试C++:考的比较难,一共4题,1个小时完成:
1.英译汉
做完花了15分钟,英语菜就一个字!
2.中序遍历一个二叉树,不能用递归
地球上的人都知道要压栈,但平时根本就是在用递归解决。当时现场比划,花了近30分钟才勉强写到试卷上,汗颜!如果后序更麻烦。
3.双向冒泡程序改错——3个错误
看来看去,只发现了2个错误。
4.回答程序所完成的.功能-共5问
题目有3页纸,都还没来的急看完,更别说写字了,收卷!
试卷一共13页纸,出来晕倒一大片!真不知道他在考什么,
以下是中大考试题目,要简单多了:
1.IS95标准,关于CDMA发展。汉译英
2.编程题
输入年月日格式yyyymmdd,判断是否是周末,只要求对判断。
3.分析题:有关移动通信编码,位图什么的,好像是输入一串数据,根据题目比编码方法 ,写出编码后结果,好像没多少人会做
2) 面试
1.多进程与多线程的区别与通信
2.测试方法
其他的笔试题目推荐:
2013产品设计笔试题 硬件常识笔试题 外贸进出口公司笔试题
篇4:英文笔试题
英文笔试题
1. tranlation (mandatory)
cdma venders have worked hard to give cdma roaming capabilities via the development of ruim-essentially, a sim card for cdma handsets currently being deployed in china for new cdma operator china unicom. korean cellco ktf demonstrated earlier this year the ability to roam between gsm and cdma using such cards.however,only the card containing the user’s service data can roam-not the cdma handset or the user’s number (except via call forwarding).
2. programming (mandatory)
linked list
a. implement a linked list for integers,which supports the insertafter (insert a node after a specified node) and removeafter (remove the node after a specified node)methods;
b. implement a method to sort the linked list to descending order.
3. debugging (mandatory)
a. for each of the following recursive methods,enter y in the answer box if the method terminaters (assume i=5), otherwise enter n.static int f(int i){
return f(i-1)*f(i-1);
}
ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-1);}
}
ansewr:
篇5:广东北电试题
英文笔试题
1. Translation (Mandatory)
CDMA venders have worked hard to give CDMA roaming capabilities via the development of RUIM-essentially, a SIM card for CDMA handsets currently being deployed in China for new CDMA operator China Unicom. Korean cellco KTF demonstrated earlier this year the ability to roam between GSM and CDMA using such cards. However, only the card containing the user’s service data can roam-not the CDMA handset or the user’s number (except via call forwarding).
2. Programming (Mandatory)
Linked list
a. Implement a linked list for integers, which supports the insert after (insert a node after a specified node) and remove after (remove the node after a specified node) methods;
b. Implement a method to sort the linked list to descending order.
3. Debugging (Mandatory)
a. For each of the following recursive methods, enter Y in the answer box if the method terminaters (assume i=5), Otherwise enter N.
static int f(int i){
return f(i-1)*f(i-1);
}
Ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-1);}
}
Ansewr:
static int f(int i){
if(i==0){return 1;}
else {return f(i-1)*f(i-2);}
}
Ansewr:
b. There are two errors in the following JAVA program:
static void g(int i){
if(i==1){return;}
if(i%2==0){g(i/2);return;}
else {g(3*i);return;}
}
please correct them to make sure we can get the printed-out result as below:
3 10 5 16 8 4 2 1
篇6:英文阅读笔试题
英文阅读笔试题
The Donkey and the Statue
A donkey was once chosen to carry a holy statue through the town.Crowds of peoplle came from all over the countryside to see the procession.They lined both sides of thee street,pushing and jostling to get nearer to the front.As the donkey went pass all the people bowen down to pray to the statue.some of them reached out their hands to touch it;others knelt down on their knees bu the roadd in front of it.The donkey began to feel he was avery impoutant animal.
'Fancy all these people showing me so much respect.'he thought,'I never knew I was so powerful.To think that all thes time I have been doing everything my master toldd me.' He decided to try out his power.
'I really don't feel like walking any further,'he said to himself.'I'lljust stannd here for a while and let the people admire me.'And he refused to take another step.The wack1A sharp blow fell on his back.
'Get along with you,'hissed his master angrily.'What do you mean by holding up the procession like this/'
'All in good time.'replied the donkey grandly.'I am just giving these good people a chance to look at me.'His master began to laugh loudly.
QUESTIONS
1.Summarize the story within 50 words by using at least 8 key words from the passsage.
2.Why did this master laugh/
3.What do you learn from this story/And how to utilize in your life/
篇7:IBM英文笔试题
It consists of number series.In some institutes alphabetical series is given instead of number series.Iam having number series so iam sending that.Please go through tha alphabetical tests also.
1. 30,28,25,20,34,28,?
a:21
2 4,8,16,32,64,128,?
a:256
3. 8,16,24,32,40,48,?
a:56
4. 13,11,14,12,15,13,?
a:16
5. 6,18,36,108,216,648,?
a:1296
6 4,4,8,8,16,16,?
a:32
7. 2,6,18,54,162,486,?
a:1458
8 4,20,35,49,62,74,?
a:85
9. 10,18,15,23,20,28,?
a:25
10 . 4,10,8,14,12,18,?
a:16
11 .10,15,12,17,14,10,?
a:16
part 2
consists of non-verbal reasoning (figures). So it is impossible for me to send those.(25 questions)
part 3 (quantitative)
篇8:机械类笔试题英文
机械类笔试题(英文)
德尔福集团是全球最大的汽车系统和零部件生产制造商,
1,Briefly describe what is blanking(cutting),forming,coining and embossing in stamping process.
2,What is metal clading?
3,What is the purpose of adding glass fiber to thermoplastic material?
4,In contrast with metal and thermoplastic material,which has a higher coefficient of thermal expansion(CTE).
5,The most suitable material for a integral hinge design(typical plastic thickness=0.25 to 0.5mm at hinge)
6,Can a bending load makes both compressive and tensile stress in a member?
7,What is the design criteria used in plastics catch/snap?
8,What is FEA?
9,Why is natural frequency important in vibration analysis?
10,What is the deflection equation of a cantilever beam fixed at one edge?
篇9:英文KPMG笔试题
“The big economic difference between nuclear and fossil-fuelled power sta tions is that nuclear reactors are more expensive to build and decommission, but cheaper to sun. So disputes over the relative efficiency of the two systems revolve not just around prices of coal and uranium today and tomorrow, but also around the way in which future income should be compared with current income.”
1. The main difference between nuclear and fossil-fuelled power stations is an economic one.
TRUE
UNTRUE
CANNOT SAY
2. The price of coal is not relevant to discussions about the relative efficiency of nuclear reactors.
TRUE
UNTRUE
CANNOT SAY
3. If nuclear reactors were cheaper to build and decommission than fossilfuelled power stations, they would definitely have the economic advantage. my.chinahrlab.com
TRUE
UNTRUE
CANNOT SAY
“At any given moment we are being bombarded by physical and psychologicalstimuli competing for our attention. Although our eyes are capable of handling more than 5 million bits of data per second, our brain are capable of interpreting only about 500 bits per second. With similar disparities between each of the other senses and the brain, it is easy to see that we must select the visual, auditory, or tactile stimuli that we wish to compute at any specific tim e.”
4. Physical stimuli usually win in the competition for our attention.
TRUE
UNTRUE
CANNOT SAY
5. The capacity of the human brain is sufficient to interpret nearly all the stimuli the senses can register under optimum conditions.
TRUE
UNTRUE
CANNOT SAY
6. Eyes are able to cope with a greater input of information than ears.
TRUE
UNTRUE
CANNOT SAY
VERBAL ANSWER:
(1)C CANNOT SAY
(2)B UNTRUE
(3)A TRUE
(4)C CANNOT SAY
(5)B UNTRUE
★ 英文阅读笔试题
★ 行政类笔试题
★ 某公司部分笔试题
★ 测试工程师笔试题
★ 团体保险笔试题
★ 融资类笔试题
★ 笔试题统计人数
北电英文笔试题(整理9篇)




