Tip 1 : Maintain Consistency
Tip 2 : Make a habit of practice
Tip 3 : Start from the basics
Tip 1 : Mention your projects that you have done in your previous company
Tip 2 : Always mention your skills
In this round they will give you any coding question and you have to solve with your problem solving skill, multiple question will be asked based on project and technology in which you are working.



1. All the elements are in the range 0 to N - 1.
2. The elements may not be in sorted order.
3. You can return the duplicate elements in any order.
4. If there are no duplicates present then return an empty array.
from collections import Counter
a=[1,2,3,12,1,1,1,2,3,3,5]
print(Counter(a))
In this round interview will be taken through online platform you will asked to share your screen and any online ide platform a and randomly coding question will be given to solve.


# Python3 code to demonstrate working of
# Replace numbers by K in String
# Using replace() + isdigit()
# initializing string
test_str = 'G4G is 4 all No. 1 Geeks'
# printing original string
print("The original string is : " + str(test_str))
# initializing K
K = '@'
# loop for all characters
for ele in test_str:
if ele.isdigit():
test_str = test_str.replace(ele, K)
# printing result
print("The resultant string : " + str(test_str))
In this round mostly salary discussion happend
Tip 1 : Be confident
Tip 2 : Ask a reasonable salary
Tip 3 : Don't Panic

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?