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> 
    class CuriousTab
    {
        int x; 
        float y; 
        public:
        CuriousTab(int x)
        {
            x = x;
        }
        CuriousTab(int p = 0, int q = 10)
        {
            x = p += 2; 
            y = q * 1.0f;
        }
        void SetValue(int &y, float z)
        {
            x = y;
            y = (int)z;
        }
        void Display(void)
        {
            cout<< x;
        }
    };
    int main()
    {
        int val = 12; 
        CuriousTab objCuriousTab(val); 
        CuriousTab objTmp();
        objCuriousTab.SetValue(val, 3.14f); 
        objCuriousTab.Display(); 
        return 0; 
    }


  • Options
  • A. The program will print the output 2.
  • B. The program will print the output 12.
  • C. The program will report run time error.
  • D. The program will not compile successfully.

  • Correct Answer
  • The program will not compile successfully. 


  • More questions

    • 1. How many times a constructor is called in the life-time of an object?

    • Options
    • A. Only once
    • B. Twice
    • C. Thrice
    • D. Depends on the way of creation of object
    • Discuss
    • 2. What will be the output of the following program?
      #include<iostream.h> 
      int main()
      {
          float Amount;
          float Calculate(float P = 5.0, int N = 2, float R = 2.0);
          Amount = Calculate(); 
          cout<< Amount << endl; 
          return 0;
      }
      
      float Calculate(float P, int N, float R)
      {
          int Year = 1;
          float Sum = 1 ;
          Sum = Sum * (1 + P * ++N * R);
          Year =  (int)(Year + Sum);
          return Year; 
      }

    • Options
    • A. 21
    • B. 22
    • C. 31
    • D. 32
    • E. None of these
    • Discuss
    • 3. Which of the following is an abstract data type?

    • Options
    • A. int
    • B. double
    • C. string
    • D. Class
    • Discuss
    • 4. Can a class have virtual destructor?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 5. 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
    • 6. Which of the following cannot be declared as virtual?

    • Options
    • A. Constructor
    • B. Destructor
    • C. Data Members
    • D. Both A and C
    • Discuss
    • 7. 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
    • 8. 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
    • 9. A class's __________ is called when an object is destroyed.

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

    • Options
    • A. one
    • B. two
    • C. no
    • D. three
    • Discuss


    Comments

    There are no comments.

Enter a new Comment