Tip 1 : Just be confident during interview and if you are stuck in between any question, then ask for a hint from the interviewer.
Tip 2 : Mention 2 good projects in your resume
Tip 3 : Make sure that your resume is of one page only
Tip 1 : Highlight your strong points
Tip 2 : Change resume according to required skills by company.
The round was conducted on the Naukri.com platform . It consists of 30 mcq question and one coding question. The link was shared by the company 2 days prior of the exam. You can activate the link between 1 pm - 4 pm. The duration of the test was 35 mins. Each section has a timer
The sections :
Aptitude and reasoning (10 mins)
English (5 mins)
Computer fundamentals (5 mins)
Coding question(15 mins)



If ‘ARR’ is {1,2,3,4} and ‘K’ = 4, then there exists 2 subsets with sum = 4. These are {1,3} and {4}. Hence, return true.
Some elements can be repeated in the given array. Make sure to iterate over the number of occurrences of those elements to avoid repeated combinations. Once you do that, things are fairly straightforward. Call a recursive function with the remaining sum and make the indices to move forward. When the sum reaches K, print all the elements which were selected to get this sum.
After clearing the online assessment round if you have cleared that round you will get a link to appear for the online face to face technical interview.



‘S’ = racecar
The reverse of ‘S’ is: racecar
Since ‘S’ is equal to its reverse. So ‘S’ is a palindrome.
Hence output will be 1.
Create a count array of alphabet size which is typically 256. Initialize all values of the count array as 0.
Traverse the given string and increment count of every character.
Traverse the count array and if the count array has more than one odd value, return false. Otherwise, return true.
What do you understand by ACID properties?
Tip 1 : Start with the explaining each term in detail
Tip 2 : Make sure to give examples
Tip 1 : Focus on your strengths,
Tip 2 : something great about the company.
Tip 3 : You could include those activities in the work experience section if the roles and responsibilities you have during the extracurricular activities are closely related and relevant to the job you are applying for.

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