logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Functions See What Others Are Saying!
  • Question
  • 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

  • Correct Answer
  • 32 


  • More questions

    • 1. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      static int Result;
      class India
      {
          public:
          void Change(int x = 10, int y = 20, int z = 30)
          {
              cout<< x + y + z;
          }
          void Display(int x = 40, float y = 50.00)
          {
              Result = x % x; 
              cout<< Result;
          }
      };
      class CuriousTab
      {
          int x, y; 
          public:
          void Change(int x, int y = 50)
          {
              cout<< x + y;
          }
      };
      class CuriousTab: public India, public CuriousTab
      {
          public:
          void Display(int x = 10, int xx = 100, int xxx = 1000)
          {
              Result = x + xx % x * x;
              cout<< Result ; 
          }
      };
      int main()
      {
          CuriousTab objCuriousTab;
          objCuriousTab.India::Display(10, 20.00);
          return 0; 
      }

    • Options
    • A. The program will print the output 0.
    • B. The program will print the output 10.
    • C. The program will print the output 30.
    • D. The program will print the output 40.
    • E. The program will report compile time error.
    • Discuss
    • 2. Which one of the following is the correct way to declare a pure virtual function?

    • Options
    • A. virtual void Display(void){0};
    • B. virtual void Display = 0;
    • C. virtual void Display(void) = 0;
    • D. void Display(void) = 0;
    • Discuss
    • 3. Which of the following concepts of OOPS means exposing only necessary information to client?

    • Options
    • A. Encapsulation
    • B. Abstraction
    • C. Data hiding
    • D. Data binding
    • Discuss
    • 4. What does the class definitions in following code represent?
      class Bike
      {
          Engine objEng;
      };
      class Engine
      {
          float CC;
      };

    • Options
    • A. kind of relationship
    • B. has a relationship
    • C. Inheritance
    • D. Both A and B
    • Discuss
    • 5. A function with the same name as the class, but preceded with a tilde character (~) is called __________ of that class.

    • Options
    • A. constructor
    • B. destructor
    • C. function
    • D. object
    • Discuss
    • 6. How many objects can be created from an abstract class?

    • Options
    • A. Zero
    • B. One
    • C. Two
    • D. As many as we want
    • Discuss
    • 7. Which of the following statement is correct?

    • Options
    • A. Constructor has the same name as that of the class.
    • B. Destructor has the same name as that of the class with a tilde symbol at the beginning.
    • C. Both A and B.
    • D. Destructor has the same name as the first member function of the class.
    • Discuss
    • 8. Which of the following statements is correct?

      1. A reference is not a constant pointer.
      2. A referenced is automatically de-referenced.

    • Options
    • A. Only 1 is correct.
    • B. Only 2 is correct.
    • C. Both 1 and 2 are correct.
    • D. Both 1 and 2 are incorrect.
    • Discuss
    • 9. Which of the following provides a reuse mechanism?

    • Options
    • A. Abstraction
    • B. Inheritance
    • C. Dynamic binding
    • D. Encapsulation
    • Discuss
    • 10. What will be the output of the following program?
      #include<iostream.h> 
      class Tab
      {
          public:
            int x;
      };
      int main()
      {
          Tab *p = new Tab();
      
          (*p).x = 10;
          cout<< (*p).x << " " << p->x << " " ;
      
          p->x = 20;
          cout<< (*p).x << " " << p->x ;
      
          return 0;
      }

    • Options
    • A. 10 10 20 20
    • B. Garbage garbage 20 20
    • C. 10 10 Garbage garbage
    • D. Garbage garbage Garbage garbage
    • Discuss


    Comments

    There are no comments.

Enter a new Comment