All prep collections

Pseudo interview

Pseudo-interview style questions grouped by Programming, OOP, Web, and Database.

Showing 115 of 19 items

  1. Programming

  2. 1Find distance between two nodes of binary search tree.

  3. 2given an array find subarray sum equal to target, write proper code covering all the edge cases.

  4. 3Given a linkedlist remove duplicates without using extra space, write proper code covering all edge cases.

  5. 4Given a matrix find the sub-matrix of size n by n which includes only 1.

  6. OOP

  7. 1Is the given senario function overloading

    Void foo(int) Void foo(long) If yes then what would be the answer of foo(5).

  8. 2What is Diamond problem, if classes are empty would the diamond problem persist.

  9. 3What is the difference in class and object.

  10. 4What is the function overloading and overriding.

  11. 5What is polymorphism.

  12. 6What is bufferstring?

  13. 7How exception handling works in c++, explain try catch finally, can we have more than one try, catch or finally

  14. Web

  15. 1What would happen if i use PUT instead of POST.