網站首頁 實用文 書信 面試 實習 實習報告 職場 職責 勵志 名言 熱點
當前位置:人人簡歷網 > 面試 > 面試筆試

46家公司筆試面試題

欄目: 面試筆試 / 發佈於: / 人氣:1.47W
46家公司筆試面試題
Sony筆試題
  1.完成下列程序
  *
  *.*.
  *..*..*..
  *...*...*...*...
  *....*....*....*....*....
  *.....*.....*.....*.....*.....*.....
  *......*......*......*......*......*......*......
  *.......*.......*.......*.......*.......*.......*.......*.......
  #include <stdio.h>
  #define N 8
  int main()
  {
   int i;
   int j;
   int k;
   --------
   | |
   | |
   | |
   --------
   return 0;
  }
  2.完成程序,實現對數組的降序排序
  #include <stdio.h>
  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 <stdio.h>
  int Pheponatch(int);
  int main()
  {
   printf("The 10th is %d",Pheponatch(10));
   return 0;
  }
  int Pheponatch(int N)
  {
  --------------------------------
  | |
  | |
  --------------------------------
  }
  4.下列程序運行時會崩潰,請找出錯誤並改正,並且説明原因。
  #include <stdio.h>
  #include <malloc.h>
  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>=e && !=NULL) || (N<temp. value && temp. right
!=NULL
  ))
   {
   while(N>=e && !=NULL)
   temp=;
   while(N<e && t!=NULL)
   temp=t;
   }
   if(N>=e)
   =NewNode;
   else
   t=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){
   ;
  }
  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&#61485;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 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 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 62 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(“ Area = %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 contribu te 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?


KPMG筆試題
  “The big economic difference between nuclear and fossil-fuelled power stations 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 fossil-fuelled power stations, they would definitely have the economic advantage.
  TRUE
  UNTRUE
  CANNOT SAY
  “At any given moment we are being bombarded by physical and psychological stimuli 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 time.”
  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
  (6)C CANNOT SAY
  PartII NUMERCAL TEST
  1.Which country had the highest number of people aged 60 or over at the start of 1985?
  A. UK
  B. France
  C. Italy
  D. any
  E. Spain
  2.What percentage of the total 15mm button production was classed as sub-standard in September?
  AA 10.5% BB 13% CC 15% DD 17.5% EE 20% AB 23.5% AC 25%
  AD 27.5% AE 28% BC 30.5%
  3. How many live births occurred in 1985 in Spain and Italy together (to the nearest 1000)?
  A. 104 000
  B. 840 000
  C. 1 044 000
  D. 8 400 000
  E. 10 440 000
  4. What was the net effect on the UK population of the live birth and death rates in 1985?
  A. Decrease of 66 700
  B. Increase of 752 780
  C. Increase of 84 900
  D. Cannot Say
  E. Increase of 85 270
  5. By how much did the total sales value of November‘s button production


vary from October‘s?
  A. 8.50 (Decrease)
  B. 42.50 (Decrease)
  C. 85.00 (Increase)
  D. 27.50 (Decrease)
  E. No change
  6. What was the loss in potential sales revenue attributable to the production of sub-standard (as opposed to standard) buttons over the 6 month period?
  A. 13.75
  B. 27.50
  C. 137.50
  D. 280.00
  E. 275.00


香港電信筆試題
  1. Based on your understanding of the following java related technologies: servlets, JavaServerPage, JavaBeans, Enterprise JavaBeans, how do you think these 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 using 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 aggregation which do you choose (15marks).
  4. How would you work around the lack of multiple inheritance feature in Java (15marks).
  5. What would you consider to be the hardest part of OO analysis and design and why (10marks).
  6. How do you keep yourself up to date with the latest in software techonogy, especially in the field of software development (10marks).
  7. What si your career aspiration? Why do you think this E-Commerce Development Center can help you in achieving your career goals (10marks) (1hr, answer in English).


L‘OR&Eacute;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 words)
  4. What kind of group activities are you interested in and what type of role do you often play? (limited in 500 words)
  5. Please use one sentence to give a definition of ‘Beauty’, and describe 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 , what 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 logarithems 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 with 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 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 used.
  b. Interrupt Processing.A headware register consisting of eight independent edge triggered latches is used to record external asynchronous interrupt requests. When any of the request bits are latched, a software interrupt is generated. The software may read the latch to see which interrupt(s) occurred. Writing 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 playlist display and a few control buttons is given to you. How would you make the interface “skinnable”,with user selected graphics, options, and control button placement?
  Each project description is incomplete. What questions would you ask to completely 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 school project,not for pay). What type of software project would you most enjoy working on?
  3. Have you participated in a team programming project? What is the hardest 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”香煙的人比吸希爾頓香煙的人住的*右。


揚智(科技)筆試題目
  軟件題目
  1. Queue is a useful structure
  * What is a queue?
  * Write 5 operations or functions, without details, that can be done on a queue.
  2. Insert a sequence fo keys(24,49,13,20,59,23,90,35) into a data structure, which has no keys initially. Depict the data structure after these insertions, if it is:
  * a heap tree
  * an AVL tree
  3. * What is a synchronous I/O bus?
  * What is an asnchronous I/O bus?
  * Compare the advantages and disadvantages of synchronous and a synchronous I/O bus.
  4. Explain the following terminology:
  * Baud rate
  * Handshaking
  * Memory mapped I/O
  5. Explain the key issues in supporting a real-time operation system for embedded system.
  6. Explain the mapping of visual addresses to real addresses under paging by
  * direct mapping
  * associative mapping
  * combined direct/associated mapping
  7. Please explain what is “write-back” and “write-through”, and discuss the advantage and disadvantage about these two methods.
  8. Explain the concept and benefit of threads
  9. What is hardware interrupt? What is software interrupt? What is exception? Please tell me all you know about interrupt.
  10. Write a recursive function that tests wether a string is a palindrome.
A palindrome is s string such as “abcba” or “otto” that reads the same in both you can write this function recursively,you can write an iterative version of this function instead.
  11.什麼是進程(Process)和線程(Thread)?有何區別?
  12.MFC和SDK有何區別?
  13.IRP是什麼?有何作用?
  14.Windows 2000操作系統下用户模式和內核模式下編程有何區別?
  15.驅動程序的BUFFER能swap到磁盤上去嗎?為什麼?
  16.試編寫3個函數實現
  (1)建立一個雙向鏈表
  (2)插入一個節點
  (3)刪除一個節點
  17.簡述Hardware interrupt和software中斷的區別,簡述其應用。
  18.試編寫一個函數,計算一個字符串中A的個數。
  19.畫出其相應流程圖並編寫一個函數實現一個整數到二進制數的轉換,如輸入6,輸出110。
  20.
  (1)編寫一個遞歸函數,刪除一個目錄。
  (2)編寫一個非遞歸函數,刪除一個目錄。
  並比較其性能。
  21.附加題:簡單敍述編程經歷
  硬件題目
  1.用mos管搭出一個二輸入與非門。
  2.集成電路前段設計流程,寫出相關的工具。
  3.解釋名詞IRQ,BIOS,USB,VHDL,SDR。
  4.簡述如下Unix命令cp -r, rm,uname。
  5.用波形表示D觸發器的功能。
  6.寫異步D觸發器的verilog module。
  7.What is PC Chipset?
  8.用傳輸門和倒向器搭一個邊沿觸發器。
  9.畫狀態機,接受1,2,5分錢的賣報機,每份報紙5分錢。
  DSP題目
  1.H(n)&#61501;&#61485;a*h(n&#61485;1)+b*δ(n)
  (1)求h(n)的z變換
  (2)該系統是否為穩定系統
  (3)寫出FIR數字濾波器的差分方程
  2.寫出下面模擬信號所需的最小採樣帶寬
  (1)模擬信號的頻率範圍是0~4kHz
  (2)模擬信號的頻率範圍是2~4kHz
  3.名詞解釋
  (1)量化誤差
  (2)直方圖
  (3)白平衡
  (4)MMX
  4.寫出下面幾種格式中用到的壓縮技術
  (1)JPEG
  (2)MPEG2
  (3)MP3


高通筆試題
  1. Can you describe the trend of wireless mobile communication industry? (2000 letters)
  2. Compare the major third generation technologies.(2000 letters)
  3. Describe the characteristics of Walsh function. Explain how to generate Walsh Function. (2000 letters)
  4. List factors that will affect the capacity of forward and reverse links of a CDMA system. (2000 letters)
  5. What are the differences between IS-95 A/B and cdma2000 1X? (2000 letters)


威盛筆試試題
  2002年軟件筆試題
  1.三組程序,找出你認為的錯誤。
  (1)a.c long temp[255];
  b.c extern *temp;
  (2)a.c long temp[255];
  b.c extern temp[256];
  (3)a.c long temp[255];
  b.c extern temp[];
  2.在第一個聲明處編譯出了奇怪的錯誤,為什麼?
  #include <stdio.h>
  #include “myfun1.h”
  #include “myfun2.h”
  int myInt1;
  int myInt2;
  3.printf(“0x%x”, (&0)[&#61485;1]); 請問打印了什麼?
  4.彙編,用ax,bx,cx,dx,求1000×1000/30(四捨五入),結果放在ax中。
  5.編最優化Bubble(int *pIntArray,int L),要求:交換元素不能用臨時變量,如果有序需要最優。
  6.用任意一種編程語言寫n!的算法。
  2003 Asic部分
  1.一個四級的Mux,其中第二級信號為關鍵信號,如何改善timing?
  2.一個狀態機的題目用Verilog實現。
  3.Asic中的design flow的實現。
  4.用邏輯門畫出D觸發器。
  5.給出某個一般時序電路的圖,有Tsetup,Tdelay,Tck&#61485;>q還有clock的delay,寫出決定最大時鐘的因素,同時給出表達式。
  6.用C語言實現統計某個cell在某.v文件調用的次數。
  7.Cache的主要部分。
  2003 EE筆試題目
  1.寫出電流公式。
  2.寫出平板電容公式。
  3.電阻R和電容C串聯,輸入電壓為R和C之間的電壓,輸出電壓分別為C上電壓和R上電壓,要求繪製這兩種電路輸入電壓的頻譜,判斷這兩種電路何為高通濾波器,何為低通濾波器。當RC<<T時,給出輸入電壓波形圖,繪製兩種電路的輸出波形圖。
  4.給出時域信號,求其直流分量。
  5.給出一時域信號,要求寫出頻率分量,並寫出其傅立葉變換級數。當波形經過低通濾波器濾掉高次諧波而只保留一次諧波時,畫出濾波後的輸出波形。
  6.有一時域信號S=V0sin(2pif0t)+V1cos(2pif1t)+V2sin(2pif3t+90),寫出當其通過低通、帶通、高通濾波器後的信號表示方式。
  7.給出一差分電路,告訴其輸出電壓Y+和Y&#61485;,求共模分量和差模分量。
  8.一電源和一段傳輸線相連(長度為L,傳輸時間為T),畫出終端處波形,考慮傳輸線無損耗。給出電源電壓波形圖,要求繪製終端波形圖。
  9.求鎖相環的輸出頻率,給了一個鎖相環的結構圖。
  10.給出一個堆棧的結構,求中斷後顯示結果,主要是考堆棧壓入返回地址存放在低端地址還是高端。
  2003 Graphic筆試題目
  1.問答題
  (1)texture mapping是什麼?為什麼要用filter?
  (2)用float和int表示一個數,比如2,説明優點和缺點。
  (3)在MPEG哪部分可以加速硬件?
  (4)解釋cubic和B-spline的差別,寫出各自函數。
  (5)寫出幾個Win API中的OpenGL函數。
  (6)説出固定小數表示和浮點小數表示的優缺點。
  (7)説出顯卡可以優化哪些MPEG中的計算?
  (8)説出Bezier和B-Spline曲線的區別。
  2.用最簡單的方法判斷一個數是否是2的指數次冪。
  3.S23E8和S10E5兩種浮點數表示方法分析,表示0.25寫一個類S10E5,實現從S23E8轉換。
  4.用模版的方式實現三個量取最大值。
  5.題目告訴你IEEE 16和32浮點數表示的規範,要求將&#61485;0.25分別用IEEE 16和32表示並寫一個C++函數將輸入的IEEE 16表示轉化為IEEE 32的表示。
  6.用C語言寫一個函數f(x)&#61501; x * 0.5要求只能用整數操作。
  2003 Software Engineer筆試題
  1. Describe x86 PC’s architecture in a diagram cpu,core chipset, Cache,DRAM, IO-subsystem, IO-Bus
  2. SWI instruction is often called a “supervisor call”, describe the actions in detail
  * Save the address of the instruction after the SWI in rl4_svc.
  * Save the CPSR in SPSR_svc.
  * Enter supervisor mode and disable IRQs.
  * Set the PC to 08 and begin executing the instruction there.
  3.
  * What is PIO operation? advantage and disadvantage?
  * DMA operation? advantage and disadvantage?
  * Scatter/Gather DMA engine? how does it operate?
  4. MP3 decoder related. (a flow chart of decoding is presented)
  * advantages of Huffman encoding?
  * why the aliasing reduction is necessary?
  * analytical expression in mathematics of the IMDCT?
  * which block in the flow chart is suitable for the software implementation and which for the hardware? why?
  5. Assembly codes -> C language (about 15 lines).
  6. Graduation thesis description.


漢王筆試題
  高級研究人員(模式識別、圖像處理類)招聘試題
  説明:
  可能您的專業並不完全符合本試題所涉及的領域。因此,並非所有的問題都需要回答,您可以只回答你所熟悉和能夠回答的問題。允許參考任意的資料,但請獨立完成此試題,我們更欣賞您獨立的思考和創新的精神。本試題並非我們錄用或者不錄用您的惟一依據。應聘高級研究人員者請回答這部分問題。
  1.人工智能與模式識別的研究已有多年,但似乎公認的觀點認為它仍然非常困難。試對你所熟悉的任一方向(如指紋識別、人像識別、語音識別、字符識別、自然語言理解等)的發展狀況進行描述。並設想如果你將從事該方向的研究,你打算如何着手,以建立有效的識別理論和方法;或者你認為現在的理論和方法有何缺陷,有什麼辦法來進行改進?(500字以內即可,不要太長)
  2.簡述下面任一主題的主要理論框架或主要觀點(500字以內即可,不要太長)
  (1)David Marr的視覺計算理論框架
  (2)格式塔(Gestalt)心理學派的主要觀點
  (3)Bayes決策理論
  (4)人工神經網絡中的BP網絡、自組織網絡和聯想記憶網絡的主要內容
  (5)基因算法
  (6)小波分析
  (7)目前流行的有損靜態圖像壓縮方法
  3.設想你要設計一個算法,檢測給定的圖像中是否有矩形結構。所要檢測的矩形可能有多種形態,試提出你的算法框架。要求你的算法至少能檢測出樣本中的矩形,而拒絕其他的任意非矩形結構。矩形的大小、位置和方向未知,要求你的算法能確定這些參數。
  如果你認為這個問題太難而不能解決,請説明理由。

  高級軟件開發人員招聘試題
  説明:
  可能您的專業並不完全符合本試題所涉及的領域。因此,並非所有的問題都需要回答,您可以只回答你所熟悉和能夠回答的問題。允許參考任意的資料,但請獨立完成此試題,我們更欣賞您獨立的思考和創新的精神。本試題並非我們錄用或者不錄用您的惟一依據。
  應聘高級軟件開發人員者請回答這部分問題。
  1.數據的邏輯存儲結構(如數組,隊列,樹等)對於軟件開發具有十分重要的影響,試對你所瞭解的各種存儲結構從運行速度、存儲效率和適用場合等方面進行簡要地分析。
  2.數據庫技術是計算機系統中一個非常重要的領域,幾乎所有的計算機應用中都或多或少地用到了數據庫。試簡要地談談數據庫設計中應當注意哪些問題,以及如何解決?給出兩種你所熟悉的DBMS,要求一種適用於小型應用,另一種適用於大型應用,給出你做出選擇的理由。
  3.某公司的主要業務是提供S電平可以直接互連嗎?
  2.可編程邏輯器件在現代電子設計中越來越重要,請問:
  (1)你所知道的可編程邏輯器件有哪些?
  (2)試用VHDL或Verilog,ABLE描述8位D觸發器邏輯
  3.設想你將設計完成一個電子電路方案。請簡述用EDA軟件(如PROTEL)進行設計(包括原理圖和PCB圖)到調試出樣機的整個過程。在各個環節應注意哪些問題?


北京信威通信技術股份有限公司面試題
  1.DSP和通用處理器在結構上有什麼不同?請簡要畫出你熟悉的一種DSP結構圖。
  2.説説定點DSP和浮點DSP的定義(或者説出他們的區別)。
  3.説説你對循環尋址和位反序尋址的理解。
  4.請寫出【&#61485;8,7】的二進制補碼和二進制偏置碼。用Q15表示出0.5和&#61485;0.5。


中國國際金融有限公司CICC筆試題
  1. Please tell us about an achievement that you are especially proud of because it was difficult or demanding.
  (1)What the objective was?
  (2)Why it is important to you?
  (3)How you achieved it and the obstacles that you had to overcome in order to do so?
  2. What is your career plan? Three years after graduation, and five years after graduation?
  3. Why are you interested in investment bank? What other industries do you also have interests?
  4. Why do you think you can be a qualified investment banker? How can you contribute in this industry?


國泰君安筆試題
  一列火車上有三個工人,史密斯、瓊斯和羅伯特,三人工作為消防員、司閘員和機械師,有三個乘客與這三人的名字相同。羅伯特住在底特律;司閘員住在芝加哥和底特律中間的地方;瓊斯一年賺2萬美金;有一個乘客和司閘員住在一個地方,每年的薪水是司閘員 的3倍整;史密斯枱球打得比消防員好;和司閘員同名的乘客住在芝加哥。
  請問誰是機械師?


Briny筆試題
  1.説出RC振盪器的構成和工作原理。
  2.什麼是SDH?
  3.什麼是共模、差模?畫出差分電路的結構。
  4.a=5; b=6; a+=b++; 執行結果是什麼?
  5.什麼是TDM?什麼是CDMA?
  6.什麼是採樣定理?
  7.什麼是香農定理?
  8.計算機的中斷有哪幾類?


廣東北電面試題目
  英文筆試題
  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 ver,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 themethod 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 belo
w:
  3 10 5 16 8 4 2 1

  中文筆試題
  1.漢譯英
  北電網絡的開發者計劃使來自於不同組織的開發者,能夠在北電網絡的平台上開發圓滿的補充業務。北電網絡符合工業標準的開放接口,為補充業務的開展引入了無數商機,開發者計劃為不同層面的開發者提供不同等級的資格,資格的劃分還考慮到以下因素:補充業務與北電網絡平台的集合程度,開發者團體與北電網絡的合作關係,等等。
  2.編程
  將整數轉換成字符串:void itoa(int,char);
  例如itoa(-123,s[])則s=“-123”;


U2合唱團在17分鐘內得趕到演唱會場,途中必需跨過一座橋,四個人從橋的同一端出發,你得幫助他們到達另一端,天色很暗,而他們只有一隻手電筒。一次同時最多可以有兩人一起過橋,而過橋的時候必須持有手電筒,所以就得有人把手電筒帶來帶去,來回橋兩端。手電筒是不能用丟的方式來傳遞的。四個人的步行速度各不同,若兩人同行則以較慢者的速度為準。Bono需花1分鐘過橋,Edge需花2分鐘過橋,Adam需花5分鐘過橋,Larry需花
10分鐘過橋。他們要如何在17分鐘內過橋呢?(有個同濟的學生寫文章説他當時在微軟面試時就是碰到了這道題,最短只能做出在19分鐘內過橋,微軟的人對他講這樣的結果已經是不錯的了!)

  A點到B點
  1和2過去 2分鐘 2
  2過來 4分鐘 2+2=4
  10和5過去 14分鐘 4+10=14
  1過來 15分鐘 14+1=15
  1和2過去 17分鐘 15+2=17

  19分鐘還很不錯????



廣州本田筆試題
  1.排序s-m-t-w-t-f-?
  2.如果六千,六百,六表示成6606,那麼十一千,十一百,十一表示成什麼?
  3.grass後面加一個詞,agent前面加一個單詞,組成兩個新詞,這個詞是什麼?
  4.農場不知道有多少雞,現有一批飼料,如果賣掉75只雞飼料夠20天用,買進100只雞飼料夠用15天,問原來有多少隻雞?
  5.6個桶,裝着兩種液體,一種液體的價格是另外一種的double,桶容量為8,13,15,17,19,31,有一個美國人,各用了14美元買兩種液體,剩下一個桶。問剩下哪個?
  6.籃球場,還剩6秒,差對手4分,沒可能追得上,現在有一個暫停,你會怎麼指導球員去做?



明基面試問題
  1.自我介紹(2分鐘)。
  2.你大學期間最輝煌的一件事是什麼?
  3.如果你明天去火星呆上300年,今天晚上你最想做的一件事是什麼?



網易
  1、10個人分成4組 有幾種分法?
  2、如圖:
     7 8 9 10
     6 1 2 11
     5 4 3 12
     16 15 14 13
    設“1”的座標為(0,0) “7”的座標為(-1,-1) 編寫一個小程序,使程序做到輸入座標(X,Y)之後顯示出相應的數字。
  3、#include<stdio.h>
    //example input and output
    //in 1 2 3 out 1 3 1
    //in 123456789 2 100 out 123456789 100 21
    long mex(long a,long b,long c)
    { long d;
     if(b==0) return 0;
     if(b==1) return a%c;
     d=mex(a,b/2,c); d*=d;這裏忘了;d*=mex(a,b%2,c);d%=c;
     return d;
    }
    int main(void)
    { long x,y,z;
     while(1)
     { if(scanf(%d %d %d,&x,&y,&z)>3) return 0;
     if(x<0) { printf("too small ");continue;}
     if(y<0) { printf("too small ");continue;}
     if(z<1) { printf("too small ");continue;}
     if(y>z) { printf("too big ");continue;}

     if(z>1000000010) {printf("too big ");continue}
     printf(%d %d %d,x,z,mex(x,y,z);
    }}
    根據這個程序,當已知一個輸入,算出輸出,如:輸入 1 3 1 則輸出 1 2 3 輸


入 123456789 100 21 輸出 123456789 2 100


廣州日報
  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美元。在這2700美元加上200美元是毫無道理的,如果在這2700美元加退回的300美元,這是有道理的,因為這等於客人原先交給服務員的3000美元。

  反應能力?誰是罪犯?
  在某商廈珠寶盜竊案中,警方已查明作案人肯定是ABCD四人中的一人:在審訊中,他們的口供如下:
  A説:珠寶被盜那天,我在鄉下,不可能進入商廈盜竊
  B説:D是罪犯
  C説:B才是罪犯分子,我曾經看見過他賣過珠寶
  D説:B與我有仇,所以誣陷我
  經核實,四人中只有一個人説的是實話,你能從中找出誰是罪犯嗎?
  答案:D説的是真話,A是罪犯。

  □範例2
  情商:
  1什麼書中毛病最多?(醫書)
  2什麼東西説“父親”時不會相碰?叫“爸爸”時卻會碰到兩次?(上嘴脣和下嘴脣)
  3太平洋的中間是什麼?(平字)

Tags:面試題 筆試