Tip 1: Practice at least 100 questions from each topic.
Tip 2: Review and understand the underlying concepts thoroughly.
Tip 3: Take mock interviews to simulate the actual interview environment.
Tip 1: For fresher make sure you have relevant problem-solving skills.
Tip 2: At least one strong project which you can convey to the interviewer.
The round was conducted over the phone in the afternoon. The environment was professional, and the interviewer was punctual and courteous. They asked questions about my resume and previous experiences, followed by a few problem-solving questions to assess my analytical abilities. The interviewer was friendly and encouraged me to explain my thought process while solving the problems.
I was provided with some real world problem about global warming which I was supposed to provide the solution to according to the question asked by the HR.
Tip 1: Carefully read and understand the problem statement before attempting to solve it. T
ip 2: Break down the problem into smaller parts and tackle each part systematically.
Tip 3: Always test your solution with different inputs to ensure its correctness and efficiency.
The round was conducted online via Google Meet. The environment was well-organized and smooth, with no technical issues. The interviewer was professional and clear in their instructions. The round included both multiple-choice questions (MCQs) and coding problems.
Given an array of integers, write a function to find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. This problem is commonly solved using Kadane's Algorithm.
Tip 1: Initialize two variables: max_current to keep track of the maximum sum of the current subarray, and max_global to store the maximum sum found so far.
Tip 2: Iterate through the array, updating max_current as the maximum of the current element and the sum of max_current and the current element. Update max_global whenever max_current exceeds it.
Tip 3: Make sure to handle edge cases, such as when the array contains only negative numbers or when the array is empty.
It was a HR round basically finalizing my role
Just be clear and honest with your thougths
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?