Upload Button Icon Add office photos

Mott MacDonald

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Mott MacDonald Python Software Developer Interview Questions, Process, and Tips

Updated 14 Sep 2024

Mott MacDonald Python Software Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

25 Questions, Multiple choice, Single correct as well as multi-correct, related tp python, django & flask

Round 2 - Coding Test 

Find the maximum occurring number in a list of numbers without using any in-built functions, in linear time using, O(1) space

Round 3 - One-on-one 

(7 Questions)

  • Q1. Difference between Lists and Tuples?
  • Ans. 

    Lists are mutable, ordered collections of items while tuples are immutable, ordered collections of items.

    • Lists are defined using square brackets [] while tuples are defined using parentheses ().

    • Lists can be modified (add, remove, change elements) while tuples cannot be modified once created.

    • Lists are typically used for collections of similar items that may need to be modified, while tuples are used for fixed collection...

  • Answered by AI
  • Q2. Difference between Shallow copy and Deep copy?
  • Ans. 

    Shallow copy creates a new object but does not duplicate nested objects, while deep copy creates a new object with all nested objects duplicated.

    • Shallow copy only copies the references of nested objects, not the objects themselves.

    • Deep copy creates new copies of all nested objects, ensuring complete independence.

    • In Python, shallow copy can be achieved using the copy() method, while deep copy can be achieved using the d

  • Answered by AI
  • Q3. What is MVT architecture?
  • Ans. 

    MVT architecture stands for Model-View-Template architecture, commonly used in web development with Django framework.

    • MVT separates the logic of an application into three components: Model, View, and Template.

    • Model represents the data structure, View handles the user interface and business logic, and Template manages the presentation layer.

    • MVT is similar to MVC (Model-View-Controller) architecture but with a different n...

  • Answered by AI
  • Q4. What are decorators in Python?
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions or methods.

    • Decorators are denoted by the @ symbol followed by the decorator name.

    • They allow you to wrap another function in order to extend or modify its behavior.

    • Decorators are commonly used for logging, authentication, and memoization.

    • Example: @staticmethod decorator in Python is used to define a method that is not bound to an instance of

  • Answered by AI
  • Q5. Difference between static and instance methods in python? Explain what decorator to use for defining static methods?
  • Ans. 

    Static methods are bound to the class itself, while instance methods are bound to instances of the class. Use @staticmethod decorator for static methods.

    • Static methods do not have access to class or instance attributes, while instance methods do.

    • Instance methods can modify instance state, while static methods cannot.

    • To define a static method in Python, use the @staticmethod decorator before the method definition.

    • Exampl...

  • Answered by AI
  • Q6. What is inheritence? How many types of inheritence are there in python?
  • Ans. 

    Inheritance is a mechanism in which a new class inherits attributes and methods from an existing class.

    • Inheritance allows a class to reuse code from another class.

    • Python supports single, multiple, and multilevel inheritance.

    • Example: class ChildClass(ParentClass):

  • Answered by AI
  • Q7. What are access specifiers in Python, how are they set-up?
  • Ans. 

    Access specifiers in Python control the accessibility of class attributes and methods.

    • Access specifiers are not explicitly defined in Python like in other languages such as Java or C++.

    • By convention, attributes and methods starting with a single underscore (_) are considered 'protected' and should not be accessed directly.

    • Attributes and methods starting with double underscores (__) are considered 'private' and are name

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give some mock interviews, revise theoretical concepts, implement concepts in code, communicate concepts effectively.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous means happening at the same time, while asynchronous means not happening at the same time.

    • Synchronous operations occur in real-time, while asynchronous operations can be delayed or queued.

    • Synchronous operations block the program until they are completed, while asynchronous operations allow the program to continue running.

    • Examples of synchronous operations include function calls and loops, while examples of ...

  • Answered by AI
  • Q2. When to use CTE and temp table.
  • Ans. 

    CTE and temp table usage in SQL

    • Use CTE for recursive queries and complex subqueries

    • Use temp tables for large data sets and complex queries

    • CTE is more efficient for small data sets

    • Temp tables can be indexed for faster performance

    • Consider the scope and lifespan of the data when choosing between CTE and temp table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

Interview Questionnaire 

1 Question

  • Q1. Java basics

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked based on scenarios, all were practical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join as a contractor. Join only if you are permanent with Deloitte.

I applied via LinkedIn and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic OOPS concepts?
  • Q2. Logical Coding like remove duplicates from array

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basic OOPS concepts

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you handle downtime
  • Ans. 

    I prioritize identifying the root cause and finding a solution while keeping stakeholders informed.

    • Identify the root cause of the downtime

    • Communicate with stakeholders about the issue and expected resolution time

    • Work on finding a solution as quickly as possible

    • Implement preventative measures to avoid future downtime

    • Document the incident and steps taken for future reference

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Because confident and prepare well for versant test

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. SQL Queries
  • Q2. OOPS Concepts
  • Q3. Program to calculate factorial
  • Ans. 

    Program to calculate factorial

    • Use a loop to multiply the numbers from 1 to n

    • Handle edge cases like 0 and negative numbers

    • Use recursion for a more elegant solution

  • Answered by AI
  • Q4. Projects- Major , Minor , Internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, should have good communication skills.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Spring, Hibernate and java and angular questions
  • Q2. What is REST API, Difference between Spring MVC and Spring Boot, Abstract class, interfaces etc
  • Ans. 

    Answering questions related to REST API, Spring MVC, Spring Boot, abstract class, and interfaces.

    • REST API is a set of rules for building web services. It uses HTTP methods to access resources.

    • Spring MVC is a framework for building web applications using the Model-View-Controller architecture.

    • Spring Boot is a framework for building standalone, production-grade Spring-based applications.

    • An abstract class is a class that ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared well on what you have mentioned on your resume.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was an basic aptitude test

Round 2 - Coding Test 

System design round which is basic and need to satisfy them

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. And aigle scrum methodology explains
  • Ans. 

    Agile Scrum methodology is a framework for managing and completing complex projects.

    • Agile Scrum is based on iterative and incremental development.

    • It involves breaking down the project into smaller tasks called user stories.

    • Scrum teams work in sprints, typically 2-4 weeks long, to deliver a potentially shippable product increment.

    • Daily stand-up meetings are held to discuss progress and any obstacles.

    • Scrum Master facilit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good
Contribute & help others!
anonymous
You can choose to be anonymous

Mott MacDonald Interview FAQs

How many rounds are there in Mott MacDonald Python Software Developer interview?
Mott MacDonald interview process usually has 3 rounds. The most common rounds in the Mott MacDonald interview process are Aptitude Test, Coding Test and One-on-one Round.
How to prepare for Mott MacDonald Python Software 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 Mott MacDonald . The most common topics and skills that interviewers at Mott MacDonald expect are Django and Python.
What are the top questions asked in Mott MacDonald Python Software Developer interview?

Some of the top questions asked at the Mott MacDonald Python Software Developer interview -

  1. Difference between static and instance methods in python? Explain what decorato...read more
  2. What is inheritence? How many types of inheritence are there in pyth...read more
  3. What are access specifiers in Python, how are they set-...read more

Recently Viewed

INTERVIEWS

Mott MacDonald

No Interviews

INTERVIEWS

Mott MacDonald

No Interviews

INTERVIEWS

Protiviti

No Interviews

SALARIES

Ernst & Young

SALARIES

Ernst & Young

SALARIES

Ernst & Young

INTERVIEWS

Mott MacDonald

30 top interview questions

SALARIES

Ernst & Young

INTERVIEWS

Mott MacDonald

No Interviews

SALARIES

Ernst & Young

Tell us how to improve this page.

Mott MacDonald Python Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k 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
Citco Interview Questions
3.1
 • 138 Interviews
AECOM Interview Questions
4.2
 • 115 Interviews
Bain & Company Interview Questions
3.8
 • 105 Interviews
View all
Mechanical Engineer
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IT Analyst
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Electrical Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mott MacDonald with

AECOM

4.2
Compare

Jacobs Engineering Group

4.1
Compare

WSP

4.2
Compare

Arup

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview