logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming OOPS Concepts See What Others Are Saying!
  • Question
  • Which of the following is used to make an abstract class?


  • Options
  • A. Declaring it abstract using static keyword.
  • B. Declaring it abstract using virtual keyword.
  • C. Making at least one member function as virtual function.
  • D. Making at least one member function as pure virtual function.

  • Correct Answer
  • Making at least one member function as pure virtual function. 


  • 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