Upload Button Icon Add office photos

Filter interviews by

Cyient Front end Developer Interview Questions and Answers

Updated 4 Jul 2024

Cyient Front end Developer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Based on Angular
  • Q2. Based on Html, CSS, Javascript
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Punjab Engineering College (PEC) and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding problem of array and another of stack

Round 2 - Technical 

(2 Questions)

  • Q1. What is callback hell
  • Ans. 

    Callback hell is a situation in asynchronous programming where multiple nested callbacks make the code difficult to read and maintain.

    • Callback hell occurs when there are multiple levels of nested callbacks in asynchronous code.

    • It makes the code difficult to understand, debug, and maintain.

    • Promises and async/await are solutions to avoid callback hell.

    • Example: nested callbacks in JavaScript AJAX requests.

  • Answered by AI
  • Q2. What is the difference between props and state
  • Ans. 

    Props are used to pass data from a parent component to a child component, while state is used to manage data within a component.

    • Props are read-only and cannot be modified by the child component

    • State is mutable and can be updated using setState()

    • Props are passed down from parent to child components

    • State is managed within a component and can be changed based on user interactions or other events

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn morr about how javascript works

Skills evaluated in this interview

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'AR ... read more
Q2. Find UniqueYou have been given an integer array/list(ARR) of size ... read more
asked in JUSPAY
Q3. Dijkstra's shortest pathYou have been given an undirected graph o ... read more
asked in JUSPAY
Q4. Encode N-ary tree to binary treeYou have been given an N-ary tree ... read more
asked in Siemens
Q5. Sort ArrayYou are given an array consisting of 'N' positive integ ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Discussion about my previous project
  • Q2. Question on html, css, javascript & react
  • Q3. Explain about promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: const myPromise = new Promise((resolve, reject) => { ... });

  • Answered by AI
  • Q4. Use state, context api
  • Q5. Box modelling in css, css pre processors
  • Ans. 

    Box model in CSS refers to the way elements are rendered in a web page. CSS preprocessors like SASS or LESS help streamline CSS development.

    • Box model in CSS includes content, padding, border, and margin.

    • CSS preprocessors like SASS or LESS allow for variables, nesting, and mixins to be used in CSS.

    • Example: box-sizing: border-box; in CSS changes the box model to include padding and border in the element's total width and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a call that i have been selected to the final round, but the final round never did happend

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 Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Caching Strategy
  • Q2. What is micro Frontend architecture
  • Ans. 

    Micro Frontend architecture is an approach to building front-end applications by breaking them down into smaller, independently deployable units.

    • Allows different teams to work on separate parts of the application

    • Each micro frontend can be developed using different technologies

    • Enables incremental upgrades and updates without affecting the entire application

    • Can improve performance by loading only the necessary components

    • ...

  • Answered by AI
  • Q3. Pure and impure pipes in angular
  • Ans. 

    Pure pipes in Angular are stateless and do not change the input data, while impure pipes can have side effects and change the input data.

    • Pure pipes are used for simple transformations like formatting dates or numbers.

    • Impure pipes are used for more complex transformations that require state or side effects.

    • Pure pipes are faster and more efficient as they only run when a pure change to the input data is detected.

    • Impure p...

  • Answered by AI
  • Q4. How to make singleton services multiton
  • Ans. 

    Singleton services can be made multiton by maintaining a map of instances with unique keys.

    • Create a map to store instances with unique keys

    • Use a factory method to retrieve instances based on keys

    • Ensure that only one instance is created per key

  • Answered by AI
  • Q5. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by injecting mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: AngularJS, Spring Framework

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read Frontend system design also

Skills evaluated in this interview

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

Find reverse string using array

Round 2 - Technical 

(1 Question)

  • Q1. What are Routing Guards?
  • Ans. 

    Routing guards are used in Angular to control access to certain routes based on certain conditions.

    • Routing guards are used to protect routes in Angular applications.

    • They can be used to control access based on authentication status, user roles, etc.

    • There are different types of routing guards like CanActivate, CanActivateChild, CanDeactivate, CanLoad.

    • Example: CanActivate guard can be used to check if a user is authentica

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. CSS Box-model definition
  • Ans. 

    CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

    • Box-model consists of content, padding, border, and margin

    • Content area is where text or images are displayed

    • Padding is the space between content and border

    • Border is the line around the content and padding

    • Margin is the space outside the border

  • Answered by AI
  • Q2. Difference b/n flexbox and grid
  • Ans. 

    Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

    • Flexbox is best for arranging items in a single row or column.

    • Grid is best for creating complex layouts with rows and columns.

    • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

    • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

    • Both

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. React js Basic Question
  • Q2. Coding Question Giving API to call and show in UI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 question 1 easy 2 medium dsa

Round 2 - Coding Test 

2 codes of dsa and mcq.

Round 3 - Technical 

(2 Questions)

  • Q1. Code paring round
  • Q2. Dsa question of graph
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

All the basic topics

Round 2 - Coding Test 

Normal JS, And CSS and HTML

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare basic concept of JS
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 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 - Technical 

(2 Questions)

  • Q1. Asked about basic javascript and react questions
  • Q2. Give some code and asked result

Cyient Interview FAQs

How many rounds are there in Cyient Front end Developer interview?
Cyient interview process usually has 1-2 rounds. The most common rounds in the Cyient interview process are Technical and Coding Test.
How to prepare for Cyient Front end Developer 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 Front End, Healthcare, Aerospace, Semiconductor and HTML.
What are the top questions asked in Cyient Front end Developer interview?

Some of the top questions asked at the Cyient Front end Developer interview -

  1. What is the difference between props and st...read more
  2. What is callback h...read more
  3. Based on Html, CSS, Javascr...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Cyient interviews
Campus Placement
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Cyient Front end Developer Salary
based on 8 salaries
₹2 L/yr - ₹7.7 L/yr
34% less than the average Front end Developer Salary in India
View more details
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 L/yr - ₹12.3 L/yr

GIS Engineer
1.1k salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Senior Design Engineer
918 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Cyient with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview