MCQs > IT & Programming > Java > Output of the following program: class education { char name[10]; public : disp() { cout<<'Its education system'; } class school:public education { public: void dsip() { cout<<'Its school education system'; } }; void main() { school s; s.disp(); } }

Java MCQs

Find the output of the following program:

class education
{
    char name[10];
    public : disp()
    {
        cout<<"Its education system";
    }
    class school:public education
    {
        public: void dsip()
        {
            cout<<"Its school education system";
        }
    };
    void main()
    {
                school s;
                s.disp();
    }
}


Answer

Correct Answer: Its school education system

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Java Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Java Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it