Premium Employer

i

This company page is being actively managed by Sarvatra Technologies Team. If you also belong to the team, you can get access from here

Sarvatra Technologies

Compare button icon Compare button icon Compare
4.3

based on 94 Reviews

Filter interviews by

Sarvatra Technologies Software Engineer II Interview Questions and Answers

Updated 5 Jan 2023

Sarvatra Technologies Software Engineer II Interview Experiences

1 interview found

Interview experience
5
Excellent
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 

Basic coding questions asked on syntax of java

Round 3 - One-on-one 

(2 Questions)

  • Q1. Synchronous calls and basic of collection
  • Q2. Difference between hashmap and hashtabel
  • Ans. 

    HashMap and Hashtable are both data structures used to store key-value pairs, but they differ in their implementation and features.

    • HashMap allows null keys and values, while Hashtable does not.

    • HashMap is not synchronized, while Hashtable is.

    • HashMap is generally faster than Hashtable, but not thread-safe.

    • Hashtable is thread-safe, but slower than HashMap.

    • HashMap is part of the Java Collections Framework, while Hashtable ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep basics clear and work on collections and previous projects insight

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - One-on-one 

(1 Question)

  • Q1. Oops concept, springboot annotation , project explaination
Round 2 - One-on-one 

(1 Question)

  • Q1. Write a program simple program related to hashmap, string etc , Java 8 features.
Round 3 - HR 

(1 Question)

  • Q1. Short term and long term goals, tel something about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be strong with basics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Machine coding.
Code structure, naming, best practices are more important than time or space complexity.

Round 2 - Coding Test 

Same as Round 1, except more complex problem statement

Round 3 - Technical 

(1 Question)

  • Q1. Integration round. Given a library, do some operations with it, i.e. pull specific data point from file, make an POST call using different data point etc.
Round 4 - Technical 

(1 Question)

  • Q1. Given a codebase, fix a specific bug
  • Ans. 

    I would start by reproducing the bug, analyzing the code, identifying the root cause, implementing a fix, testing the fix, and finally deploying it.

    • Reproduce the bug by following the steps that lead to the issue.

    • Analyze the code surrounding the bug to understand the context and potential causes.

    • Identify the root cause of the bug by debugging and tracing the code execution.

    • Implement a fix by making the necessary code ch...

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. Standard HLD/LLD design problem
  • Ans. 

    HLD focuses on overall system architecture, while LLD delves into specific implementation details.

    • HLD includes components, modules, interfaces, and dependencies.

    • LLD involves detailed class diagrams, data structures, algorithms, and database schema.

    • Example: HLD may outline a system using microservices architecture, while LLD may specify how each microservice communicates and stores data.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewing here is very very different than MAANG companies.
Speed of execution matters, but best practices matter more.
Time and space complexity is not tested at all!

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Coding Test 

One dsa question and one zero defect policy pros and cons

Round 2 - Technical 

(2 Questions)

  • Q1. DSA graphs maximum nodes connections
  • Ans. 

    The maximum number of connections in a graph is determined by the number of nodes.

    • The maximum number of connections in a graph with 'n' nodes is n*(n-1)/2.

    • For example, a graph with 4 nodes can have a maximum of 6 connections (4*(4-1)/2 = 6).

  • Answered by AI
  • Q2. .net fulkstack code review and some therptical questions
Round 3 - Technical 

(2 Questions)

  • Q1. .net multi threading async sync
  • Q2. System design of current project HLD as well as LLD
  • Ans. 

    Designed a scalable system for real-time data processing using microservices architecture

    • Used microservices architecture to break down the system into smaller, independent services

    • Implemented message queues like Kafka for asynchronous communication between services

    • Utilized Docker and Kubernetes for containerization and orchestration

    • Designed RESTful APIs for communication between services

    • Used Redis for caching and Mongo

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Some technical wuestions
  • Q2. Basic Manager and behaviour wuestions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Java coding questions, basic Java questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions.
  • Q2. Live coding.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion on previous experience and projects.
  • Q2. System design question
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on SQL, Java advanced, personal projects, Java frameworks, UI based questions, Agile methodologies.
  • Q2. Interview discussion with the whole team.
Round 5 - HR 

(2 Questions)

  • Q1. Benefits discussion.
  • Q2. Salary discussion.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was about DS Algo and Java garbage collection,multithreading

Round 2 - Technical 

(2 Questions)

  • Q1. Low level design of rate limiter
  • Ans. 

    Rate limiter is a system that controls the rate of traffic sent or received by a network interface.

    • Implement a token bucket algorithm to track and limit the rate of requests

    • Use a sliding window algorithm to track the number of requests within a specific time frame

    • Consider using a distributed rate limiter for scalability and fault tolerance

  • Answered by AI
  • Q2. Springboot basics, java basics, future interfaces, basic sql queries

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Consecutive Sequence
  • Ans. 

    Find the length of the longest consecutive elements sequence in an array.

    • Sort the array to ensure consecutive elements are adjacent

    • Iterate through the array and keep track of the current consecutive sequence length

    • Update the longest consecutive sequence length as you iterate

  • Answered by AI
  • Q2. Core Java Questions
Round 2 - Technical 

(2 Questions)

  • Q1. Executor Service and it's code
  • Ans. 

    Executor Service is a framework provided by Java for managing and executing asynchronous tasks.

    • Executor Service allows you to easily create and manage threads for executing tasks.

    • It provides a way to control the number of threads used for executing tasks, which can help prevent resource exhaustion.

    • You can submit tasks to an Executor Service using methods like execute() or submit().

    • Executor Service can be used to execut...

  • Answered by AI
  • Q2. Core Java and Spring boot questions
Round 3 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Core Java questions

Skills evaluated in this interview

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

It consist of 4 DSA ques and few quiz and opps concept based ques
1st was string based Medium level ques.
2nd was a ques based on 2 pointer
And other 2 was from Vector and Linked list easy ques

Round 2 - Technical 

(3 Questions)

  • Q1. It was stock buy and sell ques on leetcode where we need to find Max profit and what day to buy and sell
  • Q2. 2d array ques to print natural numbers in spiral form
  • Ans. 

    Print natural numbers in spiral form using a 2D array.

    • Create a 2D array with dimensions n x n.

    • Initialize variables for row and column boundaries.

    • Iterate through the array in a spiral pattern, filling in natural numbers.

  • Answered by AI
  • Q3. Hard level linked list ques

Skills evaluated in this interview

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

(1 Question)

  • Q1. They asked Java coding question
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Technical sql questions

Round 2 - Coding Test 

Oops concept and sql db questions

Round 3 - Technical 

(1 Question)

  • Q1. Dependency injection

Sarvatra Technologies Interview FAQs

How many rounds are there in Sarvatra Technologies Software Engineer II interview?
Sarvatra Technologies interview process usually has 3 rounds. The most common rounds in the Sarvatra Technologies interview process are Resume Shortlist, Coding Test and One-on-one Round.
What are the top questions asked in Sarvatra Technologies Software Engineer II interview?

Some of the top questions asked at the Sarvatra Technologies Software Engineer II interview -

  1. Difference between hashmap and hashta...read more
  2. Synchronous calls and basic of collect...read more

Tell us how to improve this page.

Join Sarvatra Technologies 20+ years of experience in pioneering banking technology

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k 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.8
 • 2.9k Interviews
TransUnion Interview Questions
4.0
 • 87 Interviews
Freecharge Interview Questions
4.0
 • 53 Interviews
View all
Test Engineer
69 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Software Developer
60 salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Softwaretest Engineer
45 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Java Developer
29 salaries
unlock blur

₹3.8 L/yr - ₹5.6 L/yr

Network Engineer
22 salaries
unlock blur

₹3.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Sarvatra Technologies with

Financial Software & Systems

3.8
Compare

Nucleus Software Exports

3.5
Compare

Intellect Design Arena

4.1
Compare

TCS

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