青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

小蟲之家
C++探索之旅

華為筆試題
         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;
  }

         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;
  }

 維爾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 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. 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 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)編寫一個非遞歸函數,刪除一個目錄。
  并比較其性能。


廣東北電面試題目
  英文筆試題
  1. Tranlation (Mandatory)
  CDMA venders have worked hard to give CDMA roaming capabilities via the development of RUIM-essentially, a SIM card for CDMA handsets currently being deployed in China for new CDMA operator China Unicom. Korean cellco KTF demonstrated earlier this year the ability to roam between GSM and CDMA using such cards.However,only the card containing the user’s service data can roam-not the CDMA handset or the user’s number (except via call forwarding).
  2. Programming (Mandatory)
  Linked list
  a. Implement a linked list for integers,which supports the insertafter (insert a node after a specified node) and removeafter (remove the node after a specified node) methods;
  b. Implement a method to sort the linked list to descending order.
  3. Debugging (Mandatory)
  a. For each of the following recursive methods,enter Y in the answer box if 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 below:
  3 10 5 16 8 4 2 1
  
  中文筆試題
  1.漢譯英
  北電網絡的開發者計劃使來自于不同組織的開發者,能夠在北電網絡的平臺上開發圓滿的補充業務。北電網絡符合工業標準的開放接口,為補充業務的開展引入了無數商機,開發者計劃為不同層面的開發者提供不同等級的資格,資格的劃分還考慮到以下因素:補充業務與北電網絡平臺的集合程度,開發者團體與北電網絡的合作關系,等等。
  2.編程
  將整數轉換成字符串:void itoa(int,char);
  例如itoa(-123,s[])則s=“-123”;


posted on 2006-01-20 10:23 小蟲 閱讀(2758) 評論(5)  編輯 收藏 引用 所屬分類: 轉貼

FeedBack:
# re: 求職筆試題[轉]
2011-07-18 19:04 | ROCHA25Phyllis
I think that to get the <a href="http://bestfinance-blog.com/topics/home-loans">home loans</a> from creditors you should present a firm motivation. However, once I've got a college loan, because I wanted to buy a building.   回復  更多評論
  
# re: 求職筆試題[轉]
2011-08-26 06:33 | write my term paper
There're lots of ways to resolve your college essays composing troubles. However, the most reasonable is to buy research paper online.   回復  更多評論
  

<2011年2月>
303112345
6789101112
13141516171819
20212223242526
272812345
6789101112

常用鏈接

留言簿

隨筆分類(7)

C++

Network

Search

最新隨筆

積分與排名

  • 積分 - 7480
  • 排名 - 1351

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美体内谢she精2性欧美| 欧美成人精品高清在线播放| 欧美日韩成人精品| 日韩午夜在线观看视频| 美女视频网站黄色亚洲| 蜜桃精品久久久久久久免费影院| 亚洲乱码久久| 狠久久av成人天堂| 在线观看一区二区视频| 欧美成人午夜激情| 亚洲欧美韩国| 久久久久久久综合色一本| 一区二区三区免费在线观看| 国产精品免费网站| 国产精品一区二区三区四区| 嫩模写真一区二区三区三州| 亚洲视频第一页| 一区二区三区日韩在线观看| 在线播放日韩| 欧美日韩免费网站| 欧美日韩国产999| 欧美体内she精视频在线观看| 欧美国产日韩一区二区三区| 久久精品亚洲一区二区三区浴池| 午夜精品久久久久久久久| 亚洲国产精彩中文乱码av在线播放| 香港成人在线视频| 午夜精品视频在线观看| 久久精品网址| 欧美激情一区二区三区在线视频| 亚洲国产影院| 午夜久久99| 欧美小视频在线| 亚洲高清不卡一区| 亚洲一区三区在线观看| 久久国产高清| 亚洲三级视频| 裸体歌舞表演一区二区| 亚洲精品久久视频| 欧美一区二区三区视频| 欧美激情欧美狂野欧美精品| 久热爱精品视频线路一| 欧美日韩不卡| 亚洲精品一区二区在线观看| 99国产精品久久久久久久| 久久免费精品日本久久中文字幕| 韩国v欧美v日本v亚洲v| 亚洲视频日本| 国产精品福利在线观看网址| 欧美bbbxxxxx| 日韩午夜精品| 亚洲午夜性刺激影院| 国产麻豆日韩| 免费成人高清| 欧美三级不卡| 久久久久久亚洲精品中文字幕| 欧美在线观看一区二区三区| 亚洲国产成人高清精品| 亚洲精品日韩激情在线电影| 国产精品美女主播| 欧美成人免费在线| 国产精品久久看| 亚洲国产另类久久久精品极度| 欧美日韩亚洲一区二区| 久久一二三区| 国产精品爽黄69| 最近中文字幕日韩精品 | 欧美成人嫩草网站| 亚洲免费视频网站| 久久野战av| 久久亚洲国产精品一区二区| 欧美视频在线观看 亚洲欧| 免费看的黄色欧美网站| 国产午夜精品美女毛片视频| 在线亚洲一区观看| 亚洲新中文字幕| 欧美精品成人91久久久久久久| 久久精品国产亚洲a| 亚洲影视在线播放| 在线观看日韩一区| 国产精品―色哟哟| 欧美日韩国产亚洲一区| 中文一区在线| 亚洲人体影院| 欧美激情国产精品| 久久在线精品| 老司机一区二区| 久久久九九九九| 久久久99国产精品免费| 性亚洲最疯狂xxxx高清| 亚洲图片欧美日产| 亚洲一区二区成人| 久久在线免费视频| 亚洲免费福利视频| 国产精品日本一区二区| 久久影视精品| 亚洲欧美另类综合偷拍| 91久久精品国产| 老**午夜毛片一区二区三区| 亚洲在线日韩| 日韩系列在线| 亚洲美女黄色片| 国产一区二区三区在线观看免费| 久久精品夜色噜噜亚洲a∨| 91久久亚洲| 久久视频在线看| 欧美一区中文字幕| 亚洲欧美日本另类| 欧美一级大片在线观看| 亚洲欧美国产制服动漫| 亚洲一区二三| 一区二区福利| 亚洲综合丁香| 欧美在线观看网站| 久久人人爽人人| 亚洲日本无吗高清不卡| 久久色在线播放| 老司机久久99久久精品播放免费| 午夜视频一区在线观看| 先锋影音国产一区| 老鸭窝毛片一区二区三区| 久久中文字幕一区| 亚洲日本欧美日韩高观看| 亚洲人精品午夜在线观看| 亚洲精品久久| 久久久久久伊人| 亚洲第一免费播放区| av不卡免费看| 欧美日本一道本| 久久都是精品| 午夜精品av| 麻豆9191精品国产| 亚洲第一页在线| 牛人盗摄一区二区三区视频| 欧美成人黑人xx视频免费观看| 久久综合给合久久狠狠狠97色69| 欧美日韩精品不卡| 欧美高清视频一区二区三区在线观看| 欧美中文字幕久久| 国产精品国产亚洲精品看不卡15 | 国内精品视频一区| 羞羞视频在线观看欧美| 久久精品亚洲一区二区| 久久成人免费| 国产九区一区在线| 欧美日韩精品免费| 性欧美精品高清| 久久久久久网站| 欧美亚洲视频一区二区| 牛牛精品成人免费视频| 亚洲精品中文字幕在线| 亚洲一区二区不卡免费| 亚洲国产精品电影在线观看| 欧美亚洲一区二区在线| 欧美视频不卡中文| 国产精品99久久久久久人| 欧美激情综合色| 欧美二区不卡| 亚洲精选视频在线| 亚洲精品社区| 国产精品扒开腿做爽爽爽视频 | 男人的天堂成人在线| 好吊妞**欧美| 亚洲欧洲综合| 国产精品久久夜| 久久精品一二三| 欧美成人黄色小视频| 一区二区三区国产精华| 日韩午夜av在线| 国产婷婷色一区二区三区四区| 久久国产精品久久久久久| 久久久久久久久一区二区| 亚洲美女中出| 欧美激情一区二区三区蜜桃视频 | 久久狠狠婷婷| 亚洲精品美女免费| 久久中文字幕导航| 99精品国产高清一区二区| 艳女tv在线观看国产一区| 国产精品美腿一区在线看| 亚洲国产毛片完整版| 欧美日韩妖精视频| 欧美成人伊人久久综合网| 国产精品免费看| 亚洲黄色在线看| 精久久久久久久久久久| 宅男精品视频| 亚洲欧美欧美一区二区三区| 欧美二区在线看| 麻豆精品视频在线| 国内精品久久久久久久果冻传媒| 亚洲天堂成人| 欧美一级久久久久久久大片| 欧美四级电影网站| 夜夜精品视频一区二区| 亚洲美女视频网| 欧美人妖在线观看| 99精品欧美一区二区三区| 亚洲在线观看免费| 国产欧美一区在线|