Upload Button Icon Add office photos

Filter interviews by

Svaya Robotics Front end Developer Interview Questions and Answers

Updated 18 Jul 2024

Svaya Robotics Front end Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What ty of questions they are ask
  • Q2. I want to know the front-end questions
Round 2 - Technical 

(2 Questions)

  • Q1. I want know questions
  • Q2. I want to know questions

Interview questions from similar companies

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. Questions on basic html,css,javascript,angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Go specifically through the requirements mentioned in job profile before attending the interview to keep interviewer and us in the same page.

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Remove duplicate elements from an Array
  • Ans. 

    Remove duplicate elements from an Array

    • Use the Set object to remove duplicate elements

    • Convert the Set back to an array using the spread operator

    • If the array contains objects, use a custom comparison function

  • Answered by AI
  • Q2. How can you only accept jpg and png files using HTML5.
  • Ans. 

    Use the accept attribute in the input tag to only allow jpg and png files.

    • Add accept attribute to input tag with 'image/jpeg, image/png' value

    • This will restrict file selection to only jpg and png files

  • Answered by AI
  • Q3. How to center align a div in just one line in css.
  • Ans. 

    Use flexbox to center align a div in just one line in CSS.

    • Set the parent container's display property to flex.

    • Use the justify-content property with the value 'center' to horizontally center the div.

    • Use the align-items property with the value 'center' to vertically center the div.

  • Answered by AI
  • Q4. How to redirect to login page through React Router if the user has not logged in and trying to go to another page through URL.
  • Ans. 

    Use React Router's Redirect component to redirect to login page if user is not logged in.

    • Create a PrivateRoute component that checks if user is logged in

    • If user is not logged in, redirect to login page using Redirect component

    • Wrap the routes that require authentication with PrivateRoute component

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't really worry about success or failure. It is all about how much you learn. I have failed in at least 15-20 interviews (tbh, I stopped counting at a point, because it doesn't matter) over a span of one year before landing my dream job. I started from not knowing anything about React JS to be fluent enough for interviews. Face as many interviews you can. After the interview, note down all the questions you were asked and study on those topics. For react I divided my topics in three category. REACT(Virtual DOM, class vs functions, lifecycle methods and hooks, work flow on a button click, ROUTER, Context, HOC), REDUX(create store, apply middleware, combine reducers, pure functions, redux saga/thunk, also folder structure for redux ), REACT-REDUX(connect(), mapstatetoprops, mapdispatchtoprops, useselector and usedispatch). These are a few areas I focused on, and they all are VERY important. Study, Give Interviews, Learn, Repeat.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What are spread and rest operator
  • Ans. 

    Spread operator allows an iterable to be expanded in places where zero or more arguments are expected. Rest operator collects all the remaining elements into an array.

    • Spread operator is denoted by three dots (...)

    • Spread operator can be used to copy an array or object

    • Rest operator is also denoted by three dots (...) and is used in function parameters to collect all remaining arguments into an array

  • Answered by AI
  • Q2. What are pure functions
  • Ans. 

    Pure functions are functions that always return the same output for the same input and have no side effects.

    • Always return the same output for the same input

    • Have no side effects, meaning they do not modify external state or variables

    • Pure functions are predictable and easier to test and debug

  • Answered by AI
Round 2 - Coding Test 

Create a corouesel with react

Round 3 - HR 

(2 Questions)

  • Q1. Some basic info on my communication
  • Q2. Previous project and company experience

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I was interviewed before Nov 2023.

Round 1 - Technical 

(1 Question)

  • Q1. What is promises in js?
  • Ans. 

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

    • Promises help in handling asynchronous operations in a more readable and manageable way.

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

    • Promises can be chained together using .then() method to handle success and failure cases.

    • They help in avoiding callback hell and writing cleaner asynchro...

  • Answered by AI

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Explain promise in javascript
  • Ans. 

    Promises in JavaScript 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: new Promise((resolve, reject) => { ... }).then(result => { ... }).catch(error =>

  • Answered by AI
  • Q2. HTML and CSS basic question
  • Q3. Let and var difference
  • Ans. 

    let is block scoped, var is function scoped

    • let is block scoped, var is function scoped

    • let can't be re-declared in the same scope, var can be

    • let variables are not hoisted, var variables are hoisted

  • Answered by AI
  • Q4. Spread and rest operator
  • Q5. Jwt and interceptor concepts

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Ninja test its easy , you can find many mock papers on youtube

Round 2 - Technical 

(2 Questions)

  • Q1. Null operation , string reverse
  • Q2. Dsa questions , linked list and so on
Round 3 - HR 

(2 Questions)

  • Q1. What is your Dream company
  • Ans. 

    My dream company is a tech giant known for innovation, employee benefits, and a positive work culture.

    • Innovative technology and projects

    • Strong employee benefits and perks

    • Positive work culture and work-life balance

  • Answered by AI
  • Q2. Tell me about yourself which is not on your resume
  • Ans. 

    I am an avid hiker and have climbed several mountains in the past year.

    • I enjoy spending time outdoors and challenging myself physically

    • I have completed multiple hiking trips in various terrains

    • I find solace and inspiration in nature, which fuels my creativity in coding

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering dont studder
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I was interviewed before Jan 2024.

Round 1 - Coding Test 

What is a data structure?

Round 2 - Aptitude Test 

What is the speed of a train that covers a distance of 100 km in 2 hours, expressed in km/hr?

Interview Preparation Tips

Interview preparation tips for other job seekers - Achive your gols and re-start everyday

Svaya Robotics Interview FAQs

How many rounds are there in Svaya Robotics Front end Developer interview?
Svaya Robotics interview process usually has 2 rounds. The most common rounds in the Svaya Robotics interview process are Technical.
What are the top questions asked in Svaya Robotics Front end Developer interview?

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

  1. What ty of questions they are ...read more
  2. I want to know the front-end questi...read more
  3. I want know questi...read more

Tell us how to improve this page.

Svaya Robotics Front end Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Applications Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Design Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Svaya Robotics with

Grey Orange

3.2
Compare

Sastra Robotics

5.0
Compare

Systemantics

4.9
Compare

Cubical Laboratories

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