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 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sarvatra Technologies Technical Support Engineer Interview Questions and Answers

Updated 14 Jan 2025

Sarvatra Technologies Technical Support Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Banking
  • Q2. Sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your self Confidend and face the interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jul 2023. There were 3 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 

Implement the function "Printlast10lines" such that the program prints the last 10 (or less) in a given string

Round 3 - Technical 

(1 Question)

  • Q1. Delete nth node in a singe linked list
  • Ans. 

    To delete the nth node in a single linked list, we need to find the (n-1)th node and update its next pointer.

    • Traverse the linked list to find the (n-1)th node

    • Update the next pointer of the (n-1)th node to skip the nth node

    • Free the memory allocated to the nth node

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask more question probe as much as possible and take time and respond.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Screening round was a 1 hour coding test. Mostly non leetcode style where the question is incremental - Eg. Identify a pattern in a given text value and extract it then perform subsequent transformations. There is no right or wrong its just how well you are able to do the task.

Round 2 - System Design 

(1 Question)

  • Q1. Resume related system design deep dive
Round 3 - Coding Test 

Another round similar to the first one with an incremental coding test. Question was very lengthy.

Round 4 - Bug Bash 

(1 Question)

  • Q1. SQL database and you need to find out what is wrong with the data
Round 5 - Integration Test 

(1 Question)

  • Q1. Another coding round where you need to go clone a repo and extend an existing feature using the libraries in the documentation provided.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not the kind of test you can prepare for with just Leetcode. Process wears you down.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was 30 min coding test and question was from easy level DSA question

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between react and next
  • Ans. 

    React is a JavaScript library for building user interfaces, while Next is a framework for building server-side rendered React applications.

    • React is a JavaScript library for building user interfaces.

    • Next is a framework for building server-side rendered React applications.

    • Next provides features like server-side rendering, static site generation, and routing out of the box.

  • Answered by AI
  • Q2. What is Nodejs and its event loop
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • The event loop is responsible for handling asynchronous operations in Node.js.

    • Example: Reading a file asynchronously in Node.js using fs module.

  • Answered by AI

Skills evaluated in this interview

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
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

LLD for load balancer

Round 2 - One-on-one 

(1 Question)

  • Q1. API integrations, integrate 3rd party API to visualize ride locations and generate images
Round 3 - Coding Test 

Solve a bug in JSON like parsing library

I applied via Walk-in and was interviewed in May 2022. 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. Java basics questions and java basic answers waste interview maximum element in an array array merged opps concepts basic puzzels.
  • Q2. Opps concepts basic programs

Interview Preparation Tips

Interview preparation tips for other job seekers - donot join this company one of the worst company everseen
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Exam to test reasoning and aptitude, and speed to answer them

Round 2 - Coding Test 

Dsa question easy to medium level

Round 3 - Behavioral 

(5 Questions)

  • Q1. Just culture fit question, and medium dsa questions
  • Q2. Print pyramid from Fibonacci sequence
  • Ans. 

    Print pyramid from Fibonacci sequence

    • Generate Fibonacci sequence up to a certain number

    • Use the Fibonacci numbers to create the pyramid structure

    • Print each row of the pyramid with appropriate spacing

  • Answered by AI
  • Q3. Linked list sort
  • Q4. Design SQL tables for library management system
  • Ans. 

    Design SQL tables for library management system

    • Create tables for books, authors, members, transactions, etc.

    • Use primary and foreign keys to establish relationships between tables

    • Include columns like book title, author name, member ID, due date, etc.

  • Answered by AI
  • Q5. Valid bracket dsa question

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Java , Spring, SQL questions asked without one data structure basic live coding question

Round 2 - HR 

(2 Questions)

  • Q1. What are your expectation to work with us
  • Q2. How will you manage to improve with us
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

Sarvatra Technologies Interview FAQs

How many rounds are there in Sarvatra Technologies Technical Support Engineer interview?
Sarvatra Technologies interview process usually has 1 rounds. The most common rounds in the Sarvatra Technologies interview process are Technical.

Tell us how to improve this page.

Sarvatra Technologies Technical Support Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Sarvatra Technologies 20+ years of experience in pioneering banking technology

Interview Questions from Similar Companies

CapitalOne Interview Questions
3.7
 • 79 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 48 Interviews
Jupiter Money Interview Questions
3.3
 • 30 Interviews
Spice Money Interview Questions
4.0
 • 29 Interviews
FNZ Interview Questions
2.5
 • 29 Interviews
Verifone Interview Questions
3.3
 • 24 Interviews
Experian Interview Questions
3.9
 • 22 Interviews
Stripe Interview Questions
3.1
 • 22 Interviews
View all
Test Engineer
75 salaries
unlock blur

₹2.8 L/yr - ₹12 L/yr

Software Developer
65 salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Softwaretest Engineer
52 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Java Developer
30 salaries
unlock blur

₹3.8 L/yr - ₹5.6 L/yr

Network Engineer
20 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Explore more salaries
Compare Sarvatra Technologies with

Mobikwik

3.6
Compare

Spice Money

4.0
Compare

Freecharge

3.8
Compare

Clix Capital Services

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