MTS - RE
MTS - RE Interview Questions and Answers

Asked in Adobe

Q. Given two similar balls, one hollow and one solid, how can you determine which is hollow without destroying them?
To find which ball is hollow, we can compare their weights.
Weigh both balls on a scale and compare their weights.
The hollow ball will weigh less than the solid ball.
If the difference in weight is not noticeable, try rolling both balls on a flat surface.
The hollow ball will roll differently due to its hollow center.

Asked in Adobe

Q. If you are having a system which supports only stack as its internal data structure, then how will you implement a queue using this system?
Implementing a queue using two stacks to reverse the order of elements.
Use two stacks: Stack1 for enqueue and Stack2 for dequeue.
To enqueue, push elements onto Stack1.
To dequeue, if Stack2 is empty, pop all elements from Stack1 to Stack2, reversing the order.
If Stack2 is not empty, simply pop from Stack2 to dequeue.
Example: Enqueue(1), Enqueue(2), Enqueue(3) -> Stack1: [1, 2, 3]; Dequeue() -> Stack2: [3, 2, 1] -> returns 1.

Asked in Adobe

Q. Implement a stack such that push, pop, and find_max functions have O(1) time complexity.
Implement a stack with O(1) push, pop and find_max functions.
Use two stacks, one for storing the elements and the other for storing the maximum element at each level
When pushing an element, compare it with the top element of the maximum stack and push the maximum of the two
When popping an element, pop from both stacks
When finding the maximum element, return the top element of the maximum stack

Asked in Adobe

Q. Given a series of pictorial figures, find the next figure.
The answer cannot be determined without additional information.
There must be a pattern or rule to follow in the series of pictorial figures
Without knowing the pattern or rule, it is impossible to determine the next figure
Examples of patterns could include rotation, reflection, or addition of elements
Asked in Department Of Ex Servicemen Welfare

Q. What is the purpose of a security guard?
Security guards are responsible for maintaining a safe and secure environment by patrolling and monitoring premises.
Prevent theft, vandalism, and other criminal activities
Monitor surveillance cameras and alarms
Control access to restricted areas
Respond to emergencies and provide assistance
Report any suspicious activity or incidents to authorities
Provide customer service and assistance to visitors
Enforce company policies and procedures
Maintain accurate records and reports
Attend...read more
Interview Experiences of Popular Companies




Calculate your in-hand salary
Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary


Reviews
Interviews
Salaries
Users

