中文国产日韩欧美视频,午夜精品999,色综合天天综合网国产成人网,色综合视频一区二区观看,国产高清在线精品,伊人色播,色综合久久天天综合观看

軟件開發(fā)筆試題目

時間:2024-11-03 02:28:33 資料大全 我要投稿

軟件開發(fā)筆試題目

  1、輸出結果4

軟件開發(fā)筆試題目

  #include

  void Example(char acHello[])

  {

  printf("%d",sizeof(acHello));

  //printf("%d",strlen(acHello));//自己加的區(qū)別一下

  }

  void main()

  {

  char acHello[]="hello";

  Example(acHello);

  return ;

  }

  2、求輸出1+2=65534

  unsigned short *Sum( unsignedchar a,unsignedchar b)

  {

  unsigned shortS=0;

  S=a+b;

  return &S;

  }

  int main()

  {

  unsigned short*p=NULL;

  unsigned chara=1,b=2;

  p=Sum(a,b);

  printf("%u+%u",a,b);

  printf("=%u\n",*p);

  retun 0;

  }

  3、輸出結果300 44

  void main()

  {

  unsigned chara=200;

  unsigned charb=100;

  unsigned charc=0;

  c=a+b;

  printf("%d%d",a+b,c);

  }

  4、輸出結果0x0,0x0,ê?0x100,0xff00

  int main()

  {

  char cA;

  unsigned charucB;

  unsigned shortusC;

  cA=128;

  ucB=128;

  usC=cA+ucB;

  printf("0x%x\n",usC);

  usC=cA+(short)ucB;

  printf("0x%x\n",usC);

  usC=(unsigned char)cA+ucB;

  printf("0x%x\n",usC);

  usC=cA+(char)ucB;

  printf("0x%x\n",usC);

  }

  5、void main()

  {論文聯(lián)盟http://wWw.LWlM.cOM

  int i;

  //characNew[20]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

  //strlen(acNew)輸出結果10

  char acNew[20];

  //strlen(acNew)輸出結果是29

  for(i=0;i<10;i++)

  {

  acNew='0';

  }

  printf("%d\n",strlen(acNew));

  return ;

  }

  6、void PrintBlue()

  {

  charpcBlue[]={'b','l','u','e'};

  printf("%s",pcBlue);

  return 0;

  }正確的是

  A、pcBlue數(shù)組初始化時沒有字符串結束符

  B、數(shù)組pcBlue定義時必須指定長度

  第二部分簡答題

  1、進程與線程的區(qū)別聯(lián)系

  2、說明時間片的分配方式有哪些?各有什么優(yōu)缺點?

  3、說明mutex、semaphore的概念?有何區(qū)別?

  4、簡要描述一下什么是實時操作系統(tǒng)和一般操作系統(tǒng),它們有何區(qū)別/

  5、有個例子忘了,主要是要結合例子說明DHCP獲取IP的方式

  6、BT與迅雷的工作方式

  答案:首先..兩者所采用的協(xié)議完全不同..BT是用的BT專用協(xié)議..像一樓講的一樣..其是一種P2P技術..即點對點..在BT網(wǎng)絡中...很有可能只有一個種子文件..其它人都是從這個種子文件進行下載的..然后每個下載者之間再互傳..BT下載從理論上講是下載的同時必需上傳給其它人分享.

  而迅雷所支持的協(xié)議是傳統(tǒng)FTP和HTTP協(xié)議以及迅雷專用協(xié)議...迅雷專用協(xié)議不是典型的P2P協(xié)議..你如果仔細看迅雷下載過程的話就會發(fā)現(xiàn)...迅雷很大一部份不是P2P.而是搜索資源..比如你用迅雷下載一個文件..迅

  雷是從迅雷服務器上搜索所有和你下載的文件名稱且大小更或者 hash值一樣的資源..然后迅雷可以以多線程從不同的服務器上面下載...所以迅雷下載快.

  BT下載對應的方式是:

  ┌下載者┐

  種子┤ │

  └下載者┘

  而迅雷的下載方式是:

  資源一 ┐

  資源二 │--- 下載者

  ...... │

  資源N ┘

  7、通常所用的家庭網(wǎng)和校園網(wǎng)有哪些網(wǎng)絡設備和服務器?(結合TCP/IP協(xié)議棧的知識說明)

  8、說明TYPE &var表達式的含義

  9、模板與宏的相似之處,有何不同,各有什么優(yōu)缺點?

  10、如何申明一個成員函數(shù),使其可以訪問類的數(shù)組成員?////好像是這個意思,具體的問法忘了

  11、如何申明一個成員函數(shù),使其不可以修改類的數(shù)組成員?//好像是這個意思,具體的問法忘了

  12、請說明一下IPAD2在上市之前需要做哪些必要地測試?

  13、一個關于路由器的地址配置的說明表格,就是讓你修改一下表格,使其的默認網(wǎng)關以及分配地址都是按照題目要求中的地址//表格數(shù)據(jù)太多,沒有記清楚,反正就是熟悉一下路由器、IP地址分配方面的知識

  第三部分編程題

  要求寫一個函數(shù),實現(xiàn)將一個節(jié)點插入到雙向鏈表中

  就這么多了,感覺自己這趟筆試有打醬油了,最后祝大家好運!

  1,數(shù)模 模數(shù)轉換前的LPF分別是什么作用?

  2,兩道放大電路的計算題啊,應該跟簡單,無奈不學基本模電很多年了 木有辦法啊{:74:}

  3,若有一家手機公司給你打電話,提出一些要求,請你寫出一套方案來(研發(fā)的,英文的){:51:}

  4,阻抗匹配的理解

  5, FIR IIR的區(qū)別,該題目我一看出現(xiàn)在了測試類,我就要哭了,為什么為什么,考前20分鐘的時候,我偏偏對自己說,不會考的,,

軟件開發(fā)筆試題目

資料共享平臺

軟件開發(fā)筆試題目》(http://www.szmdbiao.com)。。。后悔啊,俺就湊合了兩行

  6,P1dB,IIP3,等等 反復的問,我已經被問暈掉了 測試研發(fā)必考

  7, 接收機噪聲系數(shù)的問題

  8,射頻同軸電纜的指標參數(shù)

  9,默寫麥克斯韋方程組啊 哭死鳥啊,背了幾遍都是記錯了,后悔啊

  10,一個簡單的IIP3計算,公式看了,忘記了,木有辦法的啊 還是不會。。。

  11, RBW

  12,頻譜分析儀的幾個選擇題,記不太清了,反正是基本的 好像是問 它的測量精度和什么有關系(多選)

  WCDMA OAM Verification Engineer –BJ

  1-1Explain/Describe the UMTS physical network architecture, and indicate the interface used between devices.

  1-1 In UMTS,what’s the difference between AAL2 and AAL5?

  1-2 In UMTS,what do FDD and TDD mean?

  1-3 Describe the processor of hardover and soft handover?

  1-4 Describe the spread mechanism used in UMTS, and please draw the power spectrum before and after spreading.

  1-5 Please describe the functionalities of rake recEiver?

  2-1 Explain (draw) the 4 TCP-IP layer.

  2-2 What’s DNS? What’s domain name? What’s the relationship between IP address and domain name?

  2-3 What’s IP routing? Please list and explain several routing protocols.

  2-4 What’s the function of firewall?

  2-5 Please explain telnet and ssh protocol.What’s the difference between them?

  3-1 List the Network Management System you know.

  3-2 What’s the purpose of UMTS Network Management System.

  3-3 List all the functions UMTS Network Management tool should provide and give your explanation about these functions.

  3-4 Please describe the network performance optimization in UMTS network management system?

  4-1 What are the meaning of these commands.

  ls df cp chmod chown mv tar cpio init 0 init 6 vi aa.txt ifconfig netstat-a ps grep find(give example) iostat uname cat more tail head wc

  5-1 In a Unix shell script, how to export the number of arguments of a script?

  5-2 There is one variable in the shell script named “sample name”, please write a script to check whether it is a file or a directory name. Please output in this format: directory : samplename or file: samplename.

  5-3 Please write a Unix shell script which ask user to input a sentence and output each work in a line.

  for example:

  input :

  run test3.sh

  promt : enter some text : I like the korn shell.

  Output :

  I like the korn shell

  5-4 Please write a regular expression to replace “Micheal” with “Mike” in this file :ResumeOfMicheal and output to another file named ResumeOfMike.

  6-1 Explain the meaning og the following computer science abbreviations

  UML CORBA IDL JRE JNLP JMS DHCP VBA DLL DDBC

  6-2 Please list the software life cycle model you know .describe one model in terms of advantage and disadvantage.

【軟件開發(fā)筆試題目】相關文章:

C語言軟件開發(fā)筆試題目08-29

筆試題目05-29

美的筆試的題目06-18

職場經典筆試題目07-21

UBI 筆試題目05-19

APL筆試題目10-05

雅虎筆試題目09-25

Adobe筆試題目06-23

用友筆試題目08-15

SUN筆試題目09-05