毕业论文 校园活动 入党 考试

留学 励志 校园爱情 大学 高考

实习实践 简历大全 就业指导

职业规划 自荐 面试 应聘 鉴定

电脑学习 网店 销售 电话营销

市场营销 电子商务 成功创业

总结 报告 计划 体会 方案 党团

材料 发言 行政 合同 礼仪 演讲

热点专题: 大学专业介绍 高校网址 人生格言 人生感悟 留学签证 世界名校 公务员考试 计算机四级考试 考研试题 自学考试 大学英语四级考试 大学英语六级考试 职业规划 校园活动策划 社团活动策划 教育论文 管理论文 大学生入党 求职信 应聘信 自我评价 团日活动 社团活动总结 实习报告 实习周记 大学实习 社会实践 暑假社会实践
搜大学资料:
搜营销资料:
全站搜索:
当前位置:大学生无虑网大学生专栏求职就业指导面试技巧北京爱恩科技笔试题» 正文

北京爱恩科技笔试题

[10-15 19:48:03]   来源:http://www.dxs56.com  面试技巧   阅读:8532
概要:北京爱恩科技发展有限公司笔试考题Name :_______________________Date :________________________Time Start :____________________Time End :_____________________VISUAL BASIC SECTIONQ1 : Grade yourself on your Visual Basic Skill ?1 – poor …….. 10- Advance playerAns: Q2 : Declare Function Multiply_Add Lib “test” (ByRef A as integer ,VeRef B as integer , ByVal c as integer ) as integerQ2.1: Explain what is Declare Function used for ?Ans :Q2.2 : Explain the differen
北京爱恩科技笔试题,标签:公务员面试技巧,面试的技巧,http://www.dxs56.com

北京爱恩科技发展有限公司笔试考题

Name   :_______________________
Date   :________________________
Time Start  :____________________
Time End :_____________________

VISUAL BASIC SECTION

Q1 : Grade yourself on your Visual Basic Skill ?
1 – poor …….. 10- Advance player

Ans: 

Q2 : Declare Function Multiply_Add Lib “test” (ByRef A as integer ,VeRef B as integer , ByVal c as integer ) as integer

Q2.1: Explain what is Declare Function used for ?

Ans :

Q2.2 : Explain the difference between ByRef and ByVal ?

Ans :

Q3 : Is Visual Basic a COMPILER or an INTERPERTER ?

Ans


C++ SECTION

Q4 :
     int iVal1 = 0, iVal2 = 0;
     int * ipVal;

     ipVal = &iVal1;      What is the Value of  ipVal  = *ipVal  =

     ipVal = (int*)iVal1; What is the Value of  ipVal  =   *ipVal  =

     iVal2 = (int)&iVal1; What is the Value of  ipVal  =   *ipVal  =

 
Q5:
void SwapAB(int A, int B)
{
 A=B;
 B=A;
}

 int main()
{
 int A,B;
 A=1;
 B=2;
 SwapAB(A,B);
 return 0;  // A= ?, B= ?
}

What is the value of A and B ?

What is the difference between STRUCTURE and OBJECT ORIENTED PROGRAMMING ?

What is the difference between C and C++ ?


What is an interpreter ?

 
Q6. Step through the following C code and answer the questions

void FillMem(unsigned char *pData, unsigned char len)
{
   while (len--) *pData++ = len; 
}

void main()
{
   unsigned char buffer1[8];
   unsigned char buffer2[8];
   unsigned char * pData;
   unsigned char cnt1, cnt2;

   for (cnt1 = 0; cnt1 < 8; cnt1++)
      buffer1[cnt1] = 0xFF;

   for (cnt1 = 0; cnt1 < 8; cnt1++)
      buffer2[cnt1] = 0xFF;
  
   for (cnt1 = 0, cnt2 = 4; cnt1 < 4; cnt1++, cnt2--)
     buffer1[cnt1] = cnt1;
     buffer2[cnt2] = cnt2;

   /***************************************************************
   Q What is the content of buffer1 & buffer2 ?
   buffer1[0] =      ??      buffer2[0] =             ??
   buffer1[1] =     ??      buffer2[1] =             ??
   buffer1[2] =       ??      buffer2[2] =             ??
   buffer1[3] =       ??      buffer2[3] =              ??

本文章更多内容1 - - -

Tag:面试技巧公务员面试技巧,面试的技巧求职就业指导 - 面试技巧

《北京爱恩科技笔试题》相关文章: