Manhattan associates Interview Questions
0of 0 votesHow does a static member function work?
Where are they stored in memory?
Where the no static member functions of a class are stored in memory
0of 0 votesWhy linux is more stable than windows ?
0of 0 voteswhat are the stuffs a compiler provide to a class ?
0of 0 votesWrite a code snippet print a count no of characters in a number (string can't be used) ?
int count(int num)
{
//code should return no of digits
}
0of 0 votesWhat is the disadvantage of normalization ?
Why can't we follow normalization always ?
0of 0 votesWhat is critical section ?
0of 0 votesWrite an algorithm to avoid and detect deadlock in C++ ?
What is Banker's algorithm ?
0of 0 votesThere is a pool of memory with a specific address. How to make sure the object is always created in that part of memory ?
0of 0 votesHow to forbid the creation of object in
1>Stack
2>Heap
?
0of 0 votesHow to restrict a function so that in can't throw any kind of exception ?
How to restrict a function so that it can throw the exception of a particular type ?