精品欧洲AV无码一区二区_人妻精品久久久久中文字幕一冢本_黑人又大又粗又硬XXXXX_欧美疯狂做受XXXXX高潮

46家著名公司筆試題目轉自應屆生求職網

時間:2021-06-17 13:47:31 筆試 我要投稿
  • 相關推薦

46家著名公司筆試(shi)題目(轉自(zi)應屆生(sheng)求職網)

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>=temp.value && temp.left!=NULL) || (N<temp. value && temp.
right
!=NULL
))
{
while(N>=temp.value && temp.left!=NULL)
temp=temp.left;
while(N<temp.value && temp.right!=NULL)
temp=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.寫一個函數,將其中的\\t都轉換成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 embosing 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 performance 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 62 A5H.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 achievements.
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
part II 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. W.Germany
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 birthand 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 benefits of 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).
ORACLE的筆試題
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 255.255.240.0, 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 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 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 real time waveform consisting of a sensor reading mixed with highly periodic impulses and high frequency noise. The desired output is the real time 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 ions, 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 directions. If 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)??a*h(n?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)[?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?>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?,求共模分量和差模分量。
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浮點數表示的規范,要求將?0.25分別用IEEE 16和32表示并寫一個C++函數將輸入的IEEE 16表示轉化為IEEE 32的表示。
6.用C語言寫一個函數f(x)? x * 0.5要求只能用整數操作。
2003 Software Engineer筆試題
1. Describe x86 pC’s architecture in a diagram cpu, core chipset, Cache, DR AM, IO-subsystem, IO-Bus
2. SWI instruction is often called a “supervisor call”, describe the act ions 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 implementatio n 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.某公司的主要業務是提供WWW和E-mail服務,出于安全考慮,該公司要求我公司提供一套網絡指紋登錄系統,該系統要求能夠利用指紋替代E-mail中常用的密碼,并對所提供的部分網頁通過指紋認證后才能訪問,請利用你所學過的知識對該系統進行分析設計,你可以指定網絡的配置(包括協議),但必須保證郵件用戶既可通過網頁(http方式)收取信件,也可通過Outlook收取信件。請分析該系統的可行性,可行時給出系統結構和主要的存儲結構,指出系統中的難點和解決方法。(假設指紋識別的問題已經解決)
高級硬件開發人員招聘試題
說明:
可能您的專業并不完全符合本試題所涉及的領域。因此,并非所有的問題都需要回答,您可以只回答你所熟悉和能夠回答的問題。允許參考任意的資料,但請獨立完成此試題,我們更欣賞您獨立的思考和創新的精神。本試題并非我們錄用或者不錄用您的惟一依據。
應聘高級硬件開發人員者請回答這部分問題。
1.下面是一些基本的數字電路知識問題,請簡要回答:
(1)什么是Setup和Holdup時間?
(2)什么是競爭與冒險現象?怎樣判斷?如何消除?
(3)請畫出用D觸發器實現2倍分頻的邏輯電路。
(4)什么是“線與”邏輯?要實現它,在硬件特性上有什么具體要求?
(5)什么是同步邏輯和異步邏輯?
(6)請畫出微機接口電路中,典型的輸入設備與微機接口邏輯示意圖(數據接口、控
制接口、所存器/緩沖器)。
(7)你知道哪些常用的邏輯電平?TTL與COMS電平可以直接互連嗎?
2.可編程邏輯器件在現代電子設計中越來越重要,請問:
(1)你所知道的可編程邏輯器件有哪些?
(2)試用VHDL或Verilog,ABLE描述8位D觸發器邏輯
3.設想你將設計完成一個電子電路方案。請簡述用EDA軟件(如pROTEL)進行設
計( 包括原理圖和pCB圖)到調試出樣機的整個過程。在各個環節應注意哪些問題?
北京信威通信技術股份有限公司面試題
1.DSp和通用處理器在結構上有什么不同?請簡要畫出你熟悉的一種DSp結構圖。
2.說說定點DSp和浮點DSp的定義(或者說出他們的區別)。
3.說說你對循環尋址和位反序尋址的理解。
4.請寫出【?8,7】的二進制補碼和二進制偏置碼。用Q15表示出0.5和? 85;0.5。
中國國際金融有限公司CICC筆試題
1. please tell us about an achievement that you are especially proud of be cause 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. 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 after ( 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
中文筆試題
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,1
5,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\\n\");continue;}
if(y<0) { printf(\"too small\\n\");continue;}
if(z<1) { printf(\"too small\\n\");continue;}
if(y>z) { printf(\"too big\\n\");continue;}
if(z>1000000010) {printf(\"too big\\n\");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只。問最后還有幾支。
中磊(蘇州)研發中心校園招聘試卷(B)
1、請用標準C語言實現一個雙向筆循環鏈表的查找與刪除。
typedef struct doublecyclelink{
int key;
struct doublecyclelink *prev;
struct doublecyclelink *next;
}DoubleCycleLinkT;
DoubleCycleLinkT *findKey(DoubleCycleLinkT *link,int key);
遍歷整個雙向循環鏈表,將第一個與key值相同的結點移出鏈表,并返回。
若沒有找到則返回NULL。
2、請用程序打印下列圖型
*
* *
* * *
* * * *
* * * * *
void printTriangle(const unsigned char line);
輸入行數,打印三角形
3、請用標準C語言實現下列標準庫函數,設計中不得使用其他庫函數。
char *strstr(char *str1,char *str2);
在字符串str1中,尋找字串str2,若找到返回找到的位置,否則返回NULL。
4、請問這段代碼循環多少次?
main()
{
char i=0;
while(i<10)
{
if(i<1)continue;
if(i==5)break;
i++;
}
......
}
5、用預處理指令#define聲明一個常數,用以表明1年中有多少秒(忽略閏年問題)
6、請問運行main函數會有什么樣的結果?
main()
{
int x=10,y=3;
printf(\"%d\\n\",y=x/y);
}
7、有以下程序
#define p 3
void F(int x)
{
return(p*x*x);
}
main()
{
printf(\"%d\\n\",F(3+5));
}
程序運行后的輸出結果是?
8、若int占2個字節,char占1個字節,float占4個字節,則定義如下:
struct stu
{
union{
char bj[5];
int bh[2];
}class;
char xm[8];
float cj;
}xc;
則sizeof(xc)的值為?
9、請問traceroute的工作原理

【46家著名(ming)公司筆試(shi)題目(轉自應屆生求職網)】相關文章:

編輯求職筆試題目10-19

麥肯錫(McKinsey)求職筆試題目10-24

kpmg求職筆試題目速記10-19

應屆生求職的筆試攻略10-26

應屆生求職筆試攻略10-25

廣州日報求職筆試題目10-20

【本科應屆生求職】南京蘇寧樂購仕筆試面試+KPMG筆試-2012.10.2010-27

軟件測試從筆試到終面――我的騰訊求職記(轉)10-29

求職筆試歷程---聯通安徽分公司篇10-24