<dfn id="w48us"></dfn><ul id="w48us"></ul>
  • <ul id="w48us"></ul>
  • <del id="w48us"></del>
    <ul id="w48us"></ul>
  • 微軟暑期實習(xí)筆試題

    時間:2024-06-24 21:29:39 綜合指導(dǎo) 我要投稿
    • 相關(guān)推薦

    微軟暑期實習(xí)筆試題

      發(fā)信人: loccs(short), 信區(qū): JobForum

    微軟暑期實習(xí)筆試題

      發(fā)信站: 飲水思源 (2012年04月07日18:53:56 星期六)Choose部分是我自己做的答案,非標(biāo)準(zhǔn)答案.有些題目選項記不起來了,非常抱歉.

      1. Selection sort 80 items, after 32 iterations, how many positions of items are determined?

      Choose:32。

      2. Which is used in sync process//thread in operation system?

      A. Mutex                  B.mailbox          C.Semaphore          D.local procedure callChoose: AC

      3. Size of a stack is 5, input is a sequence 1, 2, …, 7, which is possible output?

      A. 1234567        B. 7654321        C.5643721        D. 1765432        E. 3217564Choose: AC

      4. 010111001 * 011001 + 1101110 = ?

      A. 0001010000111111        B. 0101011101110011        C. 0011010000110101Choose: A

      5. What is the output of the follow code?

      void main(int argc, char* argv[]) {

      int i = 11;

      int const *p = &i;

      p++;

      cout<<*p<

      A. 11        B. 12        C. Garbage value        D. Comipler error        E. None of aboveChoose: C

      6. Which code is correct?

      C. vectorf() {

      vectorv(3);

      return v;

      }

      E. None of above

      Choose: C

      7. Which number has difference 78633 after 180-degree rotation?

      A. 60918                B.91086                C. 18609                D. 10968                E.86901Choose: D

      8 Which statement is true?

      A. Inorder and preorder can determine a Binary treeB. Postorder and preorder can determine a Binary treeC. For almost sorted array, Insertion sort is more efficient than QuicksortD. If T(n)=2T(n/2)+&#8854;(n), Then T(n)=&#8854;(nLogn)E. none of above

      Choose: ACD

      9. Which statement is true?

      A. Insertion and buble sort are not effient for large data setsB. The complexity of Quick Sort is O(n2) in worst caseC. It is needed 6 swap operations to sort sequence 7,6,5,4,3,2,1(ascending) by Selection sortD. Heap sort has two operations: Insertion and root deletionE. None of above

      No choose

      12. The output of the following code is 0 20 1 20, what are the type of a and b?

      class Test{

      ____ int a;

      ____ int b;

      Test(int _a, int _b) {a = _a; b=_b;}

      }

      void main() {

      Test t1(0, 0), t2(1,1);

      t1.b = 10;

      t2.b = 20;

      cout<

      A. static/const        B. const/static        C. __/static        D. const static/static        E. None ofabove

      Choose: C

      13. A 3-order B-tree has 2047 key words, what is the maximum height?

      A. 11          B. 12           C. 13           D. 14no choose

      14. Which can be used both to variable and function?

      A. static        B. virtual                C. extern        D. inline        E. constChoose: ACE

      15. What is the output of the follow code?

      char * f(char *str, char ch) {

      char *it1 = str;

      char *it2 = str;

      while(*it2 != \0) {

      while(*it2 == ch)

      {

      it2++;

      }

      *it1++ = *it2++;

      }

      return str;

      }

      int main(int argc, char* argv[]) {

      char *a = new char[10];

      strcpy(a, "abcdcccd");

      cout<

      return 0;

      }

      A. abdcccd        B. abdd        C. abcc        D. abddcccd        E. Access violationChoose: D

      16. What is the complexity of the result call of power(b, e) in the follow code?

      int power(int b, int e) {

      if(e==0) return 1;

      if(e%2 == 0) return power(b*b, e/2);

      return b*power(b*b,e/2);

      }

      A. logarithmic                B. linear        C. quadratic        D. exponenticalChoose: A

      17. Take 2 cards from one full poker(52 cards, 26 red and 26 black) and half poker each, what is the probability of the event that two cards are both red?

      A. 1/2,1/2        B. 25/102,12/50        C. 50/51, 24/25        D. 25/51,12/25        E. 25/51,1/2Choose: B

      18. How many kinds of output of stack with the input 1,2,…,n?

      B. C_2n^n-C_2n^(n+1)                C. ((2n)!)/(n+1)n!n!        D. n!        E. noneChoose: C

      19. What is the minimum time and space complexity to compute the Largest Increased Subsequence(LIS) of array?

      A. N^2,N^2           B. N^2,N                   C. NlogN,N            D. N, N        E. N,CChoose: C

      20. What is the output of the follow code?

      struct Item{

      char c;

      Item *next;

      };

      Item* f1(Item* x){

      Item *prev = NULL;

      Item *curr = x;

      while(curr) {                Item *next = curr->next;curr->next = prev;

      prev = curr;

      curr = next;

      }

      return prev;

      }

      void f2(Item *x){

      while(x){

      cout

      x = x->next;

      }

      }

      int main(int argc, char* argv[]){

      Item *x, d = {d, NULL}, c = {c, &d}, b = {b, &c}, a = {a, &b};x = f1(&a);

      f2(x);

      return 0;

      }

      Choose: dcba


    【微軟暑期實習(xí)筆試題】相關(guān)文章:

    微軟招聘試題11-16

    微軟的筆試試題02-18

    用微軟試題膨脹你的思維11-11

    微軟面試題(迷語篇)02-18

    微軟招聘趣味邏輯測試題11-09

    微軟公司秘密面試題!11-19

    面試者頭疼的微軟試題從哪來面試技巧02-18

    讓人頭疼的微軟面試題從哪里來02-24

    微軟公司面試的智力測試題11-19

    鵬華基金暑期實習(xí)筆試題回憶11-21

    主站蜘蛛池模板: 久久夜色精品国产噜噜亚洲AV| 久久综合国产乱子伦精品免费| 欧美精品福利在线视频 | 麻豆精品不卡国产免费看| 亚洲色精品vr一区二区三区| 成人精品一区二区三区在线观看| 2022精品天堂在线视频| 日韩av无码久久精品免费| 日韩午夜高清福利片在线观看欧美亚洲精品suv | 日韩人妻精品无码一区二区三区| 精品国产91久久久久久久a | 久久精品成人国产午夜| 国产精品无码av在线播放| 亚洲综合无码精品一区二区三区| 精品久久久久久99人妻| 99久久国产综合精品成人影院 | 国产成人精品手机在线观看| 日韩精品一区二区午夜成人版 | 亚洲精品无码mv在线观看网站| 久久精品成人免费观看97| 999久久久国产精品| 国产亚洲婷婷香蕉久久精品| 国内精品伊人久久久久AV影院| 亚洲无码精品浪潮| 久久久精品日本一区二区三区 | 久久精品国产精品亚洲人人| 国产精品99无码一区二区| 久久精品国产只有精品2020| 国产欧美久久久精品| 98视频精品全部国产| 囯产精品一品二区三区| 国产三级久久久精品麻豆三级| 久久久无码精品亚洲日韩按摩| 无码人妻精品一区二区| 日韩精品无码AV成人观看| 色久综合网精品一区二区| 国产精品日韩欧美一区二区三区 | 日韩精品电影一区亚洲| 欧美精品高清在线xxxx| 亚洲乱码日产精品a级毛片久久| 亚洲精品综合久久|