Tip 1 : Go through previous interview questions because they repeat
Tip 2 : Explain the concepts well to the interviewer and keep it interactive
Tip 3 : Study high level system design in depth
Tip 1: Mention projects relevant to the job role
Tip 2: Put only those skills which you are confident about
Online Coding test on Hackerrank
3 coding questions in 90 minutes



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
Consecutive count of every character in the input string is less than or equal to 9. You are not required to print anything. It has already been taken care of. Just implement the given function and return the compressed string.
used stack to solve the problem
Basic Data Structures and Algorithm questions



For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
Tip 1:Study tree in depth
Tip 2:study tree algorithms well
Tip 3:instead of giving the most optimized solution, try first to give the correct solution
Basic Computer Science fundamental questions were asked
Difference between multiprogramming and multi threading
Tip 1:Study OS basic concepts
Tip 2: Don't waste time in solving numericals
Tip 3: Frankly tell the interviewer if you don't know the answer
High level System Design
Design Netflix
Tip 1: Study system design in depth
Tip 2: Be familiar how to scale your design
Tip 3: Be familiar with concepts like single point of failure
Basic HR questions
Why you want to join Arcesium
What are your expectations from Arcesium
Tip 1: Show the HR that you are really interested in Arcesium
Tip 2: Study about the company
Tip 3: Try to negotiate

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?