As last blog mentioned(中软面试题-最新) ,Some outsourcing company,like chinasoft, beyondsoft, vinceinfo, Hisoft,wicresoft, etc. all the process of interview is the same, if you pass the interview of these company, according to the condition of the project to decide whether you are recommended to Microsoft or not, if yes, you have to practice your oral English and some Algorithm. now go to the interview of Beyondsoft:

1.HR will have a interview face to face for your oral English and your ability of expressing your emotion for some thing. then Technical interviewer (Team Leader) will take some technology test.

2.数据库存储过程,ASP.NET 中怎么去调用存储过程。

    其实,在这里主要是考察了ADO.NET中几大特性的运用,例如:Connection,Command,DataReader,Dataset,

DataAdapter。

   博彦科技面试题-最新(上海)

说明:
Connection:建立与特定数据源的连接。 所有 Connection 对象的基类均为 DbConnection 类。
Command:对数据源执行命令。 公开 Parameters,并可在 Transaction 范围内从 Connection 执行。 所有 Command 对象的基类均为 DbCommand 类。
DataReader:从数据源中读取只进且只读的数据流。 所有 DataReader 对象的基类均为 DbDataReader 类。
DataAdapter:使用数据源填充 DataSet 并解决更新。 所有 DataAdapter 对象的基类均为 DbDataAdapter 类。
注意:新手面试经常会遇到考这样的题:ADO.NET 的五大对象,就是 上面四种 + DataSet 要牢牢记住哦。后期开发也经常用到。

3. 简单介绍一下ASP.NET三层架构 可以参考我的博客: 浅析ASP.NET三层架构

4.在未排序的整形数组中,长度大于10,寻找任意一个数,是这个数属于它的最小集。
   对于这个问题,我不知道定义会不会有错,怎样去理解这个最小集,例如:有数组 a=(5,3,4,8,9,2,12,10),那在这个数组中,肯定有一个值 3,属于最小集(3,4)。那这样是不是很好理解呢.找出最小的,再找出第二小的。这样写出来它的时间复杂度就是 O(n),这时候,面试官问,有没有比O(n)更小的算法呢?读者可以考虑一下。
 5.XPath。考查一下xpath 的运用。其中文思创新喜欢考这玩意。在这里写一下小运用:

public void ReadXmlNode(string filepath)
{
    XmlDocument xmldoc 
= new XmlDocument();
    xmldoc.Load(filepath);
    XmlNodeList nodelist 
= xmldoc.SelectNodes(@"/root/employees/employee"); // xpath

    
foreach (XmlNode node in nodelist)
    {
        Console.Write(node.Name 
+ " ");
    }
}

相关文章:

  • 2021-09-27
  • 2021-07-03
  • 2022-12-23
  • 2021-10-18
  • 2021-12-03
  • 2021-11-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
  • 2021-09-18
  • 2021-09-28
  • 2021-06-26
  • 2022-01-21
相关资源
相似解决方案