logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

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


  • Options
  • A. 2
  • B. 0
  • C. 1
  • D. 4

  • Correct Answer


  • Explanation

    One. If there is only one entry possible in the bucket, when the collision occurs, there is no way to accommodate the colliding value. This results in the overlapping of values


  • Technology problems


    Search Results


    • 1. 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
    • 2. A binary tree with 7 nodes will have how many null branches?

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

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

    • Options
    • A. Public
    • B. Protected
    • C. Default
    • D. Private
    • Discuss
    • 5. What is the meaning of VSAM RETURN-CODE 28?
    • Discuss
    • 6. Default constructor accepts how many arguments?

    • Options
    • A. one
    • B. two
    • C. three
    • D. None
    • Discuss
    • 7. Where is the reference stored?

    • Options
    • A. stack
    • B. heap
    • C. queue
    • D. None
    • Discuss
    • 8. How variable declaration in c++ differs that in c?
    • Discuss
    • 9. What is friend function?
    • Discuss
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment