Tip 1 : Go through sample Data Engineer interview questions, this will give you an idea of real world interviews
Tip 2 : Include Ml related projects in resume and be sure of whatever is written in your resume
Tip 3 : Be thorough with Ml Algos before interview
Tip 1 : Be wise to include your projects relevant to the role you are applying for.
Tip 2 : Mention your projects well and don't over exaggerate
Morning 11.00-1.00






It is possible for Mr. X to rob the same amount of money by looting two different sets of houses. Just print the maximum possible robbed amount, irrespective of sets of houses robbed.
(i) Given the input array arr[] = {2, 3, 2} the output will be 3 because Mr X cannot rob house 1 (money = 2) and then rob house 3 (money = 2), because they are adjacent houses. So, he’ll rob only house 2 (money = 3)
(ii) Given the input array arr[] = {1, 2, 3, 1} the output will be 4 because Mr X rob house 1 (money = 1) and then rob house 3 (money = 3).
(iii) Given the input array arr[] = {0} the output will be 0 because Mr. X has got nothing to rob.
Ml knowledge deep dive
Explain Sentiment Analysis
Face Recognition mechanism and whatever I understand about this

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?