What is the output of the following code?
#include <iostream>
using namespace std;
class professor
{
public:
professor() { cout << "professor "; };
};
class researcher
{
public:
researcher() { cout << "researcher "; };
};
class teacher : public professor
{
public:
teacher() { cout << "teacher "; };
};
class myprofessor : public teacher, public virtual researcher
{
public:
myprofessor() { cout << "myprofessor "; };
};
int main()
{
myprofessor obj;
system("pause");
return 0;
}
#include <iostream>
using namespace std;
class professor
{
public:
professor() { cout << "professor "; };
};
class researcher
{
public:
researcher() { cout << "researcher "; };
};
class teacher : public professor
{
public:
teacher() { cout << "teacher "; };
};
class myprofessor : public teacher, public virtual researcher
{
public:
myprofessor() { cout << "myprofessor "; };
};
int main()
{
myprofessor obj;
system("pause");
return 0;
}
Sai
B là đáp án đúng
Chính xác
Suy nghĩ trả lời câu hỏi trước khi xem đáp án
ATNETWORK
Lời giải:
Báo sai
Câu hỏi này thuộc ngân hàng trắc nghiệm dưới đây, bấm vào Xem chi tiết để làm toàn bài
400 Câu hỏi trắc nghiệm lập trình C/C++ có đáp án và lời giải chi tiết
Tổng hợp câu hỏi trắc nghiệm lập trình C/C++ có đáp án và lời giải đầy đủ nhằm giúp các bạn dễ dàng ôn tập lại toàn bộ các kiến thức.
ADMICRO
YOMEDIA
ZUNIA9