由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 发两个软件组的面试题
相关主题
一道面试的选择题问一道c++面试题
one C++ question一道count frequency of all words的面试题
发发面经 攒人品 C++的一道面试题,求解
c++ vs Java virtual 实现(Y家)请教ebay 的面试题一道
A question about C++. Thanks.面试结束,晒3个 Java面试题,请大家讨论。
请教1个工作面试题C++ online Test 一题
请教C/C++小新Qualcomm面经
问个面试题a c++ interview question
相关话题的讨论汇总
话题: xml话题: test话题: endl话题: cout话题: class
进入JobHunting版参与讨论
1 (共1页)
s*********y
发帖数: 615
1
在会议室里看到上个礼拜面试新毕业生的东西,,发两个出来,估计可能对大家也没啥
实际作用,反正等着开会也没啥事干,,就当给自己以后找工作攒个人品了。。呵呵,
,我不会软件组的,所以也不知道难易,也没答案
behavioral:
What is the hardest software problem that you have debugged. how did you go
about doing it? what caused the bug
XML Parser(我们的东西会用到xml。所以)
XML exists to define tests available on some system:




Design and implement a class to:
1.store and manage the test records parsed from this XML file.
2. Obtain a test name and filename given a test identifier.
An XML parser has been written for you, apply named TestXmlParser. The
TestXmlParser will use your class to store the test records. As such a
public method with the following signature must be provided by your class:
void addTestData(int id, const std::string& name, const std::string& file);
另外一个
Order of constructors/destructor
Provide the terminal output for the following program:
#include
using namespace std;
class A
{
public:
A() {cout <<"A"< ~A() {cout <<"~A"< };
class B:public A
{
public:
B() {cout <<"B"< ~B() {cout <<"~B"< };
int main()
{
A*a=new A;
B*b=new B;
A*c=new B;
delete b;
delete a;
delete c;
return 0;
}
1 (共1页)
进入JobHunting版参与讨论
相关主题
a c++ interview questionA question about C++. Thanks.
包子呼唤大牛--问关于C++Destructor的问题 (转载)请教1个工作面试题
问个C++重新编译的问题请教C/C++小
C++面试问题,高人请进啊~~~问个面试题
一道面试的选择题问一道c++面试题
one C++ question一道count frequency of all words的面试题
发发面经 攒人品 C++的一道面试题,求解
c++ vs Java virtual 实现(Y家)请教ebay 的面试题一道
相关话题的讨论汇总
话题: xml话题: test话题: endl话题: cout话题: class