Tip 1: Maintain consistency by solving at least a question each day.
Tip 2: Don't hesitate from asking doubts to the interviewer during the interviews.
Tip 3: Always be confident and well-prepared for the interviews.
Tip 1: Add some good projects to your resume.
Tip 2: Have a thorough reading and knowledge of whatever you mention on your resume.
Timing:- 10:am to 1:pm

In the first level, there is only one monster with power, ‘P’ = 2.



'ARR[]' = [1, 2]
The size of the array is 2. So, the total number of permutations is 2! = 2. The possible permutations are [1, 2] (the array itself) and [2,1] where the position of element 1 in the original array is swapped with element 2 and vice-versa.
1. All the numbers in the array are unique.
2. You can return the answer in any order.
3. The original array is also a permutation of the given array.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.



Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
This was the HR + technical round, which was held online on Google Meet. It took place in the afternoon at around 4:00 pm, and its duration was about 60 minutes. The interviewer was very friendly. The interview started with my self-introduction, covering all the projects mentioned in my resume. Then, the interviewer asked me some HR questions, such as my hobbies, why I wanted to join Infosys, and what I knew about Infosys. She then asked me some technical questions, including how to code for Merge sort and how Merge sort works. I opened an online compiler, wrote the code, and explained it to her. Next, she asked me about DBMS, why it is needed, and what the DDL, DML, and DCL commands in DBMS are.



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: