Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Deloitte Team. If you also belong to the team, you can get access from here

Deloitte Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Deloitte Python Developer Interview Questions and Answers

Updated 20 Sep 2024

Deloitte Python Developer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - Technical 

(3 Questions)

  • Q1. Pickling and Unpickling
  • Q2. Python basics and programs
  • Q3. Project and profile related questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Pandas based questions
  • Q2. Numpy based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - overall it was good but didnt got selected even after answering all questions asked

Python Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Tell me the logic of program to reverse a given string word by wo ... read more
asked in TCS
Q2. 1. Difference between tuple and a list? 2. What are decorators? 3 ... read more
asked in Cognizant
Q3. What is the difference between variable and object?
asked in Accenture
Q4. 2.Write a program to print a string in reverse without using buil ... read more
Q5. How to convert the .txt file into .csv file in python
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

The basic levels of python and coding

Round 3 - HR 

(2 Questions)

  • Q1. About python and features? What are Data types? what are Operaters in python? What are the Basics of python?
  • Q2. What are the decorators in python? Write a code for the palindrome number? Write a code for the prime number?
  • Ans. 

    Decorators are functions that modify the behavior of other functions. Palindrome and prime number codes are also commonly asked in Python interviews.

    • Decorators are denoted by '@' symbol and placed above the function definition

    • They can be used to add functionality to a function without modifying its code

    • Examples of decorators include @staticmethod, @classmethod, and @property

    • Palindrome number code checks if a number is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard to practice on python coding
And day by day practice

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Group Discussion 

The planning if the project and how to take over the project

Round 3 - Aptitude Test 

We should maintain the aptitude to with our project and with with

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like to wrok in the this company and to entire world

Interview Questionnaire 

1 Question

  • Q1. Questions related to COBOL,JCL,VSAM,DB2,CICS,Vision plus

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Framework skills with architecture workflow
  • Ans. 

    Framework skills are essential for efficient architecture workflow.

    • Framework skills help in understanding the overall structure of the system.

    • They aid in identifying the key components and their interactions.

    • Frameworks provide a common language for communication between team members.

    • Examples of frameworks include Spring, Hibernate, and AngularJS.

  • Answered by AI
  • Q2. Programming skills along with POM model

Interview Preparation Tips

Interview preparation tips for other job seekers - Need strong technical skill in Framework level and also architecture level.
Programming knowledge is must

I applied via Approached by Company and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Experience in related field of work
  • Q2. Domain experience in years
  • Ans. 

    I have X years of domain experience.

    • I have worked in this domain for X years.

    • During my time in this domain, I have gained expertise in various areas such as...

    • I have worked on projects related to...

    • I have experience working with clients in this domain.

    • I keep myself updated with the latest trends and developments in this domain.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident before you attend interview with hiring manager. Explain in detailed about your roles and responsibilities.. Make sure your explanation should attract to hiring manager.

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduce yourself, on java,sql,oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't talk very fast. Speak with confidence

I applied via Naukri.com and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were related to MS Exchange and O365.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Technically sound.

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

This was MCQ+Coding round.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Determine if two strings are anagrams of each other by checking if they have the same characters in different order.

    • Create a frequency map of characters for both strings and compare them.

    • Sort both strings and check if they are equal.

    • Use a hash table to store character counts and compare the counts for both strings.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This was face to face interview round.

  • Q1. 

    Next Greater Number Problem Statement

    Given a string S which represents a number, determine the smallest number strictly greater than the original number composed of the same digits. Each digit's frequenc...

  • Ans. 

    Given a number represented as a string, find the smallest number greater than the original with the same set of digits.

    • Iterate from right to left to find the first digit that can be swapped with a larger digit to make the number greater.

    • Swap this digit with the smallest digit to its right that is larger than it.

    • Sort the digits to the right of the swapped digit in ascending order to get the smallest number greater than ...

  • Answered by AI
  • Q2. 

    Circular Move Problem Statement

    You have a robot currently positioned at the origin (0, 0) on a two-dimensional grid, facing the north direction. You are given a sequence of moves in the form of a string ...

  • Ans. 

    Determine if a robot's movement path is circular on a 2D grid given a sequence of moves.

    • Create a set of directions to keep track of the robot's current direction (north, east, south, west).

    • Simulate the robot's movement based on the given sequence of moves (L - turn left, R - turn right, G - move forward).

    • Check if the robot returns to the starting position after completing the sequence of moves.

    • Example: For 'GLGLGLG', t...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This round is basically on zoom meet . 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaCapgemini interview preparation:Topics to prepare for the interview - Basic Computer Science background ,Data Structures and Algorithms, Operating System, Database Management System, Object-Oriented Programming SystemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.
Tip 4 : Do practice a lot of data structures questions as mostly questions in interviews are based on them

Application resume tips for other job seekers

Tip 1 : Add projects and Internships if you have done any and add only those things which you really know.
Tip 2 : Highlight most important skills and points in your resume 
Tip 3 : Provide certificate of only important things

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Deloitte Interview FAQs

How many rounds are there in Deloitte Python Developer interview?
Deloitte interview process usually has 1-2 rounds. The most common rounds in the Deloitte interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Deloitte Python Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Deloitte. The most common topics and skills that interviewers at Deloitte expect are Python, Django, Coding, Flask and Postgresql.
What are the top questions asked in Deloitte Python Developer interview?

Some of the top questions asked at the Deloitte Python Developer interview -

  1. What are the decorators in python? Write a code for the palindrome number? Writ...read more
  2. About python and features? What are Data types? what are Operaters in python? ...read more
  3. Pickling and Unpickl...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Morningstar

No Interviews

INTERVIEWS

TCE

No Interviews

DESIGNATION

INTERVIEWS

Kantar Operations

No Interviews

INTERVIEWS

JLL

No Interviews

DESIGNATION

INTERVIEWS

Assystem

No Interviews

DESIGNATION

Tell us how to improve this page.

Deloitte Python Developer Interview Process

based on 3 interviews

Interview experience

2.3
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 790 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
View all
Deloitte Python Developer Salary
based on 49 salaries
₹4.4 L/yr - ₹13.6 L/yr
54% more than the average Python Developer Salary in India
View more details

Deloitte Python Developer Reviews and Ratings

based on 4 reviews

4.6/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.4

Salary

4.3

Job security

4.7

Company culture

3.4

Promotions

4.4

Work satisfaction

Explore 4 Reviews and Ratings
Consultant
33.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
21k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
14.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
10.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent