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 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

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 Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Interview questions from similar companies

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

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

Round 1 - Assignment 

Assignment was to create an API for an expenses sharing application where users can input the total amount and the people to be shared the amount with and each individual amount in terms of either actual amount, percentage or split equally

Round 2 - One-on-one 

(4 Questions)

  • Q1. Difference between process and threads
  • Ans. 

    Processes are independent instances of a program, while threads are smaller units within a process sharing resources.

    • Processes have their own memory space, while threads share the same memory space within a process.

    • Processes are heavyweight, requiring more resources, while threads are lightweight.

    • Processes communicate with each other through inter-process communication mechanisms, while threads can communicate directly...

  • Answered by AI
  • Q2. What is indexing in DBMS
  • Ans. 

    Indexing in DBMS is a technique used to improve the performance of queries by allowing faster retrieval of data.

    • Indexes are data structures that store a small portion of the table data in an optimized format for quick retrieval.

    • They help in speeding up data retrieval operations like SELECT, UPDATE, DELETE queries.

    • Examples of indexes include primary keys, unique keys, and composite keys.

  • Answered by AI
  • Q3. Examples and description of asymmetric encryption alogorithms
  • Ans. 

    Asymmetric encryption algorithms use a pair of keys to encrypt and decrypt data, providing secure communication.

    • RSA (Rivest-Shamir-Adleman) is a popular asymmetric encryption algorithm.

    • Elliptic Curve Cryptography (ECC) is another commonly used asymmetric encryption algorithm.

    • Asymmetric encryption is slower than symmetric encryption but provides better security.

    • Public key is used for encryption and private key is used f

  • Answered by AI
  • Q4. Which sorting method is beneficial in which scenario
  • Ans. 

    Different sorting methods are beneficial in different scenarios based on factors like time complexity, space complexity, and input size.

    • Quick Sort: Best for large datasets due to its average time complexity of O(n log n)

    • Bubble Sort: Simple and easy to implement, but inefficient for large datasets with its time complexity of O(n^2)

    • Merge Sort: Stable and efficient for large datasets with its time complexity of O(n log n)

    • ...

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

(4 Questions)

  • Q1. What are ACID properties in DBMS
  • Ans. 

    ACID properties are a set of properties that guarantee reliability and consistency in database transactions.

    • Atomicity: Ensures that either all operations in a transaction are completed successfully or none at all.

    • Consistency: Ensures that the database remains in a consistent state before and after the transaction.

    • Isolation: Ensures that the execution of multiple transactions concurrently does not interfere with each ot...

  • Answered by AI
  • Q2. Underlying data structure in Indexing and its time complexity
  • Ans. 

    Indexing typically uses data structures like B-trees or hash tables for efficient retrieval, with time complexity of O(log n) or O(1) respectively.

    • Common data structures for indexing include B-trees and hash tables

    • B-trees are typically used for indexing in databases due to their balanced nature and efficient search operations

    • Hash tables are used for indexing in scenarios where constant time lookup is desired, but may h

  • Answered by AI
  • Q3. Time complexity of a recursive fibonacci code
  • Ans. 

    Time complexity of recursive fibonacci code is O(2^n)

    • The time complexity of a recursive fibonacci code is exponential, O(2^n)

    • This is because each call branches into two recursive calls, leading to exponential growth

    • For example, calculating fibonacci(5) would result in 15 function calls

  • Answered by AI
  • Q4. The protocol behind Web Sockets (because it was in my resume)
  • Ans. 

    Web Sockets is a communication protocol that provides full-duplex communication channels over a single TCP connection.

    • Web Sockets allow for real-time, bi-directional communication between a client and a server.

    • They are commonly used in chat applications, online gaming, and live data streaming.

    • Web Sockets use the ws:// or wss:// protocol scheme in URLs.

    • The protocol is initiated with a handshake between the client and se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare CS Fundamentals thoroughly
Some questions will be asked from topics that are mentioned in resume

Skills evaluated in this interview

Area Sales Manager - Business Development Interview Questions & Answers

Healthplix Technologies user image Anonymous

posted on 25 May 2021

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

I applied via Naukri.com and was interviewed before May 2020. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 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 - One-on-one 

(2 Questions)

  • Q1. They will ask questions only related to DAF in depth. Pathetic n worst experience, that guy will ask so many question which is not related to job, only they will give u any scenario nd will ask the questio...
  • Q2. Worst experience
  • Ans. 

    My worst experience was dealing with an angry customer who refused to listen to any solutions.

    • The customer was upset about a billing issue and refused to provide any information to help resolve the issue.

    • Despite offering multiple solutions, the customer continued to yell and berate me.

    • The call lasted over an hour and left me feeling drained and frustrated.

    • I learned the importance of remaining calm and professional in d

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Jodo Customer Support Executive interview:
  • IIT
  • IIM
Interview preparation tips for other job seekers - Waste of mine 30 minutes for interview ... Irrelevant question will ask which is not logic to profile. Dont go waste of time. They want only IIM nad IIT student..
While giving interview they will ask so sweetly question n then rejected
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Telephonic Call 

(3 Questions)

  • Q1. Introduction and technical questions.
  • Q2. What is the use of JAVA API?
  • Ans. 

    The JAVA API is a collection of pre-written classes and interfaces that provide ready-to-use functionality for Java developers.

    • The JAVA API allows developers to save time and effort by using pre-built code for common tasks.

    • It provides a wide range of classes and interfaces for various purposes such as file handling, networking, database connectivity, GUI development, etc.

    • Developers can leverage the API to access system...

  • Answered by AI
  • Q3. Questions are picked from Leetcode.
Round 3 - Coding Test 

The duration of the test is one hour and four coding questions are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am not able to qualify for the coding round so I have no idea of further process.

Skills evaluated in this interview

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, MongoDB and Android.
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 4 interviews

Interview experience

2.8
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
3 Minds Digital Interview Questions
4.4
 • 64 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

3.6

Job security

3.2

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
22 salaries
unlock blur

₹3 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.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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