Tip 1 : First have over view of the concepts through theory and then do the practical implementation.
Tip 2 : Make an habit of solving atleast 5-7 problems daily. (Doesn't matter big or small).
Tip 3 : Once you finish a course/topic, always make a project on those with the topics you have covered. This will help you understand what have you grasped properly and what need to be focused on.
Tip 1 : Always try to highlight your projects that you have made.
Tip 2 : Never lie in the Skill section. Because that's the main section every recruiter/interviewer is keen of. There is no use of mentioning the skills (tech) which you don't poses. That may ultimately put you in unfavorable situation in an interview (as it will make a 'not so good' impression on the interviewer).
The exam was scheduled around 11 am.



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Following are the steps involved in bubble sort(for sorting a given array in ascending order):
Starting with the first element(index = 0), compare the current element with the next element of the array.
If the current element is greater than the next element of the array, swap them.
If the current element is less than the next element, move to the next element. Repeat Step 1.
Let's consider an array with values {5, 1, 6, 2, 4, 3}
#include
void bubbleSort(int arr[], int n)
{
int i, j, temp;
for(i = 0; i < n; i++)
{
for(j = 0; j < n-i-1; j++)
{
if( arr[j] > arr[j+1])
{
// swap the elements
temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;
}
}
}
// print the sorted array
printf("Sorted Array: ");
for(i = 0; i < n; i++)
{
printf("%d ", arr[i]);
}
}
int main()
{
int arr[100], i, n, step, temp;
// ask user for number of elements to be sorted
printf("Enter the number of elements to be sorted: ");
scanf("%d", &n);
// input elements if the array
for(i = 0; i < n; i++)
{
printf("Enter element no. %d: ", i+1);
scanf("%d", &arr[i]);
}
// call the function bubbleSort
bubbleSort(arr, n);
return 0;
}
The interviewer gave us the current topic on Article370. We had have a Group Discussion on that citing the details of Article 370.
In the HR Round, the HR asked some basic questions like give your introduction, why you want to join our company and discussed about the salary structure.
1. Tell me about yourself.
2. Why we should hire you.
3. Why you want to join our company.
4. Under circumstance x , how would you perform.
5. In absence of a senior, how will you manage client
Tip 1 : be confident
Tip 2 : speak politely
Tip 3 : be firm with your answers, dont change them if interviewer cross - questions you

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?