Upload Button Icon Add office photos

Filter interviews by

Saranyu Technologies Interview Questions and Answers

Updated 30 Sep 2024

Saranyu Technologies Interview Experiences

Popular Designations

6 interviews found

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

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on java only
Round 2 - Technical 

(1 Question)

  • Q1. Based on java only
Round 3 - One-on-one 

(1 Question)

  • Q1. Mixed of technical managerial and hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went well after clearing two technical rounds i got rejected in final f2f interview.

Java Software Developer Interview Questions asked at other Companies

Q1. How do you convert list to arraylist? And vice versa
View answer (1)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Stlc , type of models

Software Testing Trainer Interview Questions asked at other Companies

Q1. Java program for array reverse Java program for recursion Balanced paranthesis using stack Why do we use constructor in java Smoke testing defect life cycle sdlc stlc
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. List Tuple Dictionary
  • Ans. 

    List, Tuple, and Dictionary are data structures in Python.

    • List: ordered, mutable, allows duplicate elements (e.g. [1, 2, 3])

    • Tuple: ordered, immutable, allows duplicate elements (e.g. (1, 2, 3))

    • Dictionary: unordered, mutable, key-value pairs (e.g. {'key': 'value'})

  • Answered by AI
  • Q2. Array coding list tuple

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)

Java Developer Interview Questions & Answers

user image Karthick Manoharan

posted on 6 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

They asked me to code to find no of words in a sentence

Round 3 - One-on-one 

(1 Question)

  • Q1. They asked me about java and mvc which is a design pattern and also about singleton where it is also a design pattern

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Saranyu Technologies interview questions for popular designations

 Associate Software Engineer

 (1)

 Java Developer

 (1)

 Java Software Developer

 (1)

 Python Developer Intern

 (1)

 Sales

 (1)

 Software Testing Trainer

 (1)

Sales Interview Questions & Answers

user image Anonymous

posted on 8 Jun 2022

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is ur job profile
  • Q2. My previous experience ?
  • Q3. Why I want work from home ?
  • Q4. Why should I hire u?

Interview Preparation Tips

Topics to prepare for Saranyu Technologies Sales interview:
  • About sales
  • Online Marketing
  • Marketing Communication
Interview preparation tips for other job seekers - I just want to perform in sales bcoz my way of work is excellent and also my focus on this job is awesome

Sales Interview Questions asked at other Companies

Q1. Shall anyone should go for BDA Or Sales for Learning / Monetary benefit?
View answer (7)

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.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Interview questions from similar companies

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

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Q2. What are Idempotent HTTP Requests?
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction yourself in details covering each points
  • Ans. 

    Experienced cluster manager with a proven track record in team leadership and strategic planning.

    • Over 5 years of experience in managing multiple teams and projects simultaneously

    • Strong leadership skills with the ability to motivate and inspire team members

    • Expertise in strategic planning and execution to achieve organizational goals

    • Excellent communication and interpersonal skills for effective team collaboration

    • Proven t...

  • Answered by AI
  • Q2. Location can be for new hotels for max revenue
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell us about yourself
  • Q2. Showcase some of you projects
  • Ans. 

    I have worked on projects involving website redesign, mobile app design, and user research.

    • Redesigned company website to improve user experience and increase conversion rates

    • Designed mobile app interface for seamless navigation and intuitive user interactions

    • Conducted user research to gather feedback and make data-driven design decisions

  • Answered by AI
  • Q3. What are your favourite apps and why do you like them
  • Ans. 

    My favorite apps are Instagram for its user-friendly interface and engaging content, Spotify for its personalized music recommendations, and Google Maps for its accurate navigation features.

    • Instagram - user-friendly interface, engaging content

    • Spotify - personalized music recommendations

    • Google Maps - accurate navigation features

  • Answered by AI
  • Q4. What roles are you interested in?
  • Q5. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a seasoned UI/UX designer leading a team of designers, working on innovative projects, and continuously learning and growing in the field.

    • Leading a team of designers

    • Working on innovative projects

    • Continuously learning and growing in the field

  • Answered by AI

Saranyu Technologies Interview FAQs

How many rounds are there in Saranyu Technologies interview?
Saranyu Technologies interview process usually has 2-3 rounds. The most common rounds in the Saranyu Technologies interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Saranyu Technologies 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 Saranyu Technologies. The most common topics and skills that interviewers at Saranyu Technologies expect are Javascript, CSS, Html5, JQuery and MongoDB.
What are the top questions asked in Saranyu Technologies interview?

Some of the top questions asked at the Saranyu Technologies interview -

  1. List Tuple Diction...read more
  2. They asked me about java and mvc which is a design pattern and also about singl...read more
  3. mixed of technical managerial and...read more

Tell us how to improve this page.

Saranyu Technologies Interview Process

based on 3 interviews in last 1 year

Interview experience

2.7
  
Poor

People are getting interviews through

based on 5 Saranyu Technologies interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
3 Minds Digital Interview Questions
4.4
 • 63 Interviews
View all

Saranyu Technologies Reviews and Ratings

based on 9 reviews

3.4/5

Rating in categories

3.2

Skill development

2.8

Work-Life balance

3.2

Salary & Benefits

3.6

Job Security

3.2

Company culture

3.2

Promotions/Appraisal

3.2

Work Satisfaction

Explore 9 Reviews and Ratings
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