Upload Button Icon Add office photos

Filter interviews by

Choice International DPT.Manager Interview Questions and Answers

Updated 1 Dec 2022

Choice International DPT.Manager Interview Experiences

1 interview found

DPT.Manager Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2022

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2022. 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic questions. No need of preparing yourself for interview.
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Thik twice before joining here.
They hire you for the role which is totally different from your JD

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Machine Learning-related stuff: Confusion Matrix, R2 score, etc.. Also, Python & Statistics.
  • Q2. Explain any one project.
  • Q3. Difference between Data Analyst and Data Scientist.
  • Ans. 

    Data Analyst focuses on analyzing data to provide insights, while Data Scientist focuses on using advanced algorithms and machine learning to predict future trends.

    • Data Analyst focuses on analyzing data to provide insights for decision-making.

    • Data Scientist focuses on using advanced algorithms and machine learning to predict future trends.

    • Data Analyst typically works with structured data, while Data Scientist works wit...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MapmyIndia Data Analyst interview:
  • Machine Learning
  • Statistics
  • Python
Interview preparation tips for other job seekers - The ML & Python basics should be strong. Add relevant projects to the resume.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic to intermediate.net, EF, SQL, C#, OOP
  • Q2. Basics of .Net Core
Round 2 - Technical 

(1 Question)

  • Q1. Deep into.net and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were good and friendly, but HR's does not have any management.

I completed 2 tech rounds, shortlisted in both of them and then HR is saying that my experience is low for the position so they will not move forward. Seriously W.T.F..

And after that HR is not picking up calls
Even while scheduling interviews there were 3-4 rescheduled.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. About yourself and background only

Interview Preparation Tips

Interview preparation tips for other job seekers - good good
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Array vs string
  • Ans. 

    Arrays are collections of multiple values, while strings are sequences of characters.

    • Arrays can store multiple values of different data types, while strings are specifically for storing sequences of characters.

    • Arrays can be accessed and manipulated using index positions, while strings have specific methods for working with characters.

    • Example: array = ['apple', 'banana', 'cherry'], string = 'hello world'

  • Answered by AI
  • Q2. String reverse , tree traversal
  • Q3. Read trie topic

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy round

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. 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 tips
Round 2 - HR 

(5 Questions)

  • Q1. Work experience and concern work
  • Q2. 18 Plus in infrastructure field
  • Q3. Positive approach
  • Q4. Punctuality and accessible
  • Q5. Clear vision on working area ,valuated risk,

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear vision your work area and proactive approach
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Tableau intensive assignment with few questions on SQL and basic Python

Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion on submitted assignment and current job role
  • Q2. What kind of analysis have you done in your current role?
Round 4 - HR 

(1 Question)

  • Q1. Basic discussion on why I am switching from my current company and salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap allows quick access to values based on their keys

    • Keys must be unique and values can be duplicated

    • HashMap is not thread-safe and requires synchronization for concurrent access

    • Java's HashMap implementation uses hashing to distribute keys across buckets

  • Answered by AI
  • Q2. It’s a collection framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

    A cycle occurs when a node's next points back to a previous node in the ...

  • Ans. 

    The task is to determine if a given singly linked list forms a cycle or not.

    • A cycle occurs when a node's next points back to a previous node in the list.

    • To solve this problem, we can use the Floyd's Cycle-Finding Algorithm.

    • The algorithm uses two pointers, one moving at a normal pace and the other moving twice as fast.

    • If there is a cycle, the fast pointer will eventually catch up to the slow pointer.

    • If the fast pointer ...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Minimum Depth Of Binary Tree

    You have been given a Binary Tree of integers, find the minimum depth of this Binary Tree. The minimum depth of a Binary Tree is the number of nodes along the shortest path fro...

  • Ans. 

    The minimum depth of a binary tree is the number of nodes along the shortest path from the root node down to the nearest leaf node.

    • The minimum depth can be found by performing a breadth-first search (BFS) traversal of the binary tree

    • During the BFS traversal, keep track of the current level and increment the depth by 1 for each level

    • Stop the BFS traversal when a leaf node is encountered and return the depth as the minim

  • Answered by AI
  • Q2. Intersection Of Two Arrays

    You are given two arrays 'A' and 'B' of size 'N' and 'M' respectively. Both these arrays are sorted in non-decreasing order. You have to find the ...

  • Ans. 

    The problem is to find the intersection of two sorted arrays.

    • Use two pointers to iterate through the arrays.

    • Compare the elements at the current pointers and move the pointers accordingly.

    • If the elements are equal, add it to the intersection array and move both pointers.

    • If the element in the first array is smaller, move the first pointer.

    • If the element in the second array is smaller, move the second pointer.

    • Repeat until...

  • Answered by AI
  • Q3. Operating System Question

    What is the difference between a mutex and a semaphore

  • Ans. 

    A mutex is a binary semaphore used for mutual exclusion, while a semaphore is a generalized synchronization primitive.

    • Mutex is used to protect a critical section of code, allowing only one thread to access it at a time.

    • Semaphore is used to control access to a shared resource, allowing multiple threads to access it simultaneously.

    • Mutex has ownership, meaning the thread that locks it must unlock it.

    • Semaphore does not hav...

  • Answered by AI
Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Easy

Round 4 - HR 

Round duration - 25 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaMinimum CGPA Required: 7.0F5 Networks interview preparation:Topics to prepare for the interview - Data Structure and Algorithms, Operating Systems, Object-Oriented Programming, Computer Networks, System DesignTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot of DSA questions on various online platforms. 
Tip 2 : Regularly go back to some of the typical DSA questions.
Tip 3 : Give equal importance to OS, OOPS, and CN subjects.

Application resume tips for other job seekers

Tip 1 : Be thorough with your resume to answer anything and everything from your resume.
Tip 2 : Do not put false information on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Indeed and was interviewed before Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A dataset was given to dig out few insights on that. They will let you use any tool you know to get the required insights as the main goal is on the result and not on the process. But type of approach does...

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on the basics of Data analytics. Mainly R programming, fundamentals of statistics and advanced Excel as it was an entry level job for data analytics profile. Other tools and technologies are a bonus if you know.
Do not ever lie or write anything on your resume that you don't have knowledge about.
Be straight forward if you don't know and save your interviewer's and your time and respect. Wish you best of luck.

Choice International Interview FAQs

How many rounds are there in Choice International DPT.Manager interview?
Choice International interview process usually has 2 rounds. The most common rounds in the Choice International interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Expedia Group Interview Questions
3.9
 • 81 Interviews
Thomas Cook Interview Questions
3.8
 • 43 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Equifax Interview Questions
3.3
 • 29 Interviews
KLA Interview Questions
3.4
 • 25 Interviews
Monte Carlo Interview Questions
4.2
 • 24 Interviews
MapmyIndia Interview Questions
3.8
 • 24 Interviews
View all
Relationship Manager
39 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Operations Executive
20 salaries
unlock blur

₹1.9 L/yr - ₹3.2 L/yr

Assistant Manager
18 salaries
unlock blur

₹2.7 L/yr - ₹4.8 L/yr

Senior Executive
18 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Executive Accountant
13 salaries
unlock blur

₹2 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Choice International with

Thomas Cook

3.8
Compare

Cox & Kings

3.7
Compare

MakeMyTrip

3.7
Compare

Yatra

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