您的当前位置:首页正文

各大公司面试试题

2023-12-16 来源:步旅网
公司面试题

默认分类 2009-08-29 12:32:23 阅读119 评论0 字号:大中小

戴尔

I.Choose one question and write down the trouble shooting steps in English ( 4-5 steps )

1.Customer report his computer cannot start after sudden power lost. How will you trouble shoot and find out the

cause of the failure.

2.One computer was used normally last day, but today, the user cannot connect to internet via dial-up networking.

3.Customer complain the system send out great noise. What‟s the detail action to identify the faulty part?

4.My computer was suddenly disconnected from LAN, how to trouble shoot?

5.My computer was hung up. After reboot, only one cursor blinked on the upper-left corner. How to fix this problem.

II. Reading and translation:

Passage 1.

Customer called in and reported the battery weren‟t charging, System LED indicator was in yellow.

1.Suggested customer remove the battery from the battery bay by sliding the latch at the bottom of Notebook.

Checked the battery power level by pressing the check button on the battery. It indicated no power.

2.Suggested customer remove the CD ROM off the Media bay, then plug the Battery to the media bay, it was still

same result.

3.Suggested customer try with other battery, in the battery bay and media bay, it was ok. Battery could be charged.

4.Requested customer provide the DSN number from the fail battery. CN-05H980-69502-21U-01GB.

Informed customer that we would send a replaced battery to her.

Passage 2.

Customer bought a Notebook 20 day ago, then discovered that when she adjusted the Brightness of the LCD, the LCD

would turn to very dim. She must reboot the Notebook few times before the LCD might display normally.

1.Suggested her try gently apply pressure above the keyboard near the LEDS and power button.

2.Suggested her swivel the LCD back and forth and lightly tap the plastic back of LCD.

3.Suggested her gently apply pressure on the bezel surrounding the screen. the problem persisted, after these testing.

4.Requested customer to update BIOS and alter the LCD Brightness control setting in the BIOS. After checking BIOS

the problem persisted.

I told customer we would have engineer onsite replace the LCD Panel.

Computer communications

Different kinds of computers use different methods, or protocols, to communicate with each other. Macintosh

computers use the AppleTalk protocol. Macintosh as well as PCs can use TCP/IP to share information on the Internet. Some PCs require a Network Operating System (NOS) to communicate. For example, Novell Netware is a popular NOS with PC users.

意法半导体软件试题

A Test for The C Programming Language

I. History

1. C was originally designed for and implemented on the (what) operating system on the DEC PDP-11, by (who) .

2. The most recently approved ANSI/ISO C standard was issued in (when) , and single line comments notation “//” is or

isn‟t a feature of C89.

II. Syntax and Semantics

1. In a runtime C program, auto variables are stored in , static variables are stored in , and function parameters are stored

in .

a. stack b. heap c. neither stack nor heap

2. The statement “extern int x;” is a , and the keyword extern is used during .

a. variable declaration b. variable definition

c. compilation time d. runtime

3. There is a complicated declaration: void ( * signal (int, void (*)(int)) ) (int);

If a statement “typedef void (*p) (int);” is given, please rewrite this complicated declaration.

4. The following code is a segment of C program.

..........

void func(int *p)

{...........}

..........

main()

{

int num=0;

.........

func(&num);

........

}

..........

Here, the function argument “&num” is passed .

a. by value b. by reference

III. Practice

Create a tree, which has h (h>0) layers, and its each node has w (w>0) sub-nodes.

Please complete the following incomplete solution.

#include

#include

struct tree{

char info;

p_sub; //link to sub-nodes

};

// allocate memory and initiate

void dnode ( struct tree* tmp )

{

= malloc( sizeof (struct tree) );

= 0x41;

= NULL;

}

struct tree *dtree (struct tree* subtree, int height, int width)

{

int i;

if ( !subtree ) //if necessary, allocte memory for subtree

denode(subtree);

if ( height == 1 )

return subtree;

else if ( height == 2 ) {

struct tree *leaf = NULL;

for ( i=0; idenode ( );

;

leaf = NULL;

}

return subtree;

}

else {

for ( i=0; i}

return subtree;

}

}

main()

{

.........

struct tree *root = NULL;

root = dtree (root, h, w) ; // h and w are integers get from input

.........

}

Sony笔试题

1.完成下列程序

*

*.*.

*..*..*..

*...*...*...*...

*....*....*....*....*....

*.....*.....*.....*.....*.....*.....

*......*......*......*......*......*......*......

*.......*.......*.......*.......*.......*.......*.......*.......

#include

#define N 8

int main()

{

int i;

int j;

int k;

---------------------------------------------------------

| |

| |

| |

---------------------------------------------------------

return 0;

}

2.完成程序,实现对数组的降序排序

#include

void sort( );

int main()

{

int array[]={45,56,76,234,1,34,23,2,3}; //数字任//意给出

sort( );

return 0;

}

void sort( )

{

____________________________________

| |

| |

|-----------------------------------------------------|

}

3.费波那其数列,1,1,2,3,5……编写程序求第十项。可以用递归,也可以用其他方法,但要说明你选择的理由。

#include

int Pheponatch(int);

int main()

{

printf(\"The 10th is %d\

return 0;

}

int Pheponatch(int N)

{

--------------------------------

| |

| |

--------------------------------

}

4.下列程序运行时会崩溃,请找出错误并改正,并且说明原因。

#include

#include

typedef struct{

TNode* left;

TNode* right;

int value;

} TNode;

TNode* root=NULL;

void append(int N);

int main()

{

append(63);

append(45);

append(32);

append(77);

append(96);

append(21);

append(17); // Again, 数字任意给出

}

void append(int N)

{

TNode* NewNode=(TNode *)malloc(sizeof(TNode));

NewNode->value=N;

if(root==NULL)

{

root=NewNode;

return;

}

else

{

TNode* temp;

temp=root;

while((N>=temp.value && temp.left!=NULL) || (N))

{

while(N>=temp.value && temp.left!=NULL)

temp=temp.left;

while(Ntemp=temp.right;

}

if(N>=temp.value)

temp.left=NewNode;

else

temp.right=NewNode;

return;

}

}

华为笔试题

1.请你分别画出OSI的七层网络结构图和TCP/IP的五层结构图。

2.请你详细地解释一下IP协议的定义,在哪个层上面?主要有什么作用?TCP与UDP呢?

3.请问交换机和路由器各自的实现原理是什么?分别在哪个层次上面实现的?

4.请问C++的类和C里面的struct有什么区别?

5.请讲一讲析构函数和虚函数的用法和作用。

6.全局变量和局部变量有什么区别?是怎么实现的?操作系统和编译器是怎么知道的?

7.8086是多少位的系统?在数据总线上是怎么实现的?

联想笔试题

1.设计函数 int atoi(char *s)。

2.int i=(j=4,k=8,l=16,m=32); printf(“%d”, i); 输出是多少?

3.解释局部变量、全局变量和静态变量的含义。

4.解释堆和栈的区别。

5.论述含参数的宏与函数的优缺点。

普天C++笔试题

1.实现双向链表删除一个节点P,在节点P后插入一个节点,写出这两个函数。

2.写一个函数,将其中的\都转换成4个空格。

3.Windows程序的入口是哪里?写出Windows消息机制的流程。

4.如何定义和实现一个类的成员函数为回调函数?

5.C++里面是不是所有的动作都是main()引起的?如果不是,请举例。

6.C++里面如何声明const void f(void)函数为C程序中的库函数?

7.下列哪两个是等同的

int b;

A const int* a = &b;

B const* int a = &b;

C const int* const a = &b;

D int const* const a = &b;

8.内联函数在编译时是否做参数类型检查?

void g(base & b){

b.play;

}

void main(){

son s;

g(s);

return;

}

大唐电信

DTT笔试题

考试时间一小时,第一部分是填空和选择:

1.数列6,10,18,32,“?”,问“?”是几?

2.某人出70买进一个x,80卖出,90买回,100卖出,这桩买卖怎么样?

3.月球绕地球一圈,至少要多少时间?

4.7个人用7小时挖了7米的沟,以同样的速度在50小时挖50米的沟要多少人?

5.鱼头长9,鱼尾等于鱼头加半个鱼身,鱼身等于鱼头加鱼尾,问鱼全长多少?

6.一个小姐买了一块手表,回家发现手表比她家的表慢了两分钟,晚上看新闻的时候又发现她家的表比新闻里的时间慢了

两分钟,则 。

A 手表和新闻里的时间一样

B 手表比新闻里的时间慢

C 手表比新闻里的时间快

7.王先生看到一则招聘启事,发现两个公司除了以下条件不同外,其他条件都相同

A 半年年薪50万,每半年涨5万

B 一年年薪100万,每一年涨20万

王先生想去一家待遇比较优厚的公司,他会去哪家?

10.问哪个袋子里有金子?

A袋子上的标签是这样写的:B袋子上的话是对的,金子在A袋子。

B袋子上的标签是这样写的:A袋子上的话是错的,金子在A袋子里。

11.3个人住酒店30块钱,经理找回5块钱,服务生从中藏了2块钱,找给每人1块钱,3×(101)+2=29,问

这是怎么回事?

12.三篇写作,均为书信形式。

(1)一片中文的祝贺信,祝贺某男当了某公司xx

(2)两篇英文的,一是说有事不能应邀,派别人去;另一篇是讨债的,7天不给钱就走人(主要考business letter格式)。

大唐面试试题

1.什么是中断?中断发生时CPU做什么工作?

2.CPU在上电后,进入操作系统的main()之前必须做什么工作?

3.简述ISO OSI的物理层Layer1,链路层Layer2,网络层Layer3的任务。

4.有线电话和无线电话有何区别?无线电话特别需要注意的是什么?

5.软件开发五个主要step是什么?

6.你在开发软件的时候,这5个step分别占用的时间百分比是多少?

7.makefile文件的作用是什么?

8.UNIX显示文件夹中,文件名的命令是什么?能使文件内容显示在屏幕的命令是什么?

9.(选做)手机用户在从一个基站漫游到另一个基站的过程中,都会发生什么?

网通笔试题

选择题(每题5分,只有一个正确答案)

1.中国1号信令协议属于 的协议。

A ccs B cas C ip D atm

2.isdnpri协议全称是 。

A 综合业务模拟网基速协议

B 综合业务模拟网模拟协议

C 综合业务数字网基率协议

D 综合业务数字网基次协议

3.路由协议中, 协议是用距离作为向量的。

A ospf B bgp C is-is D rip

4.中国智能网中,ssp与scp间最上层的ss7协议是 。

A incs B is41b C is41c D inap

5.dtmf全称是 。

A 双音多频 B多音双频 C多音三频 D三音多频

6.计算机的基本组成部分中,不包含下面设备的是 。

A cpu B输入设备 C存储器 D接口

7.脉冲编码调制的简称是 。

A pcm B pam C (delta)M D atm

8.普通电话线接口专业称呼是 。

A rj11 B rj45 C rs232 D bnc

9.现有的公共数据网都采用 。

A电路交换技术 B报文交换技术

C语音插空 D分组交换

10.ss7协议中的制止市忙消息简写为 。

A stb B slb C sub D spb

简答题(每题10分)

1.简述普通电话与IP电话的区别。

2.简述随路信令与公路信令的根本区别。

3.说明掩码的主要作用。

4.ss7协议中,有三大要素决定其具体定位,哪三大要素?

5.描述ss7的基本通话过程。

6.简述通信网的组成结构。

7.面向连接与面向非连接各有何利弊?

8.写出爱尔兰的基本计算公式。

9.数据网主要有哪些设备?

10.中国一号协议是如何在被叫号码中插入主叫号码的?

东信笔试题目

笔试:30分钟。

1.压控振荡器的英文缩写。

2.动态随机存储器的英文缩写。

3.选择电阻时要考虑什么?

4.单片机上电后没有运转,首先要检查什么?

5.计算机的基本组成部分及其各自的作用。

6.怎样用D触发器、与或非门组成二分频电路?

中软融鑫笔试题

1.关于工作

(1) 你对未来的工作生活是怎样憧憬的?为何选择我公司作为求职公司?

(2)请用不超过30个字给出一个最能让我们录用你的理由。

(3)你认为比较理想的工作环境是怎样的?

(4)你个人的中长期的职业发展目标是怎样的?

2.关于社会

(1)如果你是杨利伟,你在太空中向祖国人民说的第一句话是什么?

(2)宋美龄女士于2003年10月谢世,对这位著名人士在西安事变中的态度和作用,你是如何看待的?(不超过300字)

(3)北京政府颁布的对拾金不昧者,失主要奖励相当于财产20%奖金的公告,你是如何看的?

(4)如果给你50万元人民币,你将会用这些钱做什么?

(5)在美国,男、女卫生间(厕所)的正确称呼为什么?请用英语写出答案。

(6)你认为麦当劳是世界最大的汉堡生产商吗?如果不是,请说出你的观点。

3.教育背景

(1)你受过哪些正规的教育或培训?(自高中毕业起)

(2)在校期间进行过哪些社会活动?

Delphi笔试题目

机械类笔试试题

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?

EE笔试试题

1. Name 3 Vehicle Buses.

2. Name 2 possible sources of Electromagnetic interference on Electronics Circuit ASM.

3. Wavelength for 12MHz frequency signal is____

4. Name 2 important considerations for car radio performan -ce related to audio signal processing under multipath

condition?

5. What is the typical FM receiver RF signal strength to achieve 30dB S/N for car radio?

6. When a radio is tuned to 98.1 MHz & with a LO of 108.8 MHz, what is the image frequency?

7. For a system with a matched impedance, what is the Reflection Coefficient and SWR?

8. Which property of the output capacitor is the primary cause of Low Drop Out(LDO) regulator loop instability?

(1)Equivalent series resistance(ESR)

(2)Effective series inductance(ESL)

(3)Capacitance value

(4)Dielectric material

9. The switching regulator is capable of:

(1)Higher power conversion efficiency

(2)Providing an output voltage that is higher than the input

(3)Generating an output boltage oppsite in polarity to the input

(4)All of the above

10. A linear regulator op Vin(max) = 10v, Vout(min) = 4.8v, Iout(max) = 2.5mA, Iq(max) = 2.5mA, Ta(max) = 8.5摄氏度,

The regulator is available in 3 packages.Each package has the following thermal characteristics:

Package Rja(摄氏度/W) Rjc(摄氏度/W)

SO14 125 30

D1P8 100 52

Choose the most suitable package to handle the power dissipation requirement without a heat sink and why.

软件笔试题

1. How do you code an infinite loop in C?

2. Volatile:

(1)What does the keyword volatile mean? Give an example

(2)Can a parameter be both const and volatile? Give an example

(3)Can a pointer be volatile? Give an example

3. What are the values of a, b, and c after the following instructions:

int a=5, b=7, c;

c = a+++b;

4. What do the following declarations mean?

(1)const int a;

(2)int const a;

(3)const int *a;

(4)int * const a;

(5)int const * a const;

5. Which of the following statements describe the use of the keyword static?

(1)Within the body of a function: A static variable maintains its value between function revocations

(2)Within a module: A static variable is accessible by all functions within that module

(3)Within a module: A static function can only be called by other functions within that module

6. Embedded systems always require the user to manipulate bits in registers or variables. Given an integer variable a, write

two code fragments.

The first should set bit 5 of a. The second shnuld clear bit 5 of a. In both cases, the remaining bits should be unmodified.

7. What does the following function return?

char foo(void)

{

unsigned int a = 6;

iht b = -20;

char c;

(a+b > 6) ? (c=1): (c=0);

return c;

}

8. What will be the output of the following C code?

main()

{

int k, num= 30;

k =(num > 5 ? (num <=10 ? 100:200): 500);

printf(“%d”, k);

}

9. What will the following C code do?

int *ptr;

ptr =(int *)Ox67a9;

*ptr = Oxaa55;

10. What will be the output of the follow C code?

#define product(x) (x*x)

main()

{

int i = 3, j, k;

j = product(i++);

k = product(++i);

printf(“%d %d”,j,k);

}

11. Simplify the following Boolean expression

!((i ==12) || (j > 15))

12. How many flip-flop circuits are needed to divide by 16?

13. Provides 3 properties that make an OS, a RTOS?

14. What is pre-emption?

15. Assume the BC register value is 8538H, and the DE register value is 62A5H.Find the value of register BC after the

following assembly operations:

MOV A,C

SUB E

MOV C,A

MOV A,B

SBB D

MOV B,A

16. In the Assembly code shown below

LOOP: MVI C,78H

DCR C

JNZ LOOP

HLT

How many times is the DCR C Operation executed?

17. Describe the most efficient way (in term of execution time and code size) to divide a number by 4 in assembly language

18. what value is stored in m in the following assembly language code fragment if n=7?

LDAA #n

LABEL1: CMPA #5

BHI L3

BEQ L2

DECA

BRA L1

LABEL2: CLRA

LABEL3: STAA #m

19. What is the state of a process if a resource is not available?

#define a 365*24*60*60

20. Using the #define statement, how would you declare a manifest constant that returns the number of seconds in a year?

Disregard leap years in your answer.

21. Interrupts are an important part of embedded systems. Consequently, many compiler vendors offer an extension to

standard C to support interrupts. Typically, the keyword is __interrupt. The following routine (ISR). Point out problems in the code.

__interrupt double compute_area (double radius)

{

double area = PI * radius * radius;

printf(“\\nArea = %f”, area);

return area;

}

Hongkong Bank笔试题

1. Please state why you chose to follow these activities and how they have contributed to your personal development. You

may wish to give details of your role whether anyone else was involved and any difficulties you encountered.

2. Please state how you have benefited from your work experience.

3. How much is your present monthly salary including allowances.

4. Do you need to compensate your present employer if you resign? If so, please give details.

5. Other than academic success, what has been your greatest achievement to date? What do you see as your personal

strength, why?

6. Please state why the position you have applied for is appropriate for you; Why you have selected HongKong Bank and

what your career objectives are.

A.T. Keaney笔试题

1. Describe your greatest achievement in the past 4-5 years?

2. What are your short-term and long-term career objectives? What do you think is the most ideal job for you?

3. Why do you want to join A.T kearney? What do you think you can contribute to A.T kearney?

4. Why are you applying for a position at Arthur Anderson?

5. What are your expectations of our firm.

6. Describe your hobbies and interests.

Shell company笔试题

1. How wold your colleagues/classmates describe you in five words? On what evidence would they base this assessment.

2. If you are asked to recruit the best graduates for shell, what would you do to attract them? What would you do to select

them?

3. Please describe a new activity that you have initiated and implemented.Please highlight your role out.

4. Please describe your outstanding non-academic achieve- ments.

5. Please describe any other significant activities you have been involved in including organizing people.

6. Imagine that Shell has found oil in an inland province of China, near a large river. You are responsible for planning how

to transport the oil to the coast thousands of miles away. What are the main issue you would consider, and what would you do?

大唐电信

DTT笔试题

考试时间一小时,第一部分是填空和选择: 1.数列6,10,18,32,“?”,问“?”是几?

2.某人出70买进一个x,80卖出,90买回,100卖出,这桩买卖怎么样? 3.月球绕地球一圈,至少要多少时间?

4.7个人用7小时挖了7米的沟,以同样的速度在50小时挖50米的沟要多少人? 5.鱼头长9,鱼尾等于鱼头加半个鱼身,鱼身等于鱼头加鱼尾,问鱼全长多少? 6.一个小姐买了一块手表,回家发现手表比她家的表慢了两分钟,晚上看新闻的时候 又发现她家的表比新闻里的时间慢了两分钟,则 。 A 手表和新闻里的时间一样 B 手表比新闻里的时间慢 C 手表比新闻里的时间快

7.王先生看到一则招聘启事,发现两个公司除了以下条件不同外,其他条件都相同 A 半年年薪50万,每半年涨5万 B 一年年薪100万,每一年涨20万

王先生想去一家待遇比较优厚的公司,他会去哪家? 10.问哪个袋子里有金子?

A袋子上的标签是这样写的:B袋子上的话是对的,金子在A袋子。 B袋子上的标签是这样写的:A袋子上的话是错的,金子在A袋子里。

11.3个人住酒店30块钱,经理找回5块钱,服务生从中藏了2块钱,找给每人1块钱, 3×(10&1)+2=29,问这是怎么回事? 12.三篇写作,均为书信形式。

(1)一片中文的祝贺信,祝贺某男当了某公司xx

(2)两篇英文的,一是说有事不能应邀,派别人去;另一篇是讨债的,7天不给钱就

走人(主要考business letter格式)。 大唐面试试题

1.什么是中断?中断发生时CPU做什么工作?

2.CPU在上电后,进入操作系统的main()之前必须做什么工作?

3.简述ISO OSI的物理层Layer1,链路层Layer2,网络层Layer3的任务。 4.有线电话和无线电话有何区别?无线电话特别需要注意的是什么? 5.软件开发五个主要step是什么?

6.你在开发软件的时候,这5个step分别占用的时间百分比是多少? 7.makefile文件的作用是什么?

8.UNIX显示文件夹中,文件名的命令是什么?能使文件内容显示在屏幕的命令是什么 ?

9.(选做)手机用户在从一个基站漫游到另一个基站的过程中,都会发生什么? 网通笔试题

选择题(每题5分,只有一个正确答案) 1.中国1号信令协议属于 的协议。 A ccs B cas C ip D atm 2.isdnpri协议全称是 。 A 综合业务模拟网基速协议 B 综合业务模拟网模拟协议 C 综合业务数字网基率协议 D 综合业务数字网基次协议

3.路由协议中, 协议是用距离作为向量的。 A ospf B bgp C is-is D rip

4.中国智能网中,ssp与scp间最上层的ss7协议是 。 A incs B is41b C is41c D inap 5.dtmf全称是 。

A 双音多频 B多音双频 C多音三频 D三音多频 6.计算机的基本组成部分中,不包含下面设备的是 。 A cpu B输入设备 C存储器 D接口 7.脉冲编码调制的简称是 。 A pcm B pam C (delta)M D atm 8.普通电话线接口专业称呼是 。 A rj11 B rj45 C rs232 D bnc 9.现有的公共数据网都采用 。 A电路交换技术 B报文交换技术 C语音插空 D分组交换

10.ss7协议中的制止市忙消息简写为 。 A stb B slb C sub D spb 简答题(每题10分)

1.简述普通电话与IP电话的区别。 2.简述随路信令与公路信令的根本区别。 3.说明掩码的主要作用。

4.ss7协议中,有三大要素决定其具体定位,哪三大要素? 5.描述ss7的基本通话过程。

6.简述通信网的组成结构。

7.面向连接与面向非连接各有何利弊? 8.写出爱尔兰的基本计算公式。 9.数据网主要有哪些设备?

10.中国一号协议是如何在被叫号码中插入主叫号码的? 东信笔试题目 笔试:30分钟。

1.压控振荡器的英文缩写。 2.动态随机存储器的英文缩写。 3.选择电阻时要考虑什么?

4.单片机上电后没有运转,首先要检查什么? 5.计算机的基本组成部分及其各自的作用。 6.怎样用D触发器、与或非门组成二分频电路? 中软融鑫笔试题 1.关于工作

(1)你对未来的工作生活是怎样憧憬的?为何选择我公司作为求职公司? (2)请用不超过30个字给出一个最能让我们录用你的理由。 (3)你认为比较理想的工作环境是怎样的? (4)你个人的中长期的职业发展目标是怎样的? 2.关于社会

(1)如果你是杨利伟,你在太空中向祖国人民说的第一句话是什么?

(2)宋美龄女士于2003年10月谢世,对这位著名人士在西安事变中的态度和作用,你 是如何看待的?(不超过300字)

(3)北京政府颁布的对拾金不昧者,失主要奖励相当于财产20%奖金的公告,你是如 何看的?

(4)如果给你50万元人民币,你将会用这些钱做什么?

(5)在美国,男、女卫生间(厕所)的正确称呼为什么?请用英语写出答案。 (6)你认为麦当劳是世界最大的汉堡生产商吗?如果不是,请说出你的观点。 3.教育背景

(1)你受过哪些正规的教育或培训?(自高中毕业起) (2)在校期间进行过哪些社会活动? Delphi笔试题目 机械类笔试试题

1. Briefly describe what is blanking(cutting), forming, coining and emboss ing 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 co efficient 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 membe r?

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 ?

EE笔试试题

1. Name 3 Vehicle Buses.

2. Name 2 possible sources of Electromagnetic interference on Electronics Circuit ASM.

3. Wavelength for 12MHz frequency signal is____

4. Name 2 important considerations for car radio performan -ce related to audio signal processing under multipath condition?

5. What is the typical FM receiver RF signal strength to achieve 30dB S/N for car radio?

6. When a radio is tuned to 98.1 MHz & with a LO of 108.8 MHz, what is the image frequency?

7. For a system with a matched impedance, what is the Reflection Coefficie nt and SWR?

8. Which property of the output capacitor is the primary cause of Low Drop Out(LDO) regulator loop instability? (1)Equivalent series resistance(ESR) (2)Effective series inductance(ESL) (3)Capacitance value (4)Dielectric material

9. The switching regulator is capable of: (1)Higher power conversion efficiency

(2)Providing an output voltage that is higher than the input (3)Generating an output boltage oppsite in polarity to the input (4)All of the above

10. A linear regulator op Vin(max) = 10v, Vout(min) = 4.8v, Iout(max) = 2. 5mA, Iq(max) = 2.5mA, Ta(max) = 8.5摄氏度,The regulator is available in 3 pac kages.Each package has the following thermal characteristics: Package Rja(摄氏度/W) Rjc(摄氏度/W) SO14 125 30 D1P8 100 52

Choose the most suitable package to handle the power dissipation requireme nt without a heat sink and why. 香港电信笔试题

1. Based on your understanding of the following java related technologies: servlets, JavaServerPage, JavaBeans, Enterprise JavaBeans, how do you think t hese technologies are work together or are applied in the development of an in ternet-based application (25marks).

2. In your opinion ,what do you think are the advantages or benefitsof usi ng an object-oriented approach to software development? how do you think those benefits can be achieved or realized? (15marks).

3. In designing your classes, given the choice between inheritance and agg regation which do you choose (15marks).

4. How would you work around the lack of multiple inheritance feature in J ava (15marks).

5. What would you consider to be the hardest part of OO analysis and desig n and why (10marks).

6. How do you keep yourself up to date with the latest in software techono gy, especially in the field of software development (10marks).

7. What si your career aspiration? Why do you think this E-Commerce Develo pment Center can help you in achieving your career goals (10marks) (1hr, answe r in English). L\\„OR&AL的笔试题

1. Would you please describe yourself in 3-4 lines? (limited in 500 words) 2. Could you tell us why we should choose you as a Loreal Person, and what makes you unique? (limited in 500 words)

3. What is your short-term and long-term career plan? (limited in 500 word s)

4. What kind of group activities are you interested in and what type of ro le do you often play? (limited in 500 words)

5. Please use one sentence to give a definition of „Beauty‟, and describ e the most beautiful thing in your life. (limited in 500 words) 维尔VERITAS软件笔试题

1. A class B network on the internet has a subnet mask of 255.255.240.0, w hat is the maximum number of hosts per subnet . a. 240 b. 255 c. 4094 d. 65534

2. What is the difference: between o(log n) and o(log n^2), where both log arithems have base 2 .

a. o(log n^2) is bigger b. o(log n) is bigger c. no difference

3. For a class what would happen if we call a class‟s constructor from wi th the same class‟s constructor . a. compilation error b. linking error c. stack overflow d. none of the above 4. “new” in c++ is a: .

a. library function like malloc in c b. key word c. operator d. none of the above

5. Which of the following information is not contained in an inode . a. file owner b. file size c. file name d. disk address

6. What‟s the number of comparisons in the worst case to merge two sorted lists containing n elements each . a. 2n b.2n-1 c.2n+1 d.2n-2

7. Time complexity of n algorithm T(n), where n is the input size ,is T(n)

=T(n-1)+1/n if n>1 otherwise 1 the order of this algorithm is . a. log (n) b. n c. n^2 d. n^n

8. The number of 1‟s in the binary representation of 3*4096+ 15*256+5*16+ 3 are .

a. 8 b. 9 c. 10 d. 12 百威啤酒(武汉公司) 1,为什么申请来百威? 2,将来有什么打算? 3,有没有社会活动经历? 4,有没有当众演讲的经历? 5,经常使用那些软件? 6,喜欢哪些课程?

7,你认为工作中的什么因素对你来说最重要? 8,什么时候可以来上班?可以在这里工作多久? 9,八点上班,要加班和出差,能不能做到? 星巴克

1、 您是一家咖啡店的店经理,你发现店内同时出现下列状况:

1)许多张桌子桌面上有客人离去后留下的空杯未清理,桌面不干净待整理。 2)有客人正在询问店内卖哪些品种,他不知如何点咖啡菜单。 3)已有客人点完成咖啡,正在收银机旁等待结帐。 4)有厂商正准备要进货,需要店经理签收。

请问,针对上述同时发生的情况,你要如何排定处理之先后顺序,为什么

2、有一位甲员工脾气不好以致在前三家店因为与店内其他同事相处不佳而屡屡调动 ,现在甲被调到你的店里面来,请问身为店经理的你,将如何应对??

3、你是店经理,本周五结帐后,发现门市总销售额较上周五减少30%,请问可能原因 会是哪几种,各原因如何应对? 凹凸电子软件笔试题

1. Select ONE of the following projects to discuss:

a. Signal Filtering: You are given a sampled realtime waveform consisting of a sensor reading mixed with highly periodic impulses and high frequency noi se.The desired output is the realtime filtered sensor signal with the impulses and noise removed, and a readout of the impulse period. The FFT may not be us ed.

b. Interrupt Processing.A headware register consisting of eight independen t edge triggered latches is used to record external asynchronous interrupt req uests. When any of the request bits are latched, a software interrupt is gener ated. The software may read the latch to see which interrupt(s) occurred. Writ ing a one to any latch bit will clear the latch. How does that software assure that no interrupt request is ever missed?

c. User Interface: a prototype MP3 player interface consisting of a playli st display and a few control buttons is given to you. How would you make the i nterface “skinnable”,with user selected graphics, options, and control butto n placement?

Each project description is incomplete. What questions would you ask to co

mpletely specify the project? What development tools would you prefer to use? What algorithm /data structures/design would you use?

2. What program(s) have you coded for you own enjoyment (not part of a sch ool project,not for pay). What type of software project would you most enjoy w orking on?

3. Have you participated in a team programming project? What is the hardes t part of programming as a team, as opposed to programming alone? 友立资讯笔试题目

1.一堆鸡蛋,3个3个数剩余2个,5个5个数剩余1个,7个7个数剩余3个,问这堆鸡蛋 最少有多少个?并给出通解。 2.列举五岳,及其所在省份。 3.何为四书。

4.按顺序默写24节气。 5.默写于谦的《吟石灰》。 6.英语翻译约300字。 7.作文一篇:求职有感。 普华永道PWC笔试题目(作文) 1.最近10年来中国媒体的变化。

2.你认为发展汽车产业和公共交通哪个更重要? 3.如何理解风险投资?

4.如何理解广告的消极作用和积极作用? Avant! 微电子EE笔试题

1.名词解释:VLSI,CMOS,EDA,VHDL,Verilog,HDL,ROM,RAM,DRC,LVS。 2.简述CMOS工艺流程。

3.画出CMOS与非门的电路,并画出波形图简述其功能。 4.画出N沟道增强型MOSFET的剖面图。 5.简述ESD和latch-up的含义。 6.简述三极管与MOS管的区别。 7.简述MOORE模型和MEALY模型。 8.简述堆栈与队列的区别。 奇码数字信息有限公司笔试题

1.画出NMOS的特性曲线(指明饱和区,截至区,线性区,击穿区和C-V曲线) 2.2.2um工艺下,Kn=3Kp,设计一个反相器,说出器件尺寸。 3.说出制作N-well的工艺流程。 4.雪崩击穿和齐纳击穿的机理和区别。

5.用CMOS画一个D触发器(clk,d,q,q-)。 德勤笔试题

五个人来自不同地方,住不同房子,养不同动物,吸不同牌子香烟,喝不同饮料,喜 欢不同食物。根据以下线索确定谁是养猫的人。

(1)红房子在蓝房子的右边,白房子的左边(不一定紧邻) (2)黄房子的主人来自香港,而且他的房子不在最左边。 (3)爱吃比萨饼的人住在爱喝矿泉水的人的隔壁。 (4)来自北京的人爱喝茅台,住在来自上海的人的隔壁。 (5)吸希尔顿香烟的人住在养马的人右边隔壁。

(6)爱喝啤酒的人也爱吃鸡。 (7)绿房子的人养狗。

(8)爱吃面条的人住在养蛇的人的隔壁。

(9)来自天津的人的邻居(紧邻)一个爱吃牛肉,另一个来自成都。 (10)养鱼的人住在最右边的房子里。

(11)吸万宝路香烟的人住在吸希尔顿香烟的人和吸“555”香烟的人的中间(紧邻) (12)红房子的人爱喝茶。

(13)爱喝葡萄酒的人住在爱吃豆腐的人的右边隔壁。

(14)吸红塔山香烟的人既不住在吸健牌香烟的人的隔壁,也不与来自上海的人相邻 。

(15)来自上海的人住在左数第二间房子里。 (16)爱喝矿泉水的人住在最中间的房子里。 (17)爱吃面条的人也爱喝葡萄酒。

(18)吸“555”香烟的人比吸希尔顿香烟的人住的*右。 扬智(科技)笔试题目 国泰君安笔试题

一列火车上有三个工人,史密斯、琼斯和罗伯特,三人工作为消防员、司闸员和机械 师,有三个乘客与这三人的名字相同。罗伯特住在底特律;司闸员住在芝加哥和底特律中 间的地方;琼斯一年赚2万美金;有一个乘客和司闸员住在一个地方,每年的薪水是司闸员 的3倍整;史密斯台球打得比消防员好;和司闸员同名的乘客住在芝加哥。 请问谁是机械师?

4.农场不知道有多少鸡,现有一批饲料,如果卖掉75只鸡饲料够20天用,买进100只 鸡饲料够用15天,问原来有多少只鸡?

5.6个桶,装着两种液体,一种液体的价格是另外一种的double,桶容量为8,13,1 5,17,19,31,有一个美国人,各用了14美元买两种液体,剩下一个桶。问剩下哪个? 6.篮球场,还剩6秒,差对手4分,没可能追得上,现在有一个暂停,你会怎么指导球 员去做? 明基面试问题

1.自我介绍(2分钟)。

2.你大学期间最辉煌的一件事是什么?

3.如果你明天去火星呆上300年,今天晚上你最想做的一件事是什么? 广州日报

1、填空部分是一些时事题,如:我国有多少网民,三个代表、北京申奥什么的,及记 者的一些常识性的问题:如我国第一个以写新闻通讯出名的记者是谁?蔡元培曾经夸奖过 的记者是谁?

2、选择题范围与填空基本一样,包括时政和新闻知识:如深度采访的实质,记者的职 业道德等。

3、简答题就比较专业:一道是你参加一条高速公路的开通典礼,如何在记者会上发的 新闻通稿之外写出会上没说的内容。一道是你去一个单位采访,但没有任何该单位的证件 、邀请函之类东西,你如何骗过门卫混进去。第三道是有几家香水公司都想让你说好话, 就是做软新闻了,你该如何处理。第四道是A明星与B明星不和,你如何报道A骂B的话而又 不能让B告你诽谤。

4、写作题是以“今年冬天不太冷”为题任意想象,加叙加议。

5、五道智力测验:如何喝道啤酒杯底部的啤酒、汽车过隧道但高2厘米该怎么办、你

吃苹果时吃到几条虫最恶心之类,10只点燃的蜡烛,让风吹灭了2只,后来在关窗户前又吹 灭1只。问最后还有几支。

面试官揭秘500强面试题几年来,我遇到三个刁钻的问题。可惜的是,我因没有心理准备而 未能给出令人满意的答复。

(1)你的约会很多吗?(问这个问题的是美国一家防务公司的一名女面试官。) (2)你今天为什么来这里?(一家投资银行的面试官走进他的办公室,看到我坐在那 里等他时所问的问题。)

(3)如果此时外面有一艘宇宙飞船着陆,你会走进去吗?如果它可以去任何一个地方 ,你会要求它把您带到哪里?(一家投资银行的面试官所问的问题。)??凯利,1999年 5月3日 □建议

这几个问题都具有挑战性,虽然第一个问题看上去有点不同寻常,是一名女性向另一 名女性提出的问题,但你仍要认真作答,让对方感到满意。比较好的回答方式是:“如果 你担心我对私人生活的关注程度大于对工作的关注程度,那么我向你保证,我对工作非常 投入。同样,我努力保持平衡的生活,以各种各样的方式充实我的业余生活。”这既回答 了面试官的问题,也没有暴露自己的隐私。

“你今天为什么来这里”这样的问题给你提供了一个阐述自己对这份工作的热情的机 会。如果你不是从这句话的表面意思去看,那么这就是一个刁钻的问题。在接受面试时, 很重要的一点是让自己轻松一点,不要分析每个问题到底是什么意思。想方设法让你的回 答能够拉近你与面试官之间的关系。并表明你作为这个职位的应聘者,有着自己的优势。 “我来这里是要和你讨论一下我应聘某某工作的问题。你愿意同我介绍一下自己的情况吗 ?”

宇宙飞船这个问题问的是你有多大的冒险精神,要回答这个问题,需要根据你对自己 所应聘的工作的了解好好组织自己的语言。假如这项工作要求你具有创新精神,那么你可 以说:“是的,我会上去,去见见曾经在这个星球走过的那些最具有创新精神的人,问问 他们最喜欢用什么方式来让自己尽可能保持创造力。” ■下水道的井盖为什么是圆的?

微软的顾问有时会得到一些特殊待遇,因为在面试时询问他们的问题并不是真的算算 术。 □范例

理查德?范曼在微软找工作

面试官:现在我们要问一个问题,看看你的创造性思维能力。不要想得太多,运用日 常生活中的常识,描述一下你的想法。这个问题是,下水道的井盖为什么是圆的? 范曼:它们并不都是圆的,有些是方的,的确有些圆井盖,但我也看过方的,长方的 。

面试官:不过我们只考虑圆形的井盖,他们为什么是圆的? 范曼:如果我们只考虑圆的,那么它们自然是圆的。

面试官:我的意思是,为什么会存在圆的井盖?把井盖设计成圆形的有什么特殊的意 义吗?

范曼:是有特殊意义,当需要覆盖的洞是圆形时,通常盖子也是圆的。用一个圆形的 盖子盖一个圆形的洞,这是最简单的办法。

面试官:你能想到一个圆形的井盖比方形的井盖有哪些优点吗?

范曼:在回答这个问题之前,我们先看看盖子下面是什么。盖子下面的洞是圆的,因 为圆柱形最能承受周围土地的压力。而且,下水道出孔要留出足够一个人通过的空间,而

一个顺着梯子爬下去的人的横截面基本是圆的,所以圆形自然而然地成为下水道出入孔的 形状。圆形的井盖只是为了覆盖圆形的洞口。

面试官:你认为存在安全方面的考虑吗?我的意思是,方形的井盖会不会掉进去,因 此造成人身伤害?

范曼:不大可能。有时在一些方形洞口上也会看到方形的盖子。这种盖子比入口大, 周围有横挡,通常这种盖子是金属质地,非常重。我们可以想象一下,两英尺宽的方形洞 口,1到1.5英寸宽的横挡。为了让井盖掉进去,需要抬起一端,然后旋转30度,这样它就 不受横挡的妨碍了,然后再将井盖与地平线成45度角,这时转移的重心才足以让井盖掉下 去。是的,方形的井盖的确存在掉下去的可能,但可能性很小,只要对负责开井盖的人稍 加培训,他就不会犯这样的错误。从工程学来看,井盖的形状完全取决于它要覆盖的洞口 的形状。

面试官:(面有难色)我要与管理层谈点事情。(离开了房间) 10分钟后,面试官回来了。

面试官:我们推荐你立刻去推销部工作。 □建议

罗伯特?斯科布尔参加微软面试

时间是2003年8月13日上午10点23分 我所经历的面试过程是:

1.一名主管问我:你想过在这里工作吗?

2.人力资源部的人在电话里和我谈了一个小时。他们问了我一些问题,以确信我的经 历与简历上描述的内容相符,同时也为了避免在之后时间较长的面试中出现令他们尴尬的 事情。

3.我通过了人力资源部的电话约谈,于是他们用飞机把我送到了微软工地设在雷德蒙 德的总部。

4.对我的面试从上午8点半开始。首先是和人力资源部的人谈,她向我解释了面试程 序,以确保有必要让我进入下一轮面试。

5.她给我一个名单,上面是三个面试官的名字,他们将在午餐的时候面试我,她说得 很准确,如果这三个人喜欢我,我会得到另外一个名单,也就是“午餐后”的面试名单。 如果你在吃午餐的时候就得走人,那么你就会知道自己把事情搞砸了(不过据内部的 人讲,这样情况不多)。最后一条建议:要让自己一整天保持精力充沛。这很难。由于全 天都在回答问题,到下午4点的时候,就很难进行有条理的思考了。不过许多决定都是基于 “这个家伙是否对科技充满热情”这一点做出的。 ■选择题看人品 □范例1

请在ABCD中选择正确的答案

根据艾恩?兰德对道德利己主义的解释,我们不仅可能做有利于他人的事,重要的是 我们只有在这种情况下才会这样做:

A通过满足别人的利益,也满足了我们自己的利益 B我们出于同情心,而不总是为了利己而帮助他人 C我们的行为是没有私心的

D我们的生活与禁欲主义的目标吻合(即简单和克己) □范例2

在5分钟之内,对下列单项主题进行即兴论述 责任:

“有时候负责意味着得罪别人。” ??科林?鲍威尔将军 体谅和尊重

“信任别人,他们就会用真诚来回报你;善待他们,他们就会表现出自身的伟大品质 。”??托马斯?肯皮斯 正直

“如果你讲的是真话,那你就不必劳神去记忆。”??马克?吐温 例1答案:A ■脑筋急转弯 □范例1 数学能力: 100美元哪里去了?

三个朋友住进了一家宾馆。结账时,账单总计3000美元。三个朋友每人分摊1000美元 ,并把这3000美元如数交给了服务员,委托他代到总台交账,但在交账时,正逢宾馆实施 价格优惠,总台退还给服务员500美元,实收2500美元,服务员从这500美元退款中扣下了 200美元,只退还三客人300美元,三客人平分了这300美元,每人取回了100美元,这样, 三个客人每人实际支付900美元,共支付2700美元,加上服务员扣的200美元,共计2900美 元,那么这100美元的差额到哪里去了?

答案:这题纯粹是文字游戏,但是如果你的头脑不够清晰,很可能把你搞糊涂了。客

人实际支付2700美元,就等于总台实际结收的2500美元加上服务员克扣的200美元。在这2 700美元加上200美元是毫无道理的,如果在这2700美元加退回的300美元,这是有道理的, 因为这等于客人原先交给服务员的3000美元。 反应能力?谁是罪犯?

在某商厦珠宝盗窃案中,警方已查明作案人肯定是ABCD四人中的一人:在审讯中 ,他们的口供如下:

A说:珠宝被盗那天,我在乡下,不可能进入商厦盗窃 B说:D是罪犯

C说:B才是罪犯分子,我曾经看见过他卖过珠宝 D说:B与我有仇,所以诬陷我

经核实,四人中只有一个人说的是实话,你能从中找出谁是罪犯吗? 答案:D说的是真话,A是罪犯。 □范例2

答案:D说的是真话,A是罪犯。 □范例2 情商:

1什么书中毛病最多?(医书)

2什么东西说“父亲”时不会相碰?叫“爸爸”时却会碰到两次?(上嘴唇和下嘴唇) 3太平洋的中间是什么?(平字)

因篇幅问题不能全部显示,请点此查看更多更全内容