logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Functions See What Others Are Saying!
  • Question
  • Which of the following statement is correct about the program given below?
    #include<iostream.h> 
    static double gDouble; 
    static float  gFloat; 
    static double gChar; 
    static double gSum = 0; 
    class BaseOne
    {
        public:
        void Display(double x = 0.0, float y = 0.0, char z = 'A')
        {
            gDouble = x;
            gFloat  = y;
            gChar   = int(z);
            gSum    = gDouble + gFloat + gChar;
            cout << gSum; 
        }
    };
    class BaseTwo
    {
        public: 
        void Display(int x = 1, float y = 0.0, char z = 'A')
        {
            gDouble = x;
            gFloat  = y;
            gChar   = int(z); 
            gSum    = gDouble + gFloat + gChar;
            cout << gSum;
        }
    };
    class Derived : public BaseOne, BaseTwo
    {
        void Show()
        {
            cout << gSum;
        } 
    }; 
    int main()
    {
        Derived objDev;
        objDev.BaseTwo::Display(10, 20, 'Z');
        return 0; 
    }


  • Options
  • A. The program will print the output 0.
  • B. The program will print the output 120.
  • C. The program will report run-time error.
  • D. The program will report compile-time error.
  • E. The program will print the output garbage value.

  • Correct Answer
  • The program will report compile-time error. 


  • More questions

    • 1. Which of the following statement is correct?

    • Options
    • A. A referenced has to be de-referenced to access a value.
    • B. A referenced does not need to be de-referenced to access a value.
    • C. A referenced has to be double de-referenced to access a value.
    • D. Whether a reference should be de-referenced or not depends on the type of the reference.
    • Discuss
    • 2. Which of the following cannot be declared as virtual?

    • Options
    • A. Constructor
    • B. Destructor
    • C. Data Members
    • D. Both A and C
    • Discuss
    • 3. What will be the output of the following program?
      #include<iostream.h> 
      class CuriousTab
      {
          int x; 
          public:
          CuriousTab(int xx, float yy)
          {
              cout<< char(yy);
          } 
      }; 
      int main()
      {
          CuriousTab *p = new CuriousTab(35, 99.50f);
          return 0; 
      }

    • Options
    • A. 99
    • B. ASCII value of 99
    • C. Garbage value
    • D. 99.50
    • Discuss
    • 4. What will be the output of the following program?
      #include<iostream.h> 
      class CuriousTabTeam
      {
          int x, y; 
          public:
          CuriousTabTeam(int xx)
          {
              x = ++xx;
          }
          void Display()
          {
              cout<< --x << " ";
          }
      };
      int main()
      {
          CuriousTabTeam objBT(45);
          objBT.Display();
          int *p = (int*)&objBT;
          *p = 23;
          objBT.Display();
          return 0; 
      }

    • Options
    • A. 45 22
    • B. 46 22
    • C. 45 23
    • D. 46 23
    • Discuss
    • 5. A class's __________ is called when an object is destroyed.

    • Options
    • A. constructor
    • B. destructor
    • C. assignment function
    • D. copy constructor
    • Discuss
    • 6. A constructor that accepts __________ parameters is called the default constructor.

    • Options
    • A. one
    • B. two
    • C. no
    • D. three
    • Discuss
    • 7. Which one of the following is correct about the statements given below?

      1. All function calls are resolved at compile-time in Procedure Oriented Programming.
      2. All function calls are resolved at compile-time in OOPS.

    • Options
    • A. Only II is correct.
    • B. Both I and II are correct.
    • C. Only I is correct.
    • D. Both I and II are incorrect.
    • Discuss
    • 8. How can we make a class abstract?

    • Options
    • A. By making all member functions constant.
    • B. By making at least one member function as pure virtual function.
    • C. By declaring it abstract using the static keyword.
    • D. By declaring it abstract using the virtual keyword.
    • Discuss
    • 9. Copy constructor must receive its arguments by __________ .

    • Options
    • A. either pass-by-value or pass-by-reference
    • B. only pass-by-value
    • C. only pass-by-reference
    • D. only pass by address
    • Discuss
    • 10. What will happen if a class is not having any name?

    • Options
    • A. It cannot have a destructor.
    • B. It cannot have a constructor.
    • C. It is not allowed.
    • D. Both A and B.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment