Tip 1: Edit your resume with respective to the role and company, it works a lot of time
Tip 2: Be Confident even if you are not sure about the thing you are facing, they will see how you react to the situation you are not sure of.
Tip 1 - Initially spend some time on DSA
Tip 2 - Do at least 2 projects with a prime focus on knowing every detail and the tech stack.
Tip 3 - Participate in coding challenges on coding platforms.



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
int s = 0;
int e = len-1;
while(s < e){
if(str[s] != str[e]) return false;
s++;
e--;
}
return true;



import java.util.*;
class GFG {
static void removeDuplicate(char str[], int n)
{
// Create a set using String characters
// excluding '\0'
HashSet s = new LinkedHashSet<>(n - 1);
// HashSet doesn't allow repetition of elements
for (char x : str)
s.add(x);
// Print content of the set
for (char x : s)
System.out.print(x);
}
// Driver code
public static void main(String[] args)
{
char str[] = "geeksforgeeks".toCharArray();
int n = str.length;
removeDuplicate(str, n);
}
}
How much time will it take for an amount of Rs. 450 to yield Rs. 81 as interest at 4.5% per annum of simple interest?
4 years
void solve() {
int a[] = {1, 2, 3, 4, 5};
int sum = 0;
for(int i = 0; i < 5; i++) {
if(i % 2 == 0) {
sum += a[i];
}
}
cout << sum << endl;
}
Ans:- 9
The second round was the Technical Interview. It was conducted on Superset platform
What is Linked List and Its types? (Learn)



In the given linked list, there is a cycle, hence we return true.

Explain Software Development life cycle. (Learn)
Family Structure. (Practice)
Basic Hr questions were asked.
Introduce yourself.
Where do you see yourself after 5 years?
Strengths and weaknesses.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: