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>
    #include<string.h> 
    class CuriousTab
    {
        char txtMsg[50]; 
        public:
        CuriousTab(char *str = NULL)
        {
        if(str != NULL)
           strcpy(txtMsg, str);
        }
        int CuriousTabFunction(char ch);
    };
    int CuriousTab::CuriousTabFunction(char ch)
    {
        static int i = 0;
        if(txtMsg[i++] == ch)
            return strlen((txtMsg + i)) - i;
        else
            return CuriousTabFunction(ch);
    }
    int main()
    {
        CuriousTab objCuriousTab("Welcome to CuriousTab.com!");
        cout<< objCuriousTab.CuriousTabFunction('t');
        return 0;
    }


  • Options
  • A. 6
  • B. 8
  • C. 9
  • D. 15
  • E. 16

  • Correct Answer



  • More questions

    • 1. Which of the following statement is correct with respect to the use of friend keyword inside a class?

    • Options
    • A. A private data member can be declared as a friend.
    • B. A class may be declared as a friend.
    • C. An object may be declared as a friend.
    • D. We can use friend keyword as a class name.
    • Discuss
    • 2. Which of the following statement is correct?

    • Options
    • A. Class is an instance of object.
    • B. Object is an instance of a class.
    • C. Class is an instance of data type.
    • D. Object is an instance of data type.
    • Discuss
    • 3. Which of the following functions are performed by a constructor?

    • Options
    • A. Construct a new class
    • B. Construct a new object
    • C. Construct a new function
    • D. Initialize objects
    • Discuss
    • 4. Which of the following statement is correct?

    • Options
    • A. A constructor has the same name as the class in which it is present.
    • B. A constructor has a different name than the class in which it is present.
    • C. A constructor always returns an integer.
    • D. A constructor cannot be overloaded.
    • Discuss
    • 5. What will be the output of the following program?
      #include<iostream.h> 
      typedef void(*FunPtr)(int);
      int Look(int = 10, int = 20);
      void Note(int); 
      int main()
      {
          FunPtr ptr = Note;
          (*ptr)(30); 
          return 0;
      }
      int Look(int x, int y)
      {
          return(x + y % 20);
      }
      void Note(int x)
      {
          cout<< Look(x) << endl;
      }

    • Options
    • A. 10
    • B. 20
    • C. 30
    • D. 40
    • E. Compilation fails.
    • Discuss
    • 6. Which of the following statement is correct about the program given below?
      #include<iostream.h>
      void Tester(float xx, float yy = 5.0);
      class CuriousTab
      {
          float x; 
          float y; 
          public:
          void Tester(float xx, float yy = 5.0)
          {
              x = xx;
              y = yy;
              cout<< ++x % --y; 
          }
      };
      int main()
      {
          CuriousTab objCuriousTab;
          objCuriousTab.Tester(5.0, 5.0);
          return 0; 
      }

    • Options
    • A. The program will print the output 0.
    • B. The program will print the output 1.
    • C. The program will print the output 2.
    • D. The program will print the output garbage value.
    • E. The program will report compile time error.
    • Discuss
    • 7. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      long FactFinder(long = 5); 
      int main()
      {
          for(int i = 0; i<= 0; i++)
              cout<< FactFinder() << endl; 
          return 0;
      }
      long FactFinder(long x)
      {
          if(x < 2)
              return 1; 
          long fact = 1; 
          for(long i = 1; i <= x-1; i++)
              fact = fact * i; 
          return fact; 
      }

    • Options
    • A. The program will print the output 1.
    • B. The program will print the output 24.
    • C. The program will print the output 120.
    • D. The program will print the output garbage value.
    • E. The program will report compile time error.
    • Discuss
    • 8. How many types of polymorphisms are supported by C++?

    • Options
    • A. 1
    • B. 2
    • C. 3
    • D. 4
    • Discuss
    • 9. What will be the output of the following program?
      #include<iostream.h> 
      class CuriousTabTest
      {
          public:
          CuriousTabTest(int &x, int &y)
          {
              x++;
              y++;
          } 
      };
      int main()
      {
          int a = 10, b = 20;
          CuriousTabTest objBT(a, b); 
          cout<< a << " " << b; 
          return 0; 
      }

    • Options
    • A. 10 20
    • B. 11 21
    • C. Garbage Garbage
    • D. It will result in a compile time error.
    • Discuss
    • 10. Which of the following statement is correct?

    • Options
    • A. The order of the default argument will be right to left.
    • B. The order of the default argument will be left to right.
    • C. The order of the default argument will be alternate.
    • D. The order of the default argument will be random.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment