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> 
    class Tab
    {
        int x, y; 
        public:
        void show(void);
        void main(void);
    };
    void Tab::show(void)
    { 
        Tab b;
        b.x = 2;
        b.y = 4;
        cout<< x << " " << y;
    }
    void Tab::main(void)
    {
        Tab b;
        b.x = 6; 
        b.y = 8;
        b.show();
    }
    int main(int argc, char *argv[])
    {
        Tab run;
        run.main();
        return 0; 
    }


  • Options
  • A. 2 4
  • B. 6 8
  • C. The program will report error on Compilation.
  • D. The program will report error on Linking.
  • E. The program will report error on Run-time.

  • Correct Answer
  • 6 8 


  • More questions

    • 1. What will be the output of the following program?
      #include<iostream.h> 
      class Base
      {
          public:
          int S, A, M; 
          Base(int x, int y)
          {
              S = y - y;
              A = x + x; 
              M = x * x;
          }
          Base(int, int y = 'A', int z = 'B')
          {
              S = y;
              A = y + 1 - 1; 
              M = z - 1;
          }
          void Display(void)
          {
              cout<< S << " " << A << " " << M << endl;
          }
      };
      class Derived : public Base
      {
          int x, y, z; 
          public:
          Derived(int xx = 65, int yy = 66, int zz = 67): Base(x)
          {
              x = xx; 
              y = yy;
              z = zz;
          }
          void Display(int n)
          {
              if(n)
                  Base::Display(); 
              else
                  cout<< x << " " << y << " " << z << endl; 
          }
      };
      int main()
      {
          Derived objDev; 
          objDev.Display(-1); 
          return 0;
      }

    • Options
    • A. 65 65 65
    • B. 65 66 67
    • C. A A A
    • D. A B C
    • E. The program will report compile time error.
    • Discuss
    • 2. What will be the output of the following program?
      #include<iostream.h>
      int CuriousTabFunction(int a, int b = 3, int c = 3)
      {
          cout<< ++a * ++b * --c ; 
          return 0;
      }
      int main()
      {
          CuriousTabFunction(5, 0, 0); 
          return 0;
      }

    • Options
    • A. 8
    • B. 6
    • C. -6
    • D. -8
    • Discuss
    • 3. Which of the following statement is correct?

    • Options
    • A. Two functions having same number of argument, order and type of argument can be overloaded if both functions do not have any default argument.
    • B. Overloaded function must have default arguments.
    • C. Overloaded function must have default arguments starting from the left of argument list.
    • D. A function can be overloaded more than once.
    • Discuss
    • 4. What does a class hierarchy depict?

    • Options
    • A. It shows the relationships between the classes in the form of an organization chart.
    • B. It describes "has a" relationships.
    • C. It describes "kind of" relationships.
    • D. It shows the same relationship as a family tree.
    • Discuss
    • 5. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTab
      {
          int x; 
          float y; 
          public:
          void Function()
          {
              x = 4; 
              y = 2.50; delete this;
          }
          void Display()
          {
              cout<< x << " " << y;
          } 
      }; 
      int main()
      {
          CuriousTab *pCuriousTab = new CuriousTab();
          pCuriousTab->Function(); 
          pCuriousTab->Function(); 
          pCuriousTab->Display(); 
          return 0; 
      }

    • Options
    • A. The program will print the output 4 2.5.
    • B. The program will print the output 4.
    • C. The program will report runtime error.
    • D. The program will report compile time error.
    • Discuss
    • 6. What will be the output of the following program?
      #include<iostream.h>
      #include<string.h> 
      class CuriousTab
      {
          char str[50]; 
          char tmp[50]; 
          public:
          CuriousTab(char *s)
          {
              strcpy(str, s);
          }
          int CuriousTabFunction()
          {
              int i = 0, j = 0; 
              while(*(str + i))
              {
                  if(*(str + i++) == ' ')
                      *(tmp + j++) = *(str + i);
              }
              *(tmp + j) = 0; 
              return strlen(tmp); 
          }
      };
      int main()
      {
          char txt[] = "Welcome to CuriousTab.com!";
          CuriousTab objCuriousTab(txt); 
          cout<< objCuriousTab.CuriousTabFunction();
          return 0;
      }

    • Options
    • A. 1
    • B. 2
    • C. 24
    • D. 25
    • Discuss
    • 7. 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
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTabData
      {
          int x, y, z; 
          public:
          CuriousTabData(int xx, int yy, int zz)
          {
              x = ++xx;
              y = ++yy;
              z = ++zz;
          }
          void Show()
          {
              cout<< "" << x++ << " " << y++ << " " << z++;
          } 
      }; 
      int main()
      {
          CuriousTabData objData(1, 2, 3);
          objData.Show();
          return 0; 
      }

    • Options
    • A. The program will print the output 1 2 3.
    • B. The program will print the output 2 3 4 .
    • C. The program will print the output 4 5 6.
    • D. The program will report compile time error.
    • Discuss
    • 9. Which of the following statements is correct about the program given below?
      class CuriousTab
      {
          public:
          static void MyFunction();
      };
      int main()
      {
          void(*ptr)() = &CuriousTab::MyFunction;
          return 0; 
      }

    • Options
    • A. The program reports an error as pointer to member function cannot be defined outside the definition of class.
    • B. The program reports an error as pointer to static member function cannot be defined.
    • C. The program reports an error as pointer to member function cannot be defined without object.
    • D. The program reports linker error.
    • Discuss
    • 10. Which of the following concepts is used to implement late binding?

    • Options
    • A. Virtual function
    • B. Operator function
    • C. Const function
    • D. Static function
    • Discuss


    Comments

    There are no comments.

Enter a new Comment