Tip 1 : prepare basic of datastructure and algorithms
Tip 2 : communication skill must good
Tip 3 : adding good 2 project in resume will give you good impact on interviewer
Tip 1 : add projects
Tip 2 : add skills on which you are confident
Aptitude round with some basic of coding language and 2 coding problem



For the given array [5, 8, 4, 9]
The sum of the elements of the array will be
5 + 8 + 4 + 9 = 26.
Since 26 is not a single-digit number, we will again take the sum of the digits of 26.
2 + 6 = 8.
Now 8 is a single-digit number. So we will stop here and return 8.
I run a loop and added all the elements of an array and store it inside a variable sum and return that variable sum



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
Asked question on sorting and linkedlist



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Bubble Sort Algorithm
Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst case time complexity is quite high.
How Bubble Sort Works?
Consider an array arr[] = {5, 1, 4, 2, 8}
First Pass:
Bubble sort starts with very first two elements, comparing them to check which one is greater.
( 5 1 4 2 8 ) –> ( 1 5 4 2 8 ), Here, algorithm compares the first two elements, and swaps since 5 > 1.
( 1 5 4 2 8 ) –> ( 1 4 5 2 8 ), Swap since 5 > 4
( 1 4 5 2 8 ) –> ( 1 4 2 5 8 ), Swap since 5 > 2
( 1 4 2 5 8 ) –> ( 1 4 2 5 8 ), Now, since these elements are already in order (8 > 5), algorithm does not swap them.
Second Pass:
Now, during second iteration it should look like this:
( 1 4 2 5 8 ) –> ( 1 4 2 5 8 )
( 1 4 2 5 8 ) –> ( 1 2 4 5 8 ), Swap since 4 > 2
( 1 2 4 5 8 ) –> ( 1 2 4 5 8 )
( 1 2 4 5 8 ) –> ( 1 2 4 5 8 )
Third Pass:
Now, the array is already sorted, but our algorithm does not know if it is completed.
The algorithm needs one whole pass without any swap to know it is sorted.
( 1 2 4 5 8 ) –> ( 1 2 4 5 8 )
( 1 2 4 5 8 ) –> ( 1 2 4 5 8 )
( 1 2 4 5 8 ) –> ( 1 2 4 5 8 )
( 1 2 4 5 8 ) –> ( 1 2 4 5 8 )



Assume that the Indexing for the singly linked list always starts from 0.
Discussion with hr about my background
Can you join immediately, is there any issue with location, on which technology you would like to work, salary negotiation, where do you live, graduation completeion date
Tip 1 : be confident
Tip 2 : discussion everything you have in your mind
Tip 3 : give all your detail honestly don't lie

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