Upload Button Icon Add office photos

Filter interviews by

Saranyu Technologies Associate Software Engineer Interview Questions and Answers

Updated 11 May 2022

Saranyu Technologies Associate Software Engineer Interview Experiences

1 interview found

I applied via Job Portal and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

Some Basic questions from Aptitude.

Round 2 - Coding Test 

Basic programing questions like reversing etc

Round 3 - Technical 

(1 Question)

  • Q1. Oral Technical round.
Round 4 - Behavioral 

(1 Question)

  • Q1. Technical round with manager.
Round 5 - HR 

(1 Question)

  • Q1. Only about the compensation.

Interview Preparation Tips

Interview preparation tips for other job seekers - We can gain more technical knowledge, but work pressure is more.

Interview questions from similar companies

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

Had assignment for ror and react basic crud

Round 2 - Technical 

(2 Questions)

  • Q1. Elevator problem in java
  • Ans. 

    Elevator problem in Java

    • Create an Elevator class with methods for moving up and down

    • Use a Queue to keep track of the floors that need to be visited

    • Implement a scheduling algorithm to determine the order of floor visits

  • Answered by AI
  • Q2. Horse race puzzle solution

Interview Preparation Tips

Interview preparation tips for other job seekers - keep ur code well defined and structured to get distinguished

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Ans. 

    ES6 introduced several new features and improvements to JavaScript, making it more powerful and efficient.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for easier object-oriented programming

    • Template literals for easier string interpolation

    • Default parameters and rest parameters for function arguments

    • Destructuring assignment for easier data extraction

    • Promises for asynchronous prog

  • Answered by AI
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Ans. 

    Yes, let and const variables are hoisted but not initialized.

    • let and const variables are hoisted to the top of their block scope, but they are not initialized until the actual line of code is executed.

    • This means that you cannot access a let or const variable before it is declared in the code.

    • For example, trying to access a let variable before it is declared will result in a ReferenceError.

  • Answered by AI
  • Q6. What is global context
  • Ans. 

    Global context refers to the overall environment or setting in which something exists or operates.

    • Global context encompasses all variables, functions, and objects that are accessible throughout an entire program.

    • It can be thought of as the 'big picture' view of a program's execution.

    • In web development, global context includes the window object in JavaScript.

  • Answered by AI
  • Q7. What is temporal deadzone
  • Ans. 

    Temporal dead zone is a period during the variable creation process where accessing the variable results in a ReferenceError.

    • Occurs when trying to access a variable before it has been declared with let or const

    • Happens due to the variable being in the temporal dead zone until it is declared

    • Example: accessing a variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?
  • Ans. 

    Mongoose is an Object Data Modeling (ODM) library for MongoDB that provides a higher level of abstraction and simplifies interactions with the database.

    • Mongoose provides schema validation which helps maintain data integrity.

    • Mongoose simplifies querying and data manipulation with built-in functions.

    • Mongoose supports middleware functions for pre and post processing of data operations.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Promises 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.

  • Answered by AI

Skills evaluated in this interview

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

Asked dsa problem. It was a sliding window problem.

Round 2 - Coding Test 

This was taken by the engineering manager. asked couple of oops qns and dsa problem

Round 3 - Aptitude Test 

This was taken by the cofounder. more of a get to know

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

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

1.5 hours, data structure and algorithms, Their own platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your projects thoroughly and read more about the Javascript.

Software Engineer Interview Questions & Answers

OneCard user image Kishan KAVATHIYA (Kishu)

posted on 15 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Internal Implementation of HashMap
  • Ans. 

    HashMap is implemented using an array of linked lists to handle collisions.

    • HashMap stores key-value pairs in an array of linked lists

    • Hash function is used to determine the index of the array where the key-value pair will be stored

    • Collision handling is done by chaining, where multiple key-value pairs with the same hash value are stored in the same linked list

    • HashMap allows null keys and values

    • HashMap is not synchronized...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company 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 - Coding Test 

3 coding questions any programming language

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Interview based on your programming skills
  • Q2. 1.Find the possible permutation of the given string 2. Remove 3 from the given input (Number) and input should be taken from the user 3. Check whether the given string is Anagram without using map DATA s...
  • Ans. 

    Answering questions related to string permutations, removing numbers, and checking for anagrams without using map data structure.

    • To find permutations of a string, use recursion to swap characters at each position.

    • To remove a specific character (e.g. '3') from a string, iterate through the string and build a new string without the character.

    • To check for anagrams without using a map data structure, sort both strings and

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Introduce yourself and are you willing to relocate And salary discussion. That's it

Skills evaluated in this interview

Saranyu Technologies Interview FAQs

How many rounds are there in Saranyu Technologies Associate Software Engineer interview?
Saranyu Technologies interview process usually has 5 rounds. The most common rounds in the Saranyu Technologies interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Saranyu Technologies Associate Software Engineer interview?

Some of the top questions asked at the Saranyu Technologies Associate Software Engineer interview -

  1. Technical round with manag...read more
  2. Only about the compensati...read more
  3. Oral Technical rou...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Saranyu Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Software Engineer
21 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Software Developer
11 salaries
unlock blur

₹5 L/yr - ₹8.5 L/yr

Softwaretest Engineer
11 salaries
unlock blur

₹4.5 L/yr - ₹11.2 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Lead Engineer
7 salaries
unlock blur

₹14 L/yr - ₹18 L/yr

Explore more salaries
Compare Saranyu Technologies with

Infosys

3.7
Compare

TCS

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