Upload Button Icon Add office photos

Filter interviews by

Classic Auto Tubes Interview Questions and Answers

Updated 6 Feb 2024

Classic Auto Tubes Interview Experiences

Popular Designations

5 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Walk-in and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Ea releted 1 daily work schedule 2 work of experience 3,Who do you report and whom do you report? 4
Round 2 - Behavioral 

(1 Question)

  • Q1. Basic information 1 where are belong 2 how much experience 3. who is in the family

Assistant Director Interview Questions asked at other Companies

Q1. how to uplift the socio economic status of poor fishermen community
View answer (1)

Software Engineer Interview Questions & Answers

user image Manish Maurya

posted on 3 Jul 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Newspaper Ad and was interviewed in Jan 2023. There were 4 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 - Aptitude Test 

Reasoning, maths, English compression etc

Round 3 - Technical 

(3 Questions)

  • Q1. Which saftware do you used. During your work
  • Ans. 

    I have experience using a variety of software tools including IDEs, version control systems, testing frameworks, and project management tools.

    • IDEs: Visual Studio, IntelliJ IDEA

    • Version Control Systems: Git, SVN

    • Testing Frameworks: JUnit, Selenium

    • Project Management Tools: Jira, Trello

  • Answered by AI
  • Q2. Robot work experience
  • Ans. 

    I have experience working on developing software for robots in a previous role.

    • Developed software for autonomous robots to navigate and perform tasks

    • Implemented algorithms for object detection and manipulation

    • Worked on integrating sensors and actuators for robot control

  • Answered by AI
  • Q3. Kuka robot displays software used that
  • Ans. 

    Kuka robot displays software used for programming and controlling the robot.

    • Kuka robots typically use software like KUKA Sim Pro, KUKA OfficeLite, and KUKA Sunrise.Workbench for programming and controlling the robot.

    • The software allows users to create and simulate robot programs, as well as monitor and adjust robot movements.

    • Users can also use the software to teach the robot new tasks and optimize its performance.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How much salary requirements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare software related question

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 (181)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. There were 2 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 - HR 

(2 Questions)

  • Q1. About all full in resume
  • Q2. Abouts ur projects and basic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prefer ur basic and projects oriented great company ever

Control System Engineer Interview Questions asked at other Companies

Q1. Give one example of optimization problem you have solved as a project
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Cnc programing must
  • Q2. Turning and milling

CNC Turning Operator Interview Questions asked at other Companies

Q1. 1. What is CNC 2. How does CNC work. etc.
View answer (1)

Classic Auto Tubes interview questions for popular designations

 Assistant Director

 (1)

 CNC Turning Operator

 (1)

 Control System Engineer

 (1)

 Software Engineer

 (1)

 Suparvisor Team Leader /Excel Work/other

 (1)

Interview Questionnaire 

1 Question

  • Q1. Job experience

Interview questions from similar companies

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

(2 Questions)

  • Q1. Given a sequence of n numbers, how can you identify the missing element? For example, in the sequence 1, 2, 4, 5, the missing element is 3.
  • Q2. Identify the next palindrome number Eg: 11 Ans :22
Round 2 - Behavioral 

(2 Questions)

  • Q1. Why are you choosing Advance Auto Parts
  • Q2. How do you handle stress
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral

Round 1 - Technical 

(4 Questions)

  • Q1. Technical Interview 1(1 hour)
  • Q2. What is Constructor, is virtual constructor possible in C++, Virtual destructor with implementation.
  • Ans. 

    Constructor is a special member function used for initializing objects. Virtual constructor is not possible in C++. Virtual destructor can be implemented.

    • Constructor is a special member function with the same name as the class, used for initializing objects.

    • Virtual constructor is not possible in C++ as constructors cannot be virtual.

    • Virtual destructor is possible in C++ and is used to ensure proper cleanup of resources...

  • Answered by AI
  • Q3. Getter setter implementation, implementation of virtual function, difference between encapsulation and abstraction, focus on OOP
  • Ans. 

    Understanding getter setter, virtual function, encapsulation, abstraction in OOP

    • Getter and setter methods are used to access and modify private class members respectively

    • Virtual functions in C++ allow dynamic binding and are overridden in derived classes

    • Encapsulation is bundling data and methods that operate on the data together

    • Abstraction is hiding the complex implementation details and showing only necessary features

    • ...

  • Answered by AI
  • Q4. Current organization projects
  • Ans. 

    Developing embedded software for real-time monitoring system in automotive industry

    • Implementing communication protocols like CAN and LIN

    • Optimizing code for resource-constrained environments

    • Integrating sensors for data collection and analysis

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Purely coding (1 hour 30 min)
  • Q2. What is Friend function, Getter setter, Static variable and static function with implementation
  • Ans. 

    Friend function is a function that is not a member of a class but has access to its private and protected members. Getter setter are methods used to access and modify private variables. Static variables are shared among all instances of a class. Static functions are functions that can be called without an instance of the class.

    • Friend function allows external functions to access private and protected members of a class.

    • ...

  • Answered by AI
  • Q3. Diamond problem program with approach
  • Ans. 

    Diamond problem occurs in multiple inheritance when a class inherits from two classes that have a common base class.

    • Diamond problem can be resolved using virtual inheritance in C++.

    • Virtual inheritance ensures that only one instance of the common base class is inherited.

    • Example: class A is inherited by classes B and C, then class D inherits from both B and C. Using virtual inheritance for B and C in D resolves the diamo

  • Answered by AI
  • Q4. What is interrupt service routine, watchdog timer, lambda function, baud rate, CAN frame format, spi, Autosar related questions some
  • Ans. 

    Interrupt service routine handles interrupts, watchdog timer resets system if it hangs, lambda function is an anonymous function, baud rate is data transfer rate, CAN frame format is used in Controller Area Network, SPI is Serial Peripheral Interface, Autosar is an automotive software architecture.

    • ISR is a function that handles interrupts from hardware devices

    • Watchdog timer resets the system if it hangs or stops respon...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on OOP with implementation , Projects

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Your expertise in which field
  • Ans. 

    My expertise lies in the field of mechanical engineering with a focus on structural analysis and design.

    • Specialize in structural analysis and design

    • Proficient in CAD software such as AutoCAD and SolidWorks

    • Experience with finite element analysis (FEA)

    • Knowledge of material properties and stress analysis

    • Worked on projects involving designing and testing mechanical components

  • Answered by AI
  • Q2. What is the problem comming in the part at your working company.
  • Ans. 

    The main problem in the part at my working company is frequent breakdowns due to poor quality materials.

    • Frequent breakdowns due to poor quality materials

    • Lack of proper maintenance procedures

    • Inadequate training of maintenance staff

    • Supplier issues with delivering substandard parts

  • Answered by AI
Round 2 - Technical 

(7 Questions)

  • Q1. What is quality.
  • Ans. 

    Quality is the measure of excellence or superiority of something.

    • Quality is meeting or exceeding customer expectations.

    • It involves consistency, reliability, and durability.

    • Quality can be subjective and may vary depending on the context.

    • Examples include high-quality products, services, processes, and experiences.

  • Answered by AI
  • Q2. Rubber property and it's testing
  • Q3. What is your responsibility
  • Ans. 

    As a Sr. Engineer, my responsibility is to lead and manage engineering projects, provide technical expertise, and ensure the successful completion of tasks.

    • Leading and managing engineering projects from conception to completion

    • Providing technical expertise and guidance to team members

    • Ensuring the successful execution of tasks within deadlines and budget constraints

    • Collaborating with cross-functional teams to achieve pr...

  • Answered by AI
  • Q4. How to solve the problem
  • Ans. 

    To solve the problem, first identify the root cause, brainstorm potential solutions, evaluate each solution, implement the best one, and monitor the results.

    • Identify the root cause of the problem by analyzing data and gathering information.

    • Brainstorm potential solutions with a team or individually.

    • Evaluate each solution based on feasibility, cost, and impact.

    • Implement the best solution and monitor the results to ensure...

  • Answered by AI
  • Q5. What is qa and qc
  • Q6. Why do you want to change job.
  • Ans. 

    Seeking new challenges and opportunities for growth in a different environment.

    • Looking for new challenges and opportunities for professional growth

    • Interested in working with new technologies or industries

    • Seeking a better work-life balance or company culture

    • Wanting to relocate to a different city or country for personal reasons

  • Answered by AI
  • Q7. What is your aspects from this company
  • Ans. 

    I am impressed by the company's commitment to innovation, strong team culture, and focus on employee development.

    • Innovative projects and technologies being developed

    • Positive team culture and collaboration

    • Opportunities for professional growth and development

    • Company's reputation and success in the industry

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is your current salary
  • Ans. 

    I am currently earning a competitive salary based on my experience and qualifications.

    • My current salary is in line with industry standards

    • I am open to discussing compensation based on the responsibilities of the Sr. Engineer role

    • I believe my salary should reflect my skills and contributions to the company

  • Answered by AI
  • Q2. What is the aspect
  • Ans. 

    The aspect refers to a particular part or feature of something.

    • Aspect is a specific element or characteristic of a subject or situation.

    • It can also refer to a particular way in which something can be viewed or interpreted.

    • For example, in engineering, the aspect of a design could refer to its functionality, aesthetics, or cost-effectiveness.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Joining date and relieving letter
  • Q2. Dd documents verification
Round 5 - HR 

(2 Questions)

  • Q1. Resignation from working company
  • Q2. Provided offer letter of the minda tg
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Which machine used?
  • Ans. 

    Various machines are used in engineering, depending on the specific task at hand.

    • Milling machines are used for cutting and shaping solid materials.

    • Lathe machines are used for shaping metal or wood by rotating the workpiece against a cutting tool.

    • Drilling machines are used for creating holes in materials.

    • Grinding machines are used for finishing workpieces by removing excess material.

    • CNC machines are computer-controlled

  • Answered by AI
  • Q2. What part manufacturers?
  • Ans. 

    Part manufacturers are companies that produce components or parts used in various products.

    • Part manufacturers specialize in producing specific components or parts.

    • They often work with engineers to design and create custom parts.

    • Examples include companies that manufacture screws, gears, circuit boards, etc.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Semiauto or robotic machine?
  • Q2. Minimum and maximum tonnage machine how much?
  • Ans. 

    The minimum and maximum tonnage of a machine depends on its type and purpose.

    • Minimum and maximum tonnage can vary greatly depending on the type of machine (e.g. hydraulic press, injection molding machine)

    • For example, a hydraulic press may have a minimum tonnage of 10 tons and a maximum tonnage of 500 tons

    • It is important to consider the intended use of the machine when determining the appropriate tonnage range

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your current knowledge of bearings, and can you provide details about your past company experience related to them?
  • Ans. 

    I have a strong knowledge of bearings from my previous company experience in the manufacturing industry.

    • I have worked with various types of bearings such as ball bearings, roller bearings, and thrust bearings.

    • I have experience in selecting the right bearings for specific applications based on load, speed, and operating conditions.

    • I have knowledge of bearing maintenance and troubleshooting techniques to ensure optimal p...

  • Answered by AI
  • Q2. Family details also asked travelling flexibility

Interview Preparation Tips

Interview preparation tips for other job seekers - When I attended, they asked simple questions, but now I am unsure.

Classic Auto Tubes Interview FAQs

How many rounds are there in Classic Auto Tubes interview?
Classic Auto Tubes interview process usually has 2-3 rounds. The most common rounds in the Classic Auto Tubes interview process are HR, Resume Shortlist and Technical.
How to prepare for Classic Auto Tubes 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 Classic Auto Tubes. The most common topics and skills that interviewers at Classic Auto Tubes expect are Retail, Sales, Shop Floor Management and Spare Parts.
What are the top questions asked in Classic Auto Tubes interview?

Some of the top questions asked at the Classic Auto Tubes interview -

  1. Which saftware do you used. During your w...read more
  2. Kuka robot displays software used t...read more
  3. Robot work experie...read more

Tell us how to improve this page.

Classic Auto Tubes Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Global Autotech Interview Questions
4.0
 • 47 Interviews
ZF Steering Gear Interview Questions
3.7
 • 40 Interviews
Ag Industries Interview Questions
4.0
 • 39 Interviews
Toyoda Gosei Minda Interview Questions
4.2
 • 22 Interviews
Mikuni Interview Questions
4.2
 • 20 Interviews
ABC Bearings Interview Questions
3.9
 • 19 Interviews
Rane Brake Lining Interview Questions
4.2
 • 18 Interviews
Jayashree Polymers Interview Questions
3.6
 • 17 Interviews
Texspin Bearings Interview Questions
3.9
 • 16 Interviews
HYUNDAI TRANSYS INDIA Interview Questions
3.9
 • 16 Interviews
View all

Classic Auto Tubes Reviews and Ratings

based on 49 reviews

4.1/5

Rating in categories

3.7

Skill development

4.1

Work-life balance

3.6

Salary

4.0

Job security

3.8

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 49 Reviews and Ratings
Executive Production
13 salaries
unlock blur

â‚ą2 L/yr - â‚ą2.5 L/yr

Executive
11 salaries
unlock blur

â‚ą1.9 L/yr - â‚ą3.8 L/yr

Electrical Technician
5 salaries
unlock blur

â‚ą2.4 L/yr - â‚ą4 L/yr

Commercial Executive
5 salaries
unlock blur

â‚ą3.4 L/yr - â‚ą5.8 L/yr

Mechanical Maintenance Engineer
5 salaries
unlock blur

â‚ą1.2 L/yr - â‚ą2.8 L/yr

Explore more salaries
Compare Classic Auto Tubes with

ZF Steering Gear

3.7
Compare

Ag Industries

4.0
Compare

Toyoda Gosei Minda

4.2
Compare

Global Autotech

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