面试-先到面试网(mian4.com)查询面试公司相关信息招聘会面试网QQ交流群:141667671  登录 快速注册 帮助

搜公司

搜职位

加入分享工资待遇

免费分享12.0000家公司的待遇、评论、面试及工作环境信息!

面试网笔试SAP中国笔试员工笔试
SAP中国员工笔试试题及答案:
  1.below is usual way we find one element in an array:

  const int *find1(const int* array, int n, int x)

  {

  const int* p = array;

  for(int i = 0; i < n; i )

  {

  if(*p == x)

  {

  return p;

  }

   p;

  }

  return 0;

  }

  in this case we have to bear the knowledge of value type "int", the size of

  array,

  even the existence of an array. would you re-write it using template to elim

  inate all

  these dependencies?

  2. assume you have a class like

  class erp

  {

  hr* m_hr;

  fi* m_fi;

  public:

  erp()

  {

  m_hr = new hr();

  m_fi = new fi();

  }

  ~erp()

  {

  }

  };

  if "new fi()" failed in the constructor, how can you detect this problem and

  release the

  properly allocated member pointer m_hr?

  3. check the class and variable definition below:

  #include

  #include

  using namespace std;

  class base

  {

  public:

  base() { cout<<"base-ctor"< ~base() { cout<<"base-dtor"< virtual void f(int) { cout<<"base::f(int)"< virtual void f(double) {cout<<"base::f(double)"< virtual void g(int i = 10) {cout<<"base::g()"<};

  class derived: public base

  {

  public:

  derived() { cout<<"derived-ctor"< ~derived() { cout<<"derived-dtor"< void f(complex) { cout<<"derived::f(complex)"< virtual void g(int i = 20) {cout<<"derived::g()"<};

  base b;

  derived d;

  base* pb = new derived;

  select the correct one from the four choices:

  cout

  cout

  pb->f(1.0);

  a.derived::f(complex) b.base::f(double)

  pb->g();

  a.base::g() 10 b.base::g() 20

  c.derived::g() 10 d.derived::g() 20

  4.implement the simplest singleton pattern(initialize if if necessary).

  5.name three sort algorithms you are familiar with. write out the correct or

  der by the

  average time complexity.

  6.write code to sort a duplex direction linklist. the node t has overridden

  the comparision operators

以下是网友对SAP中国员工笔试试题及答案的回答:

报歉,目前还没有相关答案。我来抢答案?
  • 当前共有0条记录,每页0条,当前0/0
  • 上一页
  • 下一页
中南财经政法大学成教 武汉大学成教 武汉理工大学成教 武汉科技大学成教 华中农业大学成教 湖北工业大学成教 湖北中医药大学成教 武汉成人高考网 孝感成人高考网 荆州成人高考网 咸宁成人高考网 宜昌成人高考网 襄阳成人高考网 十堰成人高考网 武汉自考网 黄冈自考网 宜昌自考网 襄阳自考网 十堰自考网 湖北成人高考报名网 湖北自考报名网 湖北大学成教 湖北工业大学成教 湖北中医药大学成教 华中农业大学成教 武汉大学成教网 武汉科技大学成教 武汉理工大学成教 中南财经政法大学成教 上海成考网 上海自考网 中南财经政法大学自考 中南财经政法大学自考 华中师范大学自考招生网 武汉大学自考招生网 武汉大学自考专升本 武汉理工大学自考 湖北大学自考 华中农业大学自考 湖北中医药大学自考 湖北工业大学自考 华中师范大学自考招生网 湖北中医药大学成教 湖北中医药大学成教 武汉理工大学成教 武汉科技大学成教 武汉大学成教 湖北工业大学成教 湖北大学成教 华中农业大学成教 中南财经政法大学成教 华中师范大学成教 湖北中医药大学自考 武汉理工大学自考 武汉大学自考 湖北工业大学自考 湖北大学自考 华中农业大学自考 中南财经政法大学自考 华中师范大学自考
快捷答题卡

昵称:

答案:

(按Ctrl+Enter可快速提交)