Tip 1: Do thorough research on the type of work the company does.
Tip 2: Prepare for questions related to the company’s work. For example, in my case the company worked in AI research and analysis, so scraping was a predictable question.
Tip 3: Have basic DSA knowledge as well.
Tip 1: Have strong projects listed on your resume.
Tip 2: Deploy your projects and include the live links on your resume.
Build a scraper to scrape websites, analyze the scraped data, and generate insights using AI. There were two options: one was using BeautifulSoup directly, which doesn’t always give accurate results, and the other was using Selenium to open websites in headless mode and scrape them.



Input: ‘n’ = 5
Output: 0 1 1 2 3
Explanation: First 5 Fibonacci numbers are: 0, 1, 1, 2, and 3.
You don't need to print anything. Just implement the given function.

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