Tip 1 : If applying for a data scientist role be prepared for questions on the accuracy, confusion matrix, precision-recall in different scenarios
Tip 2 : Research about the state of the art frameworks/models
Tip 1 : Write some projects with some mathematical/algorithmic insights too
Tip 2 : Keep it short and simple (search some online tools to build resume more attractive)
Classify Youtube videos based on different categories like news, vlog, travel, etc
Tip 1 : Always checkout some research paper or notebooks/data related to the problem on sites like Kaggle/Github/paperswithcode because most probably someone has already done some prior work related to the same problem statement
Tip 2 : Most of the time if you are stuck somewhere get out of your comfort zone(StackOverflow) and start reading proper documentation.
It was around 7 pm. It was on google meet. The interviewer was throwing lots of questions at me and I thought that he is trying to debate. I debated from my side also trying to tell why my approach will work. He was going into the subtleties of the problem. I was confident that due to my stubbornness I will be rejected. But in the end, he liked that I went on the path of logic and didn't deviate due to pressure(which can happen in scenarios like deadlines). Many questions were related to core statistics which I couldn't answer(the interviewer had a background in statistics). in the end of the interview, I told him that my knowledge of deep learning is good but I don't know the statistics to that extent to which he replied: "no worries, everyone doesn't know everything".



If the given array is [ 2, 3, 1], we need to return [1, 1, -1]. Because for 2, 1 is the Next Smaller element. For 3, 1 is the Next Smaller element and for 1, there is no next smaller element hence the answer for this element is -1.



Note that a polygon can be divided into triangles in more than one way. You need to print the minimum sum of triangle values of all the triangles created.
Given 'N' = 4, Array = [4, 3, 5, 2], the possible scores for these two triangle score are: (3 * 2 * 5) + (3 * 2 * 4) = 54 and (4 * 2 * 5) + (4 * 3 * 5) = 100.
The minimum of these two triangle scores is 54. So you need to print 54.

Why was Machine Learning Introduced?
What are Different Types of Machine Learning algorithms?
What is ‘Naive’ in a Naive Bayes?
Just basic HR round and work experience and questions related to work culture
Why should we hire you?
What are your hobbies?

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