Tip 1 : be very thorough with all the understandings of the work in your current company
Tip 2 : be clear with the basic data structures and algorithmic concepts and practice programming on leetcode(easy)
Tip 3 : know the folder structure of your frameworks and their advantage over others
Tip 1 : your resume at any cost should not be more than one page
Tip 2 : it should be clear and honest
I was asked to do basic programming and was asked questions based on terraform and Jenkins concepts



NestedIterator(vector<NestedInteger> nestedList) Initializes the
iterator with the nested list nestedList.
int next() Returns the next integer in the nested list.
bool hasNext() Returns true if there are still some integers in the nested list and false otherwise.
initialize iterator with nestedList
answer = []
while iterator.hasNext()
append iterator.next() to the end of answer
return answer
Input List: [[1, 1], 2, [1, 1]]
Output List: [1, 1, 2, 1, 1]
Discussion of test Framework
Discussion on terraform
Debugging in Jenkins and network issues
Was clear with the concept of terraform and its usage
Had idea about Jenkins ci and it's functioning
Test fw and folder structure was explained properly with good practices and told honestly what was not solved in my current company.
Told the area of improvements that I did in the company and how I did that
Tip 1 : explain your major contributions like resolving time and making code efficient and easy to use that you've done in your current company
Tip 2 : your debugging skills and knowledge should be good
Tip 3 : leetcode easy and medium is a must
Was asked basic contributions in company and was asked why I wanted to join a new one. This was basically a check on cultural fitment

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?