博文

[置顶] 笔试题目汇总(2006-10-29 22:56:00)

摘要:第一篇 笔试题目
Intel今年笔试题
●第一道是一个编译器优化的题目。条件大致说在ZF为0或者不为0的情况下,分别有两条移位指令可以移进去。然后出了两个小题,要你优化。
●第二道是N个人围成一圈报数,报到某一个数的就出局,问你最后剩下来的那个人的号码。编程题。
●第三道大致如下:
以下两个程序哪个的performance高,并解释为什么。
a)
extern int foo(void);
int main()
{
int i;
for(i=0;i<10000;i++) foo();
return i;
}
b)
extern int foo(void);
int i;
int main()
{
for(i=0;i<10000;i++) foo();
return i;
}   
●智力题
将如下图形(边长相等,即突出的都是正方形)割成几块,再拼成一个正方形,要求最少最少。
      ---
      |    |
 ---     ---
 |               |
 ---     ---
      |    |
---            
● ee试卷考的是电磁场波导,拉式变化,电容器等内容
●下面的程序是否正确,如正确,给出结果,否则,说明理由。
#inclu......

阅读全文(9310) | 评论:0

看看老外怎么写简历(2) (2006-11-22 16:00:00)

摘要:简历的写法有多种模式,老外写简历也不是一成不变的。我们再来看看R. Louis Green是怎么写他的简历的吧! R. Louis Green
847 University Blvd., Apt. 3, Syracuse, NY 13244
Phone: (315) 555-3214 -- Cell: (315) 555-3834
Email Address: rgreen@syracuse.edu Profile Creative problem-solver and marketer, who can see the big picture while never losing sight of details that deliver results. Motivated team player with demonstrated talent for deploying research and organizational skills toward analyzing, upgrading, and streamlining complex marketing processes for improvement opportunities. Enthusiastic self-starter who can boost productivity, cut costs, foster efficiency, and ensure profitability. Goal-driven achiever with strong organizational skills, detail-oriented. Education    Bachelor of Business Administration
   Syracuse University, Syracuse, NY
   Graduation Date: May 2003
   Major: Marketing
   Minor: Information Technology
 &nbs......

阅读全文(3317) | 评论:0

看看老外怎么写简历(1)(2006-11-22 15:57:00)

摘要:英文简历一向是困扰中国学生的难题,很多人都是套用中文简历的模式,将中文翻译过去,用来凑数,毕竟如果是找国内的企业,英文简历多数不过是用来装门面而已。但如果要应聘外企的话,您可就得在简历上多下点功夫了。本网向大家推出一些原版英文简历,供大家参考使用。 Peter David Stevens
University of Texas at Austin
1 University Station - C2369
Austin, TX 78712
(512) 555-3454
pdstevens@utexas.edu
http://www.utexas.edu/~pdstevens/
--------------------------------------------------------------------------------      EDUCATION        BACHELOR OF BUSINESS ADMINISTRATION IN MARKETING 
                      University of Texas, Austin, TX, May 2002 
                      College and Graduate School of Business 
                 &nb......

阅读全文(3160) | 评论:0

原版English计算机求职简历(2006-11-22 15:53:00)

摘要:下面是一位计算机专业本科生的求职简历。尽管没有正式工作过,Charlotte Brockington 用丰富的兼职工作经历和在学校中的工作经历向招聘者表明了自己的能力。在描述自己的经历和经验时,Charlotte Brockington把自己所负责的具体事务都写得很清楚,这样给人更直观的感觉。不管是应届毕业生还是经验丰富的职场老手,在写简历时都应该注意这一点。 Charlotte Brockington 4720 West 49th Street . Denver, CO 80439 . 303-555-1234
E-mail: charB@worldnet.att.net OBJECTIVE To contribute strong technical skills and experience in a Jr. Systems Analyst capacity. PROFESSIONAL PROFILE Rising systems professional with significant experience; computer literate in multiple operating systems, programming languages, and software applications with cutting-edge knowledge of technological changes and their business implications; enthusiastic about applying new technologies, enhancing current technical expertise, and applying transferable skill sets. Enthusiastic, knowledge-hungry self-starter, eager to meet challenges and quickly assimilate newest and latest technologies, skills, concepts, and ideas. Highly analytical team player with aptitude for quic......

阅读全文(5006) | 评论:0

新完成的一道笔试题目(2006-11-02 17:34:00)

摘要: 题目:用你所熟悉的任意一种程序语言,编写一个完整的过程,将一个字符串插入到另一个字符串的某个位置后面(例如:将“abc”插入到“abcdef”的第三个字符位置后面,结果为“abcabcdef”)。编写程序时,请在必要的地方加以注释(注:不能用该程序语言的内置函数或过程)。 char* insert(char *dest,char *src,int n)
{
 char *end = dest;
 char *subend = src;
 while(*end++ != '\0');//find the end of the string
 while(*subend++ != '\0');//find the end of the string
 int m = subend-src-1;//strlen of src
 while(end>=dest+n)//remove the chars in dest
 {
  *(end+m) = *end;
  end--;
 }
 end++;
 while(*src != '\0')//insert src into dest
 {
  *end++ = *src++;
 }
 return dest;
}
int main()
{
 char a[10]="12345";
 char b[3]="ab";
 printf("%s\n",insert(a,b,2));
 cin.get();
 return 0;
}......

阅读全文(3748) | 评论:0

我写的一道华为题目答案(2006-10-31 22:35:00)

摘要: 题目:在一个字符串中找出   数字串的个数!  
  如   "sadf234lkji8999lkwekj80";   则输出   3!  
  int   FindNum(   cosnt   char   *   str   );   #include <stdio.h>
#include <ctype.h> int FindNum (const char *str)
{
 int i = 0;
 while (*str != '\0')
 {
  if (isdigit(*str))
  {
   i++;
   str++;
   while (*str != '\0' && isdigit(*str))
   {
    str++;
   }
  }
  else
  {
   str++;
  }
 }
 return i;
}
int main()
{
 char p[100];
 printf("Please input your string:\n");
 gets(p);
 int i = FindNum(p);
 printf("result:%d\n",i);
 return 0;......

阅读全文(4750) | 评论:3

Resume Writing 简历写作(2006-10-26 12:19:00)

摘要:Developing a resume is the first step in any successful job search. The average resume is written out of necessity. Everyone knows you have to have one to get a job. Your resume is like your personal movie trailer. You want your resume to capture your employer's interest, so they'll want to learn more about you. An effective resume will quickly highlight who you are, where you can be reached, and information about your most recent educational or training experiences. To make writing your resume as painless as possible, assemble the following information before you begin:
·Personal information such as name, address, phone, and e-mail address
·Current job objective
·Education and training
·Work experience, including duties and dates of employment
·Accomplishments (particularly as they relate to work experience)
·Specific skills and abilities
·Information about software knowledge or machinery you can operate
·References if possible.
对于应届毕业生来说,将自己所获奖项及所发表过的......

阅读全文(2365) | 评论:0

我的处女面——北京亚控(2006-10-26 12:10:00)

摘要:昨天(10.25)下午的考试,后来晚上就收到了通知。考得题目都是C++的基本知识,题目也很老。不知道这个公司如何,下午去了再说了,如今的人才市场,还是买方的市场阿。 面试经过:郁闷,快有一个小时。聊得倒挺投机的,把我做过的项目好好的介绍了一下,发挥的还不是很过分。作为第一次面试,感觉还可以了。告知我所有笔试的人员当中,很少有过70的,我就68。预料到的,本来就觉得自己答得不是很好,不过,没有想到别的人有那么的差。呵呵……而且,介绍后的亚控也让我很是振奋,所经营的三个软件产品在国内也都很是领先,而且说公司几乎不加班,一切都进行顺利,正当我信心鼓舞的准备为之奋斗时。却告知工资只有3500,转正后也就5000。其实也无所谓了,还可以。不过,既没有年终奖,又说那边的房租那么贵。只好暂且搁置了,我的处女面啊,可惜了! 明天还有文思呢,加油了! 2006.10.26......

阅读全文(3973) | 评论:2

近期笔试总结,中科后(2006-10-24 15:40:00)

摘要:最近也参加了不少的笔试了,从汉略一直到今天下午的中科软。说收获的话倒没有什么,唯一印象的就是一次次的别鄙视,可怜了我的满腹信心。经验总结下来,也就是说书看得还是不够多,还要继续努力。要不这样,也只能一次一次浪费笔试机会。明天后还有更多的机会,要加油了!......

阅读全文(394) | 评论:0