Upload Button Icon Add office photos

Filter interviews by

Saras Analytics Software Engineer Intern Interview Questions and Answers

Updated 13 Apr 2024

Saras Analytics Software Engineer Intern Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs, Linear vs Non Linear DS, DS definitions, JAVA, Puzzles.
Round 2 - Technical 

(1 Question)

  • Q1. Case study question regarding e-commerce. DSA question: Find pairs of given sum and triplets of given sum in an optimised way.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with DS and Algo, else get failed in the interview.

Interview questions from similar companies

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

I applied via campus placement at CMR College of Engineering & Technology, Hyderabad and was interviewed in Aug 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 - Aptitude Test 

Basic aptitude concepts

Round 3 - Coding Test 

2 Questions on sorting and profit related question

Round 4 - Technical 

(4 Questions)

  • Q1. Technical questions like oops,sql queries. And previous round coding question different approaches.
  • Q2. Sorting question
  • Q3. Sql query on 2nd highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the 2nd highest salary.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 1,1 to skip the first highest salary and get the second highest salary

  • Answered by AI
  • Q4. Difference between tuple and delete command
  • Ans. 

    Tuple is a data structure that stores a fixed number of elements, while delete command is used to remove data from a database table.

    • Tuple is used to store multiple values in a single variable, while delete command is used to remove specific rows from a database table.

    • Tuples are immutable, meaning their values cannot be changed once they are set, while delete command permanently removes data from a table.

    • Example: Tuple ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Round one was an online coding test where there were 5 sections :

1 - dsa - medium

2 - Java - Easy

3 - OOP - Easy

4 - Git - Easy

Round 2 - One-on-one 

(5 Questions)

  • Q1. 1 - where is bean annotation used in springboot ?... In class or method
  • Ans. 

    Bean annotation is used in Spring Boot on class or method to indicate that a method produces a bean to be managed by the Spring container.

    • Bean annotation is used on methods within a class to indicate that the method produces a bean to be managed by the Spring container.

    • It can also be used at the class level to indicate that the class itself is a Spring bean.

    • For example, @Bean annotation can be used on a method that cre...

  • Answered by AI
  • Q2. Which access modifier to restrict interface method access to only derived or implemented classes
  • Ans. 

    Protected access modifier restricts interface method access to only derived or implemented classes.

    • Use 'protected' access modifier to restrict access to only derived or implemented classes

    • Protected members are accessible within the same package or by subclasses

    • Example: 'protected void methodName() {}' in an interface

  • Answered by AI
  • Q3. How does one services interact with other in microservice
  • Ans. 

    Microservices interact with each other through APIs, messaging, or events.

    • Microservices communicate with each other through APIs, which can be synchronous or asynchronous.

    • Messaging systems like RabbitMQ or Kafka can be used for communication between microservices.

    • Events can be used for loosely coupled communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices locate and co...

  • Answered by AI
  • Q4. In an integer array where element represent stock price and index represent days how to detect the best day to buy and best day to sell in O(N)
  • Ans. 

    To detect the best day to buy and sell stock in an integer array representing stock prices and days in O(N).

    • Iterate through the array and keep track of the minimum price seen so far.

    • Calculate the profit by subtracting the current price from the minimum price.

    • Update the maximum profit and best buy/sell days accordingly.

    • Return the best buy and sell days to maximize profit.

  • Answered by AI
  • Q5. In an integer array find the next greatest number for all and display in O(N)
  • Ans. 

    Find the next greatest number for each integer in an array in O(N) time complexity.

    • Iterate through the array from right to left

    • Use a stack to keep track of potential next greatest numbers

    • Pop elements from the stack that are less than the current element and update their next greatest number to the current element

    • Push the current element onto the stack

    • Repeat until all elements have a next greatest number

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 simple coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Merge sort with list
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the input array into smaller subarrays, sorts them, and then merges them back together.

    • Divide the input list into two halves

    • Recursively apply merge sort to each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Similar to coin exchange DP
  • Q3. SQL query medium level

Interview Preparation Tips

Topics to prepare for Nielsen Senior Software Engineer interview:
  • DSA
  • Design Patterns
Interview preparation tips for other job seekers - I would suggest not to take interview or join this company . They already have some people who they want to take and they just take some rounds of you and even if it goes extremely good they wont contact you back . Work here is also not good they tell as developer and will make you do devops writing yml files . This is what I heard from people inside . Even if you get this offer don't consider as first choice . This is my advice to people who are looking to apply here

Skills evaluated in this interview

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

(1 Question)

  • Q1. Can you provide a detailed explanation of object-oriented programming concepts?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. JAVA, microservices
  • Q2. DSA easy to medium questions

Interview Preparation Tips

Interview preparation tips for other job seekers - questions are on Java, multithreading, SQL, Microservices, spring boot, DSA easy to medium questions.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

First round was on Hacker Earth

Round 2 - Technical 

(1 Question)

  • Q1. Technical round was on Spring Data Jpa, Pagination, SOLID principles

Interview Preparation Tips

Interview preparation tips for other job seekers - I had given the interview for Senior Software Engineer at Indegene on May 2024. I cleared the round as well. Mr. Pradeep Kumar was the POC for my recruitment. He confirmed that he's going to schedule the HR the next day after clearing the technical round. Upon calling him the very next day he started ghosting me, ignoring my phone calls, messages and emails. After one month he called me and said "sorry at that time the project went on hold, so we have other new opening are you interested to join". I said yes and had salary discussion as well. He said that I'll be getting the offer letter the very next day. So, I contacted him again the next day, he started ghosting again then on WhatsApp he told that my offer letter is on the final stage of approval and I'll get it by tomorrow. Next day I didn't received anything I tried calling he started ghosting again. So please be aware of this type of company. Its a total waste of time. The management is totally un-professional.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Core java concepts,Sql queries,2 coding question based on arrays and string
  • Q2. Reverse the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q3. Find third highest salary from a employee table
Round 2 - Technical 

(4 Questions)

  • Q1. Advance java and project related
  • Q2. Springboot and spring diff
  • Q3. Springboot annotations used in your project
  • Ans. 

    Some common Springboot annotations used in projects are @RestController, @Autowired, @RequestMapping, @Service, @Component, @Repository.

    • @RestController - Used to define RESTful web services.

    • @Autowired - Used for automatic dependency injection.

    • @RequestMapping - Used to map web requests to specific handler methods.

    • @Service - Used to indicate that a class is a service.

    • @Component - Used to indicate that a class is a Spring...

  • Answered by AI
  • Q4. Springboot dependencies

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

Saras Analytics Interview FAQs

How many rounds are there in Saras Analytics Software Engineer Intern interview?
Saras Analytics interview process usually has 2 rounds. The most common rounds in the Saras Analytics interview process are Technical.
What are the top questions asked in Saras Analytics Software Engineer Intern interview?

Some of the top questions asked at the Saras Analytics Software Engineer Intern interview -

  1. Case study question regarding e-commerce. DSA question: Find pairs of given sum...read more
  2. OOPs, Linear vs Non Linear DS, DS definitions, JAVA, Puzzl...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Saras Analytics interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 721 Interviews
S&P Global Interview Questions
4.2
 • 266 Interviews
Mu Sigma Interview Questions
2.7
 • 224 Interviews
Tiger Analytics Interview Questions
3.7
 • 216 Interviews
Fractal Analytics Interview Questions
4.0
 • 202 Interviews
Access Healthcare Interview Questions
3.9
 • 198 Interviews
Crisil Interview Questions
3.7
 • 182 Interviews
Straive Interview Questions
3.4
 • 166 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
Indegene Interview Questions
3.4
 • 149 Interviews
View all
Business Analyst
52 salaries
unlock blur

₹4.2 L/yr - ₹15 L/yr

Senior Business Analyst
15 salaries
unlock blur

₹9.5 L/yr - ₹22.1 L/yr

Data Analyst
11 salaries
unlock blur

₹3.6 L/yr - ₹13 L/yr

Junior Business Analyst
8 salaries
unlock blur

₹5 L/yr - ₹8.3 L/yr

Senior Data Analyst
8 salaries
unlock blur

₹16.8 L/yr - ₹20.9 L/yr

Explore more salaries
Compare Saras Analytics with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

3.7
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