Tip 1 : Practice at least 250 Questions
Tip 2 : Do at least 2 projects.
Tip 3 : Practice DSA daily.
Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.
This round is on google meet where they asked questions related to DSA. It is hour-long interview



getSize: Returns an integer. Gets the current size of the stack
isEmpty: Returns a boolean. Gets whether the stack is empty
push: Returns nothing. Accepts an integer. Puts that integer at the top of the stack
pop: Returns nothing. Removes the top element of the stack. It does nothing if the stack is empty.
getTop: Returns an integer. Gets the top element of the stack. Returns -1 if the stack is empty




Each element of the sequence should be distinct.
The sequence should be of length 'N'.
Each element should have a value between 1 to 60000.
Let 'M' denote the sum of all the elements of the sequence and 'K' be the gcd of all the elements of the sequence then 'K' should be equal to 1 and for each element, 'A[i]' (0 <= i < 'N') gcd of 'A[i]' and 'M' should not be equal to 1.
Let 'N' = 3.
'A' = {2, 3, 63} satisfies all the conditions of the cool sequence.
This round is more type of company introduction and discussion type
What are your strengths and weakness?
What do you think about challenges?
What is your biggest achievement till now?
What do you know about the work ethics here in Tailnode?

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