Upload Button Icon Add office photos

Filter interviews by

Cyient Lead Engineer Interview Questions and Answers

Updated 29 Jan 2024

Cyient Lead Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Language specific questions
  • Ans. Basic and advanced C++ along with some tricky programs tow write
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Cyient Lead Engineer interview:
  • C++
  • C++11
  • Pointers
  • Advance C++
Interview preparation tips for other job seekers - Prepare well for whatever technology you want to work on.

Lead Engineer Jobs at Cyient

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Many questions on JAVA, SpringBoot,Kafka
  • Q2. Core JAVA, JAVA 8, Collections, Stream,Junit
Round 2 - Technical 

(2 Questions)

  • Q1. Multiple questions on Spring , Constructors, Kafka , Flatmap, Collections, Mapping
  • Q2. SQL query , HashMAp
Round 3 - Behavioral 

(3 Questions)

  • Q1. 1Code on Palindrome
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the string is equal to its reverse to determine if it is a palindrome.

    • Ignore spaces and punctuation when checking for palindromes.

    • Examples: 'racecar', 'madam', '12321'

  • Answered by AI
  • Q2. About kafka ecosystem . Basics of Producers/Consumer
  • Q3. Primary/Qualifier/order annotations

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on JAVA Basics and springboot.
Final, Singleton, Collections,Immutable,DeepCopy, Builder Pattenrn

Skills evaluated in this interview

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
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Microservices, java questions
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
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. What are python libraries used as a data engineer?
  • Ans. 

    Python libraries commonly used by data engineers include Pandas, NumPy, Matplotlib, and Scikit-learn.

    • Pandas: Used for data manipulation and analysis.

    • NumPy: Provides support for large, multi-dimensional arrays and matrices.

    • Matplotlib: Used for creating visualizations and plots.

    • Scikit-learn: Offers machine learning algorithms and tools for data analysis.

  • Answered by AI
  • Q2. What is PySpark
  • Ans. 

    PySpark is a Python API for Apache Spark, a powerful open-source distributed computing system.

    • PySpark allows users to write Spark applications using Python programming language.

    • It provides high-level APIs in Python for Spark's functionality, making it easier to work with large datasets.

    • PySpark can be used for data processing, machine learning, graph processing, and more.

    • Example: PySpark can be used to perform data anal...

  • Answered by AI
  • Q3. Explain about your project Architecture
Round 2 - Technical 

(2 Questions)

  • Q1. What is Delta Lake and its benefits
  • Ans. 

    Delta Lake is an open-source storage layer that brings ACID transactions to Apache Spark and big data workloads.

    • Provides ACID transactions for big data workloads

    • Ensures data reliability and quality by enabling schema enforcement and data versioning

    • Supports batch and streaming data processing

    • Improves data quality and reliability by enabling schema enforcement and data versioning

  • Answered by AI
  • Q2. How will you create a end to end pipelines in Data Factory if my source and target are SQL and ASQL respectively?
  • Ans. 

    Create end to end pipelines in Data Factory with SQL and ASQL as source and target respectively.

    • Use Copy Data activity to move data from SQL source to ASQL target

    • Define linked services for SQL and ASQL in Data Factory

    • Create datasets for SQL and ASQL tables

    • Map columns between source and target datasets

    • Configure data flow activities for any transformations needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Graphql , Web workers vs Service workers
  • Ans. 

    GraphQL is a query language for APIs, Web workers run scripts in background threads, Service workers are scripts that run in the background and can intercept network requests.

    • GraphQL is a query language for APIs that allows clients to request only the data they need.

    • Web workers run scripts in background threads separate from the main browser thread, improving performance by handling tasks concurrently.

    • Service workers a...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Technical related to my experience

I applied via Company Website and was interviewed in Aug 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 - Technical 

(3 Questions)

  • Q1. No Technical job, so high level questions
  • Q2. Why are you choose LTTS
  • Q3. When are you able to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident for answering questions dont say No instead of I will learn

Interview Questionnaire 

2 Questions

  • Q1. SCCM logs and Infra work flow
  • Q2. Read sccm client logs, site logs and have depth ideas on particular field.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was not that much good as junior resource took interview

Cyient Interview FAQs

How many rounds are there in Cyient Lead Engineer interview?
Cyient interview process usually has 2 rounds. The most common rounds in the Cyient interview process are Technical and Resume Shortlist.
How to prepare for Cyient Lead 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, CATIA and Design.

Tell us how to improve this page.

Cyient Lead Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Cyient Lead Engineer Salary
based on 200 salaries
₹6.2 L/yr - ₹25 L/yr
5% less than the average Lead Engineer Salary in India
View more details

Cyient Lead Engineer Reviews and Ratings

based on 29 reviews

2.6/5

Rating in categories

2.8

Skill development

2.8

Work-life balance

2.6

Salary

2.7

Job security

2.1

Company culture

2.1

Promotions

2.6

Work satisfaction

Explore 29 Reviews and Ratings
Lead Engineer

Pune

8-16 Yrs

₹ 8.5-11.3 LPA

Explore more jobs
Design Specialist
2.1k salaries
unlock blur

₹1 L/yr - ₹7.2 L/yr

Design Engineer
1.7k salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3.6 L/yr - ₹15 L/yr

GIS Engineer
1.1k salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Senior Design Engineer
904 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