logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Default constructor accepts how many arguments?


  • Options
  • A. one
  • B. two
  • C. three
  • D. None

  • Correct Answer
  • None 

    Explanation

    Default constructors has no arguments


  • Technology problems


    Search Results


    • 1. What could be the bucket size if collision and overlapping occur at same time?

    • Options
    • A. 2
    • B. 0
    • C. 1
    • D. 4
    • Discuss
    • 2. What are the methods are available in storing sequential files?

    • Options
    • A. Natural merging
    • B. Polyphase sort
    • C. Distribution of Initial runs
    • D. All the above
    • Discuss
    • 3. A binary tree with 7 nodes will have how many null branches?

    • Options
    • A. 6
    • B. 7
    • C. 8
    • D. 5
    • Discuss
    • 4. Which of the following methods doesn't use sorting?

    • Options
    • A. Insertion
    • B. Deletion
    • C. Exchange
    • D. Selection
    • Discuss
    • 5. Which among the following are not access Specifiers in C++?

    • Options
    • A. Public
    • B. Protected
    • C. Default
    • D. Private
    • Discuss
    • 6. Where is the reference stored?

    • Options
    • A. stack
    • B. heap
    • C. queue
    • D. None
    • Discuss
    • 7. How variable declaration in c++ differs that in c?
    • Discuss
    • 8. What is friend function?
    • Discuss
    • 9. What is the output of this program? #include using namespace std; struct sec { int a; char b; }; int main() { struct sec s ={25,50}; struct sec *ps =(struct sec *)&s; cout << ps->a << ps->b; return 0; }

    • Options
    • A. 252
    • B. 253
    • C. 254
    • D. 262
    • Discuss
    • 10. What are the mandatory part to present in function pointers?

    • Options
    • A. &
    • B. retrun values
    • C. data types
    • D. none of these
    • Discuss


    Comments

    There are no comments.

Enter a new Comment