Tip 1 : Must have at least two good projects
Tip 2 : prepare only basic DSA problems.
Tip 3 : Oops concept should be very clear.
Tip 1 : Resume should be in a single page if you are fresher
Tip 2 : add details about your projects
The first interview round was based on technical questions. most of the questions were basic fundamentals of coding like oops concept etc. You must have knowledge about SDLC and Agile Methodology as well.



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.
import java.io.*; // for handling input/output
import java.util.*; // contains Collections framework
// don't change the name of this class
// you can add inner classes if needed
class Main {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
//ABCDCZA
int i = 0; //i = 0
int j = str.length()-1; //j = 6
while(i < j){
if(str.charAt(i) != str.charAt(j)){
System.out.println(0);
return;
}
i++;
j--;
}
System.out.println(1);
}
}



If the given array is [1,2,3] then the answer would be 2. One of the ways to make all the elements of the given array equal is by adding 1 to the array element with value 1 and subtracting 1 from the array element with value 3. So that final array would become [2,2,2].
Asked basic questions about Role and salary structure. It was quite easy.
Introduce yourself
What was your role in your projects
How do you keep yourself motivated?

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?