Tip 1 : Practice on Data Structures
Tip 2 : Practice coding questions
Tip 1 : Mention skills set
Tip 2 : Have some projects on resume.
- Morning time
- Environment was good.
- No
- Interviewer was good
Problem Statement-
Solve the given equations:
Confuse your friends by jumbling the two words given to you. To don’t get yourself into confusion follow a pattern to jumble the letters.
Pattern to be followed is , pick a character from the first word and pick another character from the second word.
Continue this process
Take two strings as input , create a new string by picking a letter from string1 and then from string2, repeat this until both strings are finished and maintain the subsequence. If one of the strings is exhausted before the other, append the remaining letters from the other string all at once.
s1- Jumble the words by using below logic
s2- def newPassword(a,b):
ans=""
s3- if(len(a)>len(b)):
m=len(b)
x=a[m:]
if(len(a)<=len(b)):
m=len(a)
x=b[m:]
s4- for i in range(m):
ans+=a[i]
ans+=b[i]
return ans+x
a=input()
b=input()
print(newPassword(a,b))



The initial score is 0.
Each box can be used at most once.
The boxes can be used in any order.
You don’t have to remove all the boxes.



1. ‘N’ contains only digits ‘0’ to ‘9’ and English letters ‘A’ to ‘F’.
2. Decimal equivalent of 0 is 0, 1 is 1, . . .9 is 9, A is 10, B is 11, . . . F is 15.

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?