Upload Button Icon Add office photos

Filter interviews by

Turing Interview Questions, Process, and Tips for Experienced

Updated 7 Apr 2025

Top Turing Interview Questions and Answers for Experienced

View all 11 questions

Turing Interview Experiences for Experienced

Popular Designations

21 interviews found

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Optmise performance in pytho?
  • Ans. 

    Optimize Python performance by using efficient data structures, algorithms, and built-in functions.

    • Use list comprehensions instead of loops for faster execution. Example: [x**2 for x in range(10)]

    • Utilize built-in functions like map(), filter(), and reduce() for better performance.

    • Choose the right data structures: use sets for membership tests instead of lists.

    • Profile your code using cProfile to identify bottlenecks.

    • Con...

  • Answered by AI
  • Q2. Give example of decorator in python.
  • Ans. 

    A decorator in Python is a function that modifies the behavior of another function or method.

    • Decorators are defined using the '@' symbol followed by the decorator function name.

    • They can be used to add functionality to existing functions without modifying their code.

    • Example: A simple logging decorator that prints the function name before execution.

    • Example code: def my_decorator(func): def wrapper(): print(...

  • Answered by AI

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given a dataset, pandas task and commands
  • Q2. DSA round for lists,string, tuples, dictionary

Interview Preparation Tips

Interview preparation tips for other job seekers - They hire 3rd party recruiters for meaningless rounds and never call back. Until you receive actual call from the company itself ignore

Lead Data Scientist Interview Questions asked at other Companies

Q1. 1) How many weeks should be considered for testing any new change to a billing system in stores? Methodology to arrive at the weeks? 2) Explain ability of a model - Shapio package? 3) Intermediate SQL - moving 3 months average? Can be solve... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Guesstimate - red cars in delhi
  • Ans. 

    There are approximately 20% of cars in Delhi that are red.

    • Delhi has a high population density and traffic congestion, leading to a higher number of cars on the road.

    • Red is a popular color choice for cars in India, especially for luxury and sports cars.

    • Based on national statistics, around 20% of cars in India are red, so a similar percentage can be assumed for Delhi.

  • Answered by AI
  • Q2. Behavioural questions - situation with ambiguity example etc.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Guesstimate - how many people watched the olympics
  • Ans. 

    It is difficult to provide an exact number, but millions of people around the world likely watched the Olympics.

    • The Olympics are a widely popular event that attracts viewers from all over the globe.

    • Viewership numbers can vary depending on the country, time zone, and popularity of specific events.

    • Factors such as streaming services and social media also impact the total viewership.

    • For example, the 2016 Rio Olympics had a...

  • Answered by AI
  • Q2. Behavioral - how you handle a team etc.
  • Ans. 

    I believe in open communication, setting clear expectations, providing support, and recognizing achievements.

    • Open communication is key to understanding team dynamics and addressing any issues that may arise.

    • Setting clear expectations helps team members understand their roles and responsibilities.

    • Providing support involves offering guidance, resources, and assistance when needed.

    • Recognizing achievements boosts morale an...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jul 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Probability questions
  • Q2. Integration problems from 12 standard

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice 11 and 12 standard math concepts and problems

Maths Subject Matter Expert Interview Questions asked at other Companies

Q1. Explain how do you integrate a concept in real-life?
View answer (1)

Turing interview questions for popular designations

 Data Scientist

 (10)

 Business Analyst

 (9)

 Data Analyst

 (8)

 Software Engineer

 (6)

 Software Developer

 (5)

 Python Developer

 (3)

 Research Analyst

 (3)

 Senior Software Developer

 (3)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data Analysis using python
  • Ans. 

    Data analysis using Python involves using libraries like Pandas and NumPy to manipulate and analyze data.

    • Use Pandas for data manipulation and analysis

    • Use NumPy for numerical operations on data

    • Visualize data using libraries like Matplotlib or Seaborn

    • Perform statistical analysis using SciPy library

  • Answered by AI

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Interview Questions & Answers

user image Rishabh Srivastava

posted on 28 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Problems related to various fields of mathematics, including geometry, calculus, probability, and algebra, were discussed during the interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidates should possess a strong understanding of mathematics, as interviewers primarily focus on both your depth of knowledge and your problem-solving approach.

Data Analyst Interview Questions & Answers

user image Saikumar Vavilashetty

posted on 24 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Newhouse an python subset vowels

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Python Code - Data Structures, Dynamic Programming

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Guesstimate: How many golf ball can be estimated to fit in a standard bus? Then how many in 5 buses
  • Q2. Guesstimates: How many tickets are sold in Bangalore daily. Calculate the Total revenue for entire month.

Top Turing Business Analyst Interview Questions and Answers

Q1. There is a square field of 10m×10m which is divided into 100 squared blocks. Each block can either contain wheat field or corn field. What is the maximum No. of corn field are possible in a such way than no two corn field share the edge?
View answer (8)

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Data Science Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Multiple coding tests for the stack

Data Science Interview Questions asked at other Companies

Q1. What is list and tuple?
View answer (1)

Turing Interview FAQs

How many rounds are there in Turing interview for experienced candidates?
Turing interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Turing interview process for experienced candidates are One-on-one Round, Aptitude Test and Technical.
How to prepare for Turing interview for experienced candidates?
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 Turing. The most common topics and skills that interviewers at Turing expect are Javascript, Python, Front End, Backend and Software Configuration Management.
What are the top questions asked in Turing interview for experienced candidates?

Some of the top questions asked at the Turing interview for experienced candidates -

  1. What is the angle between minute and hour clock when the clock strikes 2:...read more
  2. The overall quality of the process isn't improving. How do you tackle this situ...read more
  3. Measure 4 Liters out of two vessels that are of 5 Liters and 3 Lit...read more
How long is the Turing interview process?

The duration of Turing interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Turing Interview Process for Experienced

based on 19 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.1
 • 102 Interviews
Toothsi Interview Questions
2.8
 • 60 Interviews
Zolo Interview Questions
3.4
 • 54 Interviews
GoMechanic Interview Questions
3.7
 • 52 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Impact Guru Interview Questions
3.7
 • 40 Interviews
KreditBee Interview Questions
3.4
 • 38 Interviews
Mfine Interview Questions
3.6
 • 24 Interviews
Milkbasket Interview Questions
3.9
 • 20 Interviews
View all

Turing Reviews and Ratings

based on 177 reviews

3.3/5

Rating in categories

2.8

Skill development

3.9

Work-life balance

3.8

Salary

2.4

Job security

3.4

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 177 Reviews and Ratings
Data Scientist
79 salaries
unlock blur

₹12 L/yr - ₹39.5 L/yr

Data Analyst
39 salaries
unlock blur

₹4.4 L/yr - ₹14 L/yr

Business Analyst
37 salaries
unlock blur

₹3.5 L/yr - ₹14.4 L/yr

Talent Acquisition Specialist
37 salaries
unlock blur

₹4 L/yr - ₹17.4 L/yr

Data Specialist
34 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Explore more salaries
Compare Turing with

Netmeds.com

3.6
Compare

Toothsi

2.8
Compare

Tracxn

3.1
Compare

Zolo

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