Upload Button Icon Add office photos

Cyient

Compare button icon Compare button icon Compare

Filter interviews by

Cyient Product Engineer Interview Questions and Answers

Updated 13 Jan 2024

Cyient Product Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics on theory of plastics
  • Q2. Basics on Knowledge on mould design concepts
Round 2 - Tool test 

(1 Question)

  • Q1. With in given time given design have to be designed. Dont have to rush but must follow fitting procedure /steps in design process.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics have to perfect. Know design concepts & constraints used in practical world.

Interview questions from similar companies

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

Data interpretation good knowledge one should have

Round 2 - Coding Test 

Python or java basic coding problems

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the architecture of the Java Virtual Machine (JVM)?
  • Ans. 

    The Java Virtual Machine (JVM) is an abstract computing machine that enables a computer to run Java programs.

    • JVM is platform-independent and converts Java bytecode into machine code.

    • It consists of class loader, runtime data areas, execution engine, and native method interface.

    • JVM memory is divided into method area, heap, stack, and PC register.

    • Examples of JVM implementations include Oracle HotSpot, OpenJ9, and GraalVM.

  • Answered by AI
  • Q2. What is the default connection pooling in Spring Boot, and how can it be customized?
  • Ans. 

    The default connection pooling in Spring Boot is HikariCP, which can be customized through properties in the application.properties file.

    • HikariCP is the default connection pooling library in Spring Boot, known for its high performance and low overhead.

    • To customize the connection pooling, you can modify properties like 'spring.datasource.hikari.*' in the application.properties file.

    • For example, you can set maximum pool ...

  • Answered by AI
  • Q3. What are the best practices for optimizing a Spring Boot application?
  • Ans. 

    Best practices for optimizing a Spring Boot application

    • Use Spring Boot Actuator to monitor and manage application performance

    • Implement caching mechanisms like Spring Cache to reduce database calls

    • Optimize database queries and indexes for better performance

    • Use asynchronous processing with Spring's @Async annotation for non-blocking operations

    • Profile and analyze application performance using tools like VisualVM or JProfi

  • Answered by AI
  • Q4. What is a heap dump, and how can it be used to identify memory leaks?
  • Ans. 

    A heap dump is a snapshot of the memory usage of a Java application at a specific point in time.

    • Heap dumps can be generated using tools like jmap or VisualVM.

    • They provide detailed information about objects in memory, their sizes, and references.

    • Analyzing a heap dump can help identify memory leaks by pinpointing objects that are consuming excessive memory.

    • Common signs of memory leaks in a heap dump include a large numbe...

  • Answered by AI
  • Q5. How can you diagonally iterate through and print the elements of a 2D array?program
  • Ans. 

    Diagonally iterate through and print elements of a 2D array of strings.

    • Use nested loops to iterate through rows and columns of the 2D array.

    • Calculate the diagonal elements by incrementing row and column indices together.

    • Print the elements as you iterate through the diagonal of the array.

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are your roles and responsibilities in brief?
  • Q2. What are the exact steps you do as a Product Owner

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a clear understanding of the Job role requirement before appearing. Ask for detailed JD
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on core java concepts
  • Q2. Questions on SQL and Springboot
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Collection framework.
  • Q2. Questions on Springboot and core java
Round 3 - Client Interview 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Stream API questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is name of company
  • Q2. Why you want to work here
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Agile delivery mechanism.
  • Q2. User stories
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Which java version are you using in your project and what are the features in it
  • Ans. 

    We are using Java 11 in our project, which includes features like local variable type inference, HTTP client API, and improved security.

    • Java 11 introduced local variable type inference, allowing the compiler to infer the type of a variable based on the initializer.

    • The HTTP client API in Java 11 provides a more modern and flexible way to send HTTP requests and handle responses.

    • Java 11 also includes improved security fea...

  • Answered by AI
  • Q2. Which spring boot version are you using in your project and what are the features in it
  • Ans. 

    We are using Spring Boot version 2.5.2 in our project, which includes features like improved startup performance, enhanced actuator endpoints, and updated dependencies.

    • Spring Boot 2.5.2 offers improved startup performance compared to previous versions.

    • Enhanced actuator endpoints provide better monitoring and management capabilities.

    • Updated dependencies ensure compatibility with the latest libraries and frameworks.

  • Answered by AI
  • Q3. What is 12 factors approach for micro service
  • Ans. 

    The 12 factors approach is a methodology for building modern, scalable, and maintainable microservices.

    • Codebase: One codebase tracked in revision control, many deploys

    • Dependencies: Explicitly declare and isolate dependencies

    • Config: Store config in the environment

    • Backing services: Treat backing services as attached resources

    • Build, release, run: Strictly separate build and run stages

    • Processes: Execute the app as one or m...

  • Answered by AI
  • Q4. How to find the 3rd highest element in an unsorted array with duplicate using java 8.
  • Ans. 

    Use Java 8 streams to find the 3rd highest element in an unsorted array with duplicates.

    • Convert the array to a stream using Arrays.stream()

    • Use distinct() to remove duplicates

    • Sort the stream in descending order using sorted(Comparator.reverseOrder())

    • Skip the first two elements using skip(2)

    • Find and return the third element using findFirst()

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Coforge Lead Engineer interview:
  • Microservices
  • Java8

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour, wage question, not related to mention technology.

Round 2 - Technical 

(2 Questions)

  • Q1. Oops related queries
  • Q2. Discussion around last project

Interview Preparation Tips

Interview preparation tips for other job seekers - Try in some better organization
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. 1. About oil industry and what products we have worked and explain some product / feature which are new / different
Round 2 - Case Study 

Comprises many questions related to MTM, Costing methods, price changes, in transit oil price calculations with a case history.

Round 3 - One-on-one 

(1 Question)

  • Q1. 1. Questions based on case study 2. Questions related to past experience with DB, technology we have worked, related to product management
Round 4 - One-on-one 

(1 Question)

  • Q1. 1. More of a culture fit questions
Round 5 - HR 

(1 Question)

  • Q1. Asked About what we know about Sapient, Why we are leaving the previous org etc.

Cyient Interview FAQs

How many rounds are there in Cyient Product Engineer interview?
Cyient interview process usually has 2 rounds. The most common rounds in the Cyient interview process are Technical.
How to prepare for Cyient Product Engineer 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 Cyient. The most common topics and skills that interviewers at Cyient expect are Aerospace, Healthcare, Semiconductor, Technology Solutions and Change Management.
What are the top questions asked in Cyient Product Engineer interview?

Some of the top questions asked at the Cyient Product Engineer interview -

  1. With in given time given design have to be designed. Dont have to rush but must...read more
  2. Basics on Knowledge on mould design conce...read more
  3. Basics on theory of plast...read more

Tell us how to improve this page.

Cyient Product Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
View all
Cyient Product Engineer Salary
based on 4 salaries
₹4 L/yr - ₹7.5 L/yr
26% less than the average Product Engineer Salary in India
View more details
Design Specialist
2.1k salaries
unlock blur

₹1 L/yr - ₹6.5 L/yr

Design Engineer
1.7k salaries
unlock blur

₹2.8 L/yr - ₹10.6 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3.7 L/yr - ₹15.1 L/yr

GIS Engineer
1.1k salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Senior Design Engineer
906 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Cyient with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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