点滴

IT博客 首页 新随笔 联系 聚合 管理
  103 Posts :: 81 Stories :: 50 Comments :: 0 Trackbacks
Test Paper for Software Design Engineer

(Test time: 60 minutes)

Name:                   Date:                   Location:



Part 1: Technical Skills Set

(请将 “ ● ”paste在您所掌握的技能程度表格内,并注明您的使用时间和相关的证书)

技能列表  精通     熟练   掌握    了解   使用时间(月)  所获证书

English (oral)
  
English (written)
  
OOP  programming skills
  
C/C++ (pointer, memory)
  
Java
  
C#
  
NET
  
算法&数据结构
  
Win API experience –plus
  
  
Part 2 : Technical Test

1.  实现二分查找的递归算法的函数。(使用C++,不建议用伪码)











2.  请指出该程序的错误。

#include <iostream.h>



int *p;



void Function();

{

     int n;

     n = 25;

     p = &n;

}



void main()

{

     Function();

     cout<<"value of *p: "<<*p<<endl;

}













3. 英语写作

Question: Please describe your career path in the next two years.
posted on 2006-10-11 15:06 天空 阅读(2164) 评论(0)  编辑 收藏 引用 所属分类: 软件测试笔试面试
只有注册用户登录后才能发表评论。