logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming OOPS Concepts See What Others Are Saying!
  • Question
  • Which of the following are available only in the class hierarchy chain?


  • Options
  • A. Public data members
  • B. Private data members
  • C. Protected data members
  • D. Member functions

  • Correct Answer
  • Protected data members 


  • More questions

    • 1. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int main()
      {
          int x = 10, y = 20;
          int *ptr = &x;
          int &ref = y;
      
          *ptr++;
           ref++;    
      
          cout<< x << " " << y;
          return 0; 
      }

    • Options
    • A. The program will print the output 10 20.
    • B. The program will print the output 10 21.
    • C. The program will print the output 11 20.
    • D. The program will print the output 11 21.
    • E. It will result in a compile time error.
    • Discuss
    • 2. What will be the out of the following program?
      #include<iostream.h> 
      class CuriousTabBase
      {
          public:
          int x, y; 
          public:
          CuriousTabBase(int xx = 0, int yy = 0)
          {
              x = xx;
              y = yy; 
          } 
       };
      class CuriousTabDerived : public CuriousTabBase
      {
          private:
              CuriousTabBase objBase; 
          public:
          CuriousTabDerived(int xx, int yy) : CuriousTabBase(xx), objBase(yy)
          {
              cout << x          << " " 
                   << this->x    << " "  
                   << CuriousTabBase::x << " "     
                   << this->objBase.x ;
          } 
          ~CuriousTabDerived()
          { }
      };
      int main()
      {
          CuriousTabDerived objDev(11, 22); 
          return 0;
      }

    • Options
    • A. 11 22 0 0
    • B. 11 11 0 22
    • C. 11 11 11 0
    • D. 11 11 11 22
    • E. The program will report compile time error.
    • Discuss
    • 3. Which of the following statement is correct about the program given below?
      #include<iostream.h>
      class CuriousTab
      {
          int x, y, z; 
          public:
          CuriousTab(int x = 100, int y = 30, int z = 0)
          {
              this->x = x; 
              this->y = y;
              this->z = z; 
              Display();
          }
          void Display()
          {
              cout<< x << " " << y << " " << z;
          }
      };
      int main()
      {
          int a = 0, b = 1, c = 2; 
          int &x = ++a; 
          int &y = --b; 
          int z = c + b - -c; 
          CuriousTab objCuriousTab(x, y, z); 
          return 0; 
      }

    • Options
    • A. The program will print the output 1 0 3.
    • B. The program will print the output 1 0 4.
    • C. The program will print the output 1 1 3.
    • D. The program will print the output 1 1 4.
    • E. The program will report compile time error.
    • Discuss
    • 4. Which of the following statement is correct about the program given below?
      #include<iostream.h>
      #include<string.h>
      #include<malloc.h>
      class CuriousTabString
      {
          char txtName[20]; 
          public:
          CuriousTabString(char *txtTemp = NULL)
          {
              if(txtTemp != NULL)
              strcpy(txtName, txtTemp);
          }
          void Display(void)
          {
              cout<<txtName;
          }
      };
      int main()
      {
          char *txtName = (char*)malloc(10);
          strcpy(txtName, "CuriousTab");
          *txtName = 48;
          CuriousTabString objTemp(txtName);
          cout<< sizeof(txtName);
          return 0; 
      }

    • Options
    • A. Above program will display CuriousTab 8.
    • B. Above program will display CuriousTab 9.
    • C. Above program will display size of integer.
    • D. Above program will display CuriousTab and size of integer.
    • E. Above program will display 1.
    • Discuss
    • 5. What is correct about the following program?
      #include<iostream.h> 
      class Addition
      {
          int x; 
          public: 
          Addition()
          {
              x = 0;
          }       
          Addition(int xx)
          {
              x = xx;
          }
          Addition operator + (int xx = 0)
          {
              Addition objTemp; 
              objTemp.x = x + xx; 
              return(objTemp);
          }
          void Display(void)
          {
              cout<< x << endl;
          }
      };
      int main()
      {
          Addition objA(15), objB;
          objB = objA + 5;
          objB.Display();
          return 0; 
      }

    • Options
    • A. The program will print the output 20.
    • B. The program will report run time error.
    • C. The program will print the garbage value.
    • D. Compilation fails due to 'operator +' cannot have default arguments.
    • Discuss
    • 6. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTabBase
      {
          int x, y; 
          public:
          CuriousTabBase(int xx = 10, int yy = 10)
          {
              x = xx;
              y = yy;
          }
          void Show()
          {
              cout<< x * y << endl;
          }
      };
      class CuriousTabDerived
      {
          private:
              CuriousTabBase objBase; 
          public:
          CuriousTabDerived(int xx, int yy) : objBase(xx, yy)
          {
              objBase.Show();
          }
      };
      int main()
      {
          CuriousTabDerived objDev(10, 20);
          return 0; 
      }

    • Options
    • A. The program will print the output 100.
    • B. The program will print the output 200.
    • C. The program will print the output Garbage-value.
    • D. The program will report compile time error.
    • Discuss
    • 7. What will be the output of the following program?
      #include<iostream.h> 
      class Point
      {
          int x, y; 
          public:
          Point(int xx = 10, int yy = 20)
          {
              x = xx;
              y = yy; 
          }
          Point operator + (Point objPoint)
          {
              Point objTmp;
              objTmp.x = objPoint.x + this->x; 
              objTmp.y = objPoint.y + this->y;
              return objTmp;
          }
          void Display(void)
          {
              cout<< x << " " << y;
          }
      };
      int main()
      {
          Point objP1;
          Point objP2(1, 2);
          Point objP3 = objP1 + objP2;
          objP3.Display(); 
          return 0; 
      }

    • Options
    • A. 1 2
    • B. 10 20
    • C. 11 22
    • D. Garbage Garbage
    • E. The program will report compile time error.
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h>
      #include<string.h> 
      class CuriousTab
      {
          public:
          void GetData(char *s, int x, int y )
          {
              int i = 0;
              for (i = x-1; y>0; i++)
              {
                  cout<< s[i];
                  y--; 
              } 
          }
      }; 
      int main()
      {
          CuriousTab objCuriousTab;
          objCuriousTab.GetData((char*)"Welcome!", 1, 3);
          return 0; 
      }

    • Options
    • A. The program will print the output me!.
    • B. The program will print the output Wel.
    • C. The program will print the output !em.
    • D. The program will print the output Welcome!.
    • E. The program will result in a compile time error.
    • Discuss
    • 9. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int i, j; 
      class CuriousTab
      {
          public:
          CuriousTab(int x = 0, int y = 0)
          {
              i = x; 
              j = x; 
              Display();
          }
          void Display()
          {
              cout<< j <<" ";
          } 
      }; 
      int main()
      {
          CuriousTab objCuriousTab(10, 20); 
          int &s = i; 
          int &z = j; 
          i++;
          cout<< s-- << " " << ++z; 
          return 0; 
      }

    • Options
    • A. The program will print the output 0 11 21.
    • B. The program will print the output 10 11 11.
    • C. The program will print the output 10 11 21.
    • D. The program will print the output 10 11 12.
    • E. It will result in a compile time error.
    • Discuss
    • 10. What will be the output of the following program?
      #include<iostream.h> 
      class Base
      {
          public:
          int S, A, M; 
          Base(int x, int y)
          {
              S = y - y;
              A = x + x; 
              M = x * x;
          }
          Base(int, int y = 'A', int z = 'B')
          {
              S = y;
              A = y + 1 - 1; 
              M = z - 1;
          }
          void Display(void)
          {
              cout<< S << " " << A << " " << M << endl;
          }
      };
      class Derived : public Base
      {
          int x, y, z; 
          public:
          Derived(int xx = 65, int yy = 66, int zz = 67): Base(x)
          {
              x = xx; 
              y = yy;
              z = zz;
          }
          void Display(int n)
          {
              if(n)
                  Base::Display(); 
              else
                  cout<< x << " " << y << " " << z << endl; 
          }
      };
      int main()
      {
          Derived objDev; 
          objDev.Display(-1); 
          return 0;
      }

    • Options
    • A. 65 65 65
    • B. 65 66 67
    • C. A A A
    • D. A B C
    • E. The program will report compile time error.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment