Tip 1: Prepare according to your skills and what the profile is asking for first.
Tip 2: Prepare the basics like data structures, OOP, algorithms, and one programming language. For example, I prepared for Python as I had good experience with it.
Tip 1: Keep your resume to one page. Consider this when adding good certifications.
Tip 2: Add at least 2-3 good projects that demonstrate the skills you mention in your resume.
Timing: 60 min
Environment: Microsoft teams
The interviewer was chill and of a kind nature.



Write a program to print the pattern
*
**
***
****
*****
I created one function named myfunc and ran the for loops to increment the stars to get the pattern
def myfunc(n):
k = n - 1
for i in range(0, n):
for j in range(0, k):
print(end=" ")
k = k - 1
for j in range(0, i+1):
print("* ", end="")
print("\r")
n = 5
myfunc(n)

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?