Tip 1: Go through the questions in Striver's sheet for coding
Tip 2: Be patient and calm. This process is time and energy-consuming, but I am sure you can get through.
Tip 1: Your projects should be related to the current emerging topics
Tip 2: Be prepared with the areas of interest that you put in your resume
The interviewers were very friendly
Basic ML questions
Projects on the resume



Input: ‘N’= 25, ‘s’ =”Take u forward is Awesome”
Output: 10 11 4
(don't use inbuilt functions like regular expressions, try to optimize code say within 10-15 lines)
Given a string say a = #raja#datascience#ml#credit,2#trivik#credit#ml#hacking#IEEE,3#abi#SEWA_dept#maths#resear,4#siva#IIT#fund_analytics#bi#portfolio#credit" (dataset concatenated with '#')
Write a program to retrieve data from the string into a dataframe.
Retrieve data from the string into a dataframe.
Why did you use the gradient boost algorithm for a crop yield production project?
Coding and machine learning questions were asked,
The interviewer was friendly.
Even though we didn't know how to start, he helped me start with the solution and gave me basic ideas.



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.
I used recursive approach.



Tip 1: Concentrate more on logistic regression.
Tip 2: Practice more on Coding Ninjas.



1. ‘.’ matches to any single character.
2. ‘*’ matches to zero or more of the preceding element.
1. You have to match the entire string with the pattern given.
2. Both the strings, 'S' and 'P' contain only lower-case alphabets.
3. Only the pattern will contain additional characters ‘*’ and ‘.’ along with alphabets.
Given a dataset of 1000 accounts that have applied for a loan, only very few, say 1% or 2%, could be filtered to get a loan.
What kind of model would you build, and which performance measures would you choose to determine the performance of your algorithm
For example, I have 100 accounts, only 2%, i.e., two accounts qualify to get a loan, and I build a model that says 100 accounts are disqualified for getting a loan. What is the accuracy of my model?
Could you tell me about your Machine Learning Package? (Learn)
Explain the KMeans algorithm in detail (which was included in my package). (Learn)

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