Tip 1 : Practice python from internet
Tip 2 : Practice SQL from internet
Tip 3 : Keep your hands on big data tools
Tip 1 : Don't add waste things just add things related to your job profile
Tip 2 : Make it a single page resume
Tip 3 : Use online standard templates
Program + SCQ
Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
Use two for loop to iterate through every possible sub string and check if it contain any repeated charater.
Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.
The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
It was a easy and much familiar question. So, apply the approach that you applied when you were practising all kinds of sort
Asked python question to solve during interview
The questions were directly based on the Data Structures, easy questions with enough time. Interviewer was very friendly and gave us the enough time to code the solutions.
If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Iterate through elements and reverse the string and store it in new output list
If the given graph is :
Then the edge between 0 and 4 is the bridge because if the edge between 0 and 4 is removed, then there will be no path left to reach from 0 to 4.and makes the graph disconnected, and increases the number of connected components.
There are no self-loops(an edge connecting the vertex to itself) in the given graph.
There are no parallel edges i.e no two vertices are directly connected by more than 1 edge.
Tip 1 : At least practice some important questions of the basic Data Structures
Tip 2 : Keep practising regularly
Basic HR related questions
Tip 1 : Always keep positive approach
Tip 2 : Practice HR related question
Tip 3 : Think and take time to answer
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is 3 + 2 * 4 based on operator precedence?