Pseudo interview
Pseudo-interview style questions grouped by Programming, OOP, Web, and Database.
Showing 1–15 of 19 items
Programming
1Find distance between two nodes of binary search tree.
2given an array find subarray sum equal to target, write proper code covering all the edge cases.
3Given a linkedlist remove duplicates without using extra space, write proper code covering all edge cases.
4Given a matrix find the sub-matrix of size n by n which includes only 1.
OOP
1Is the given senario function overloading
Void foo(int) Void foo(long) If yes then what would be the answer of foo(5).
2What is Diamond problem, if classes are empty would the diamond problem persist.
3What is the difference in class and object.
4What is the function overloading and overriding.
5What is polymorphism.
6What is bufferstring?
7How exception handling works in c++, explain try catch finally, can we have more than one try, catch or finally
Web
1What would happen if i use PUT instead of POST.