*Mini loan app - Take home challenge. *Testing related questions.
Senior Python Developer Interviews
Senior Python Developer Interview Questions
"Senior developers have years of experience in Python and have the knowledge and communication skills to mentor other developers. Companies prioritize strong technical skills and questions will focus on problem solving and critical thinking. A bachelor's degree in computer science or a related field, along with years of industry experience are standard."
498 senior python developer interview questions shared by candidates
They were more into previous projects I worked on.
1 take-home assignment with 30 mins of final interview
String manipulation issue in Python, dictionary etc.
Whole project experience month by month
Python’s internal functions were in the spotlight. I had to whip up examples for map(), filter(), and reduce()
Mostly the interviewers ask about the coding theory: sorting algorithm, big o notation, deep vs shallow copy, etc
Python, Django, Flask, react JS and coding
Tell me about your self.!?
Q1.What is global interpreter lock? Q2.# Write a Python program that takes a list of integers and returns a new list with each integer squared. However, if the squared value is greater than 50, replace it with the string 'Over 50'. The program should handle any exceptions that may arise from incorrect inputs gracefully without using inbuilt functions. # input_numbers = [1, 7, 8, 4, 'a', 3] # Output - [1, 49, 'Over 50', 16, 'Invalid input: Not an integer', 9] Q3.# Given a string, find non-repeating character in it and return its index. If it doesn't exist, return -1. # input='leetcode # output=['l','t','c','o','d']
Viewing 401 - 410 interview questions