Tip 1 : Practice DS & ALGO questions without any day off to help improve your problem solving.
Tip 2 : Get your CS fundamentals strong.
Tip 1 : Have some projects on resume.
Tip 2 : You should not fake things on your resume.
A subarray is a contiguous subset of an array.
The array may contain duplicate elements.
The given array follows 0-based indexing.
It is guaranteed that there exists at least one subarray of size K.
This round was mostly resume-based. The interviewer asked about my projects and asked technical questions related to them. He then asked 1 DS question which was to detect whether the linked list is a circular linked list or not. He also asked me for a puzzle in the end.
1. A linked list is said to be circular if it has no node having its next pointer equal to NULL and all the nodes form a circle i.e. the next pointer of last node points to the first node.
2. An empty linked will also be considered as circular.
3. All the integers in the linked list are unique.
4. In the input, the next pointer of a node with i’th integer is linked to the node with data (i+1)’th integer (If (i+1)’th node exists). If there is no such (i+1)’th integer then the next pointer of such node is set to NULL.
He first asked me about my native town and where do I live currently. He then asked about my family background. Then he asked about my long-term and short-term goals. He also asked on which tech stack do I work currently and whether would I be comfortable if I had to shift my working tech stack during the internship period.
Tip 1 : Jo go through the company's website or LinkedIn profile and get to know the company.
Tip 2 : Prepare 2-3 questions you would ask to the HR.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which of the following ensures referential integrity in SQL?