Tip 1 : Focus on Data Structures.
Tip 2 : Cover all the oops concepts with code.
Tip 3 : Do atlest one project.
Tip 1 : Mention the Training/Certification you did.
Tip 2 : Mention clearly about your 4th year project.
About types of joins



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.
Tip 1: Learn the concept well and practice writing code
Introduce yourself
What are some good and bad things about Delhi(the place you live)?
Tip 1: prepare introduction

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?