When you were in a leadership position, what did you do to have team cohesion?
Python Developer Interviews
Python Developer Interview Questions
"Python developers are responsible for developing code to build products using the python programming language. In an interview context, expect to be quizzed on your technical skills through different kinds of computing problems or brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific discipline such as web development, application development, or system development."
6,379 python developer interview questions shared by candidates
Given a string ‘S’, find the length of the Longest Palindromic Subsequence in it.
What is the role of the generator function?
Tell me about python? Why you chose Python?
Write fibonacci sequence functions using generator and recursion.
based on python
what is python anf benifits
What is oops concept ? what are the algoriths used un it
To see if a number is divisible by 3, you need to add up the digits of its decimal notation, and check if the sum is divisible by 3. To see if a number is divisible by 11, you need to split its decimal notation into pairs of digits (starting from the right end), add up corresponding numbers and check if the sum is divisible by 11. For any prime p (except for 2 and 5) there exists an integer r such that a similar divisibility test exists: to check if a number is divisible by p, you need to split its decimal notation into r-tuples of digits (starting from the right end), add up these r- tuples and check whether their sum is divisible by p. Given a prime int p, find the minimal r for which such divisibility test is valid and output it. The input consists of a single integer p - a prime between 3 and 999983, inclusive, not equal to 5. Example input: 3 output: 1 input: 11 output: 2
Find the Nth fibonacci number.
Viewing 131 - 140 interview questions