当前位置:七七学习网文章资讯求职指南求职笔试面试笔试题目西门子笔试归来» 正文

西门子笔试归来

[11-09 04:20:48]   来源:http://www.77xue.com  笔试题目   阅读:8868
概要:刚刚从西十二胜利大逃亡,呵呵,西门子的笔试也太bt了!什么都要考,/PSoftware Engineering Process ,UML/design patterns ,Java ,C /C ,Database,Hardware,全E文的,看来西门子要全才啊!全球500强的要求也太高了吧,呵呵,看来自己也需要全面提高啊!附:西门子笔试C++编程题一道:写出程序的output#i nclude iostream.hclass A {private: int num;public:A() {coutDefault constructor endl;}~A() {coutDesconstructor endl;coutnumendl;}A(const A a){coutCopy constructorendl;}void operator=(const A a) {coutOverload operatorendl;}void SetNum(int n) {num=n;}};
西门子笔试归来,标签:驾照笔试题目,腾讯笔试题目,http://www.77xue.com

  

刚刚从西十二胜利大逃亡,呵呵,西门子的笔试也太bt了!什么都要考,/P

Software Engineering Process ,UML/design patterns ,Java ,C /C ,Database,

Hardware,全E文的,看来西门子要全才啊!全球500强的要求也太高了吧,呵呵,看来自己也需要全面提高啊!

附:西门子笔试C++编程题一道:

写出程序的output
#i nclude iostream.h

class A {
private:
int num;
public:
A() {
coutDefault constructor endl;
}
~A() {
coutDesconstructor endl;
coutnumendl;
}
A(const A a){
coutCopy constructorendl;
}
void operator=(const A a) {
coutOverload operatorendl;
}
void SetNum(int n) {
num=n;
}
};

void main()
{
A a1;
A a2(a1);
A a3=a1;
A a4=a1;
a1.SetNum(1);
a2.SetNum(2);
a3.SetNum(3);
a4.SetNum(4);
}



Tag:笔试题目驾照笔试题目,腾讯笔试题目求职指南 - 求职笔试面试 - 笔试题目

《西门子笔试归来》相关文章

联系我们 | 网站地图 | 范文大全 | 管理知识 | 教学教育 | 作文大全 | 语句好词
Copyright http://www.77xue.com--(七七学习网) All Right Reserved.
1 2 3 4 5 6 7 8 9 10