Tip 1 : Consistently practice many coding questions, focusing on one coding language of your choice: it will help you in strengthening your theoretical skills as well.
Tip 2 : Even if you make just 1-2 projects, make sure you explain them really well, and are fully aware of the backend
Tip 3 : Practice aptitude and stay confident and relaxed during interviews.
Tip 1 : Make it crisp and to the point. Do not explain too much. The skills that you are most confident in should be highlighted
Tip 2 : The resume should be aligned with your role. Strike off all the irrelevant skills. Do not exaggerate your resume. The interviewer never expects you to know all possible skills. Remember, quality over quantity.
It was in the afternoon. The environment was student-friendly and there were a lot of people to assist in case of technical faults. It was online round.



If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".
JAVA: I started a loop in which there is a variable, say "i" that goes from 0 to the length of the string, I used substring function to check every time from 0 to "i" and then checked whether it's a palindrome or not (I defined different function for a palindrome). If it's a palindrome, then i introduced another variable "j" which will start from i to check further palindromes (substrings) and so on. If there are no such pairs, then the flag is set to "Impossible"
It was in the morning around 11 am. The environment was healthy with many students prepping for their turn. The interview began with basic questions outlining my resume, my projects, the coding language I am comfortable in. He asked me questions on why I chose engineering and general questions related to my career objectives. I was asked basic questions on Java-like why is it better than other languages, why is it platform-independent, I was asked various questions on major concepts like OOPS, Data Structures, Big Data, Relational Databases, Difference between C++ and Java.




I generated 3 for loops. One for numbers in ascending order, One for alphabets in descending order, and the third one for spaces. It was quite simply printed.



F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
I started the question using recursion. Calling the fibo function recursively for printing the fibonacci series wherein every third element is the sum of first two.I was also asked various logic behind recursion.
It was right after my technical interview, in the afternoon. I was asked various questions about my family background, my hobbies, my long time goals, my values, my favourite cuisine, movies, stress related scenarios. I was asked innumerable scenarios related to customer handling
Tell me about yourself.
Tip 1 : Be Confident
Tip 2 : Be fluent in English
Tip 3 : Be brutally honest
What are your long term goals?
Tip 1 : Be Descriptive
Tip 2 : Be honest and don't give generic answers
Tip 3 : Do not set a very high/very low goal
What are your hobbies and interests?
Tip 1 : Stay enthusiastic and clear
Tip 2 : Relaxed attitude
Tip 3 : Include many adjectives
Question related to company/customer scenarios.
Tip 1 : Brainstorming, but not taking too much time
Tip 2 : Honest and prompt answers
Tip 3 : Try to be as positive and optimistic as possible, always have a smile on your face
Why do you want to join our company?
Tip 1 : Know your company very well
Tip 2 : Do not say things/facts you are not sure of, this may turn negative
Tip 3 : If you are unsure, say lines like " I will try to delve deeper into this area", but always be positive and praise the company in every way possible. Also include lines of enhancement that you can introduce to the franchise.

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: