Tip 1 : Practice basic questions of coding like write a program for table of 5.
Tip 2 : Practice SQL query questions.
Tip 3 : Learn Excel from basic to advance.
Tip 1: Add at least 2 projects.
Tip 2: Don't put irrelevant information in the resume.
Tip 3: The resume should be clean and crisp.
In this round the interviewer gave me 2 coding questions, 1-2 SQL query questions, and asked some concepts from Microsoft excel.



Given an array, arr of n integers, and an integer element x, find whether element x is present in the array.
Iterate over all the elements of the array and check if it the current element is equal to the target element. If we find any element to be equal to the target element, then return the index of the current element. Otherwise, if no element is equal to the target element, then return -1 as the element is not found



You are given a string s. Write a program to determine if the string is a palindrome
Create two utility functions to get the first and last position of characters present in the string.
Start traversing the string, and keep finding the position of the first and last characters every time.
If the first and last characters are the same for every iteration and the string is traversed completely, then print YES, otherwise print NO.

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