Tip 1 : For DS and Algo, keep practicing every day on Leetcode, HackerEarth, and make a habit of participating in contests.
Tip 2 : Projects are vital in interviews, have at least 3 projects on Resume, in the field/profile which you're applying for.
Tip 3 : Give Mock Interviews.
Tip 1 : Resume should be short and keep it under 1 page.
Tip 2 : Include skills that you're 100% confident in.
Tip 3 : Highlight your internships and projects section appropriately
Timing: There was a window for 2 days
Environment: Online
Timing: Window for 2 days
Environment: Online
Time: 50 Min. for 50 MCQ and 20 min for 2 Coding Questions
1
11
121
1221
Step 1 : For rows of rectangle ran the outer loop from 1 to rows.
Step 2 : For column of rectangle run the inner loop from 1 to columns.
Step 3 : Print star for first or last row or for first or last column, otherwise print blank space.
Step 4 : After printing all columns of a row, print new line after inner loop.
There was no restriction of language on this question
Let’s say the list of intervals is: [[1,3], [5,7], [8,12]] and we need to insert the interval [4,6] into the list. [4,6] must be inserted in the second position. After insertion, since [4,6] overlaps with [5,7], we merge them into one interval [4,7]. So, our resulting list is: [[1,3], [4,7], [8,12]]
I didn't have any experience with Python, so I didn't know how to write the syntax.
Step 1: One can do this by using the slice indexing in the list
Timing: Morning
Environment: On MS-Teams
1. OOPS concepts
2. Implement runtime polymorphism using virtual functions
Step 1 : I gave an example through which the concept was explained.
Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.
Step 1 : I explained Quick Sort and each step by also giving dry run.
Timing: Morning
Environment: Online
In this round I came to know I was not being considered for SDE profile but instead for QA. There was a general discussion on API Testing and through breakdown of my projects.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?