Upload Button Icon Add office photos

Filter interviews by

Paloma Turning Interview Questions and Answers

Updated 26 Nov 2024
Popular Designations

Paloma Turning Interview Experiences

4 interviews found

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

I applied via Company Website and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

G code,M code, programe test

Round 2 - Technical 

(3 Questions)

  • Q1. Which tool using the milling
  • Ans. 

    The tool commonly used for milling is a milling machine.

    • Milling machine is commonly used for shaping solid materials.

    • It uses a rotating cutter to remove material from a workpiece.

    • Examples include vertical milling machine, horizontal milling machine, and CNC milling machine.

  • Answered by AI
  • Q2. How to select the tools
  • Ans. 

    Tools should be selected based on the specific needs of the NPD process, considering factors like complexity, budget, and team expertise.

    • Identify the specific requirements of the NPD process, such as design, testing, or analysis.

    • Consider the complexity of the project and choose tools that can handle the level of detail required.

    • Evaluate the budget available for tools and select cost-effective options that still meet th...

  • Answered by AI
  • Q3. How to select& draw the diagram
  • Ans. 

    Selecting and drawing diagrams involves identifying the key components and relationships, and visually representing them in a clear and organized manner.

    • Identify the key components or elements that need to be included in the diagram.

    • Determine the relationships between these components and how they interact with each other.

    • Choose the appropriate type of diagram based on the information to be conveyed (e.g. flowchart, pr...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Before company salary review.
  • Q2. Expectation salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Now good job .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Jun 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 - One-on-one 

(1 Question)

  • Q1. Job profile and long term relationship

Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Dec 2022

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

I applied via Walk-in and was interviewed in Nov 2022. 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.JOB PROFILE REGARDING QUESTION 2.WORK AND RESPONSIBILITIES REGARDING TECHNICAL QUESTIONS.
  • Q2. WHAT IS FULL FORM OF ABS
  • Ans. 

    ABS stands for Anti-lock Braking System.

    • ABS is a safety system that prevents the wheels from locking up during braking.

    • It allows the driver to maintain steering control and avoid skidding.

    • ABS works by rapidly pulsing the brakes to prevent the wheels from locking up.

    • It is commonly found in modern cars and motorcycles.

    • ABS is an important safety feature that can prevent accidents and save lives.

  • Answered by AI
Round 3 - Aptitude Test 

GENERAL QUESTION FOR BACKGROUND

Interview Preparation Tips

Interview preparation tips for other job seekers - PLEASE REVISE YOUR BASIC KNOWLEDGE, ANSWER RIGHT AND TO THE POINT.

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About tools and processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with prepration. Tooling, kizens , tool room

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Paloma Turning?
Ask anonymously on communities.

Interview questions from similar companies

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

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I appeared for an interview in Mar 2018.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Problem Solving, Leadership, Decision Making Skills

I applied via Recruitment Consultant and was interviewed before Apr 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Multiple technical round questions around devops, python program development, kubernetes and linux. ( Question can be different based on job requirements)

Interview Preparation Tips

Interview preparation tips for other job seekers - Multiple technical (5 rounds) interview need some preparation.
Hr interview was formality if are really liked by technical panel you will pass hr round easily.
Are these interview questions helpful?

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Path Queries Problem Statement

    Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...

  • Ans. 

    Implement a function to find the shortest distance between two vertices in a weighted, undirected graph.

    • Use Dijkstra's algorithm to find the shortest path between the given vertices.

    • Create a graph data structure to represent the weighted, undirected graph.

    • Handle cases where no path exists between the given vertices by returning -1.

    • Optimize the algorithm to handle multiple queries efficiently.

    • Consider edge cases such as...

  • Answered by AI
  • Q2. 

    Merge Sort Algorithm Problem Statement

    Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.

    Explanation:

    Merge Sort is a divide-an...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively

    • Sort the two halves separately

    • Merge the sorted halves to produce a fully sorted array

    • Time complexity of Merge Sort is O(n log n)

    • Example: Input - [5, 2, 9, 1, 5], Output - [1, 2, 5, 5, 9]

  • Answered by AI
  • Q3. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. 

    Given an N * N maze with binary values, find and print all possible paths for a rat to reach the destination cell.

    • Use backtracking to explore all possible paths from the starting cell to the destination cell.

    • At each cell, check if it is a valid move (within bounds and not blocked), then recursively explore all four directions.

    • Keep track of the path taken so far and mark the cells accordingly.

    • Once the destination cell i...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Aptitude questions similar to the ones from the first round

Interview Preparation Tips

Interview preparation tips for other job seekers - Just relax and take up the interview with confidence. Even if you get one question wrong just calm down and read the question again and try again.

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Complex sql scenarios and their results
  • Ans. 

    Complex SQL scenarios and their results

    • Using subqueries to filter data

    • Joining multiple tables with complex conditions

    • Using window functions to calculate running totals

    • Pivoting data to transform rows into columns

    • Using recursive queries to traverse hierarchical data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have strong knowledge in SQL, ETL & DWH concepts

Skills evaluated in this interview

Paloma Turning Interview FAQs

How many rounds are there in Paloma Turning interview?
Paloma Turning interview process usually has 2-3 rounds. The most common rounds in the Paloma Turning interview process are Resume Shortlist, Technical and Coding Test.
What are the top questions asked in Paloma Turning interview?

Some of the top questions asked at the Paloma Turning interview -

  1. How to select& draw the diag...read more
  2. WHAT IS FULL FORM OF ...read more
  3. How to select the to...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 5 interview experiences

Difficulty level

Moderate 67%
Hard 33%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

BCD Travel Interview Questions
4.3
 • 113 Interviews
DISH TV Interview Questions
3.5
 • 64 Interviews
MagicPin Interview Questions
2.6
 • 56 Interviews
Lido Learning Interview Questions
2.2
 • 55 Interviews
View all

Paloma Turning Reviews and Ratings

based on 88 reviews

3.8/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.5

Salary

3.7

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 88 Reviews and Ratings
Engineer
19 salaries
unlock blur

₹3.1 L/yr - ₹6.1 L/yr

Assistant Manager
15 salaries
unlock blur

₹6.4 L/yr - ₹8 L/yr

Quality Engineer
11 salaries
unlock blur

₹1.5 L/yr - ₹5.5 L/yr

Junior Engineer
10 salaries
unlock blur

₹2.4 L/yr - ₹3.4 L/yr

Senior Engineer
9 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare Paloma Turning with

Reliance Communications

4.0
Compare

ZF Steering Gear

3.7
Compare

DISH TV

3.5
Compare

Coca-Cola Company

4.1
Compare
write
Share an Interview