Upload Button Icon Add office photos

Savantis Solutions India

Compare button icon Compare button icon Compare

Filter interviews by

Savantis Solutions India Engineer Trainee Interview Questions and Answers

Updated 1 Apr 2025

Savantis Solutions India Engineer Trainee Interview Experiences

1 interview found

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What are effective strategies for handling a difficult situation?
  • Ans. 

    Effective strategies for handling difficult situations include clear communication, problem-solving, and maintaining a positive attitude.

    • Stay calm and assess the situation: For example, take a moment to breathe and gather your thoughts before responding.

    • Communicate clearly: Use 'I' statements to express your feelings, such as 'I feel overwhelmed when deadlines are tight.'

    • Seek solutions collaboratively: In a team settin...

  • Answered by AI
  • Q2. Where you can see in after 5 years
  • Ans. 

    In five years, I envision myself as a skilled engineer, leading projects and contributing to innovative solutions in my field.

    • I aim to take on leadership roles, guiding junior engineers and fostering teamwork.

    • I plan to specialize in a specific area, such as renewable energy or automation, to deepen my expertise.

    • I hope to contribute to impactful projects that enhance efficiency and sustainability in engineering.

    • I envisi...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Savantis Solutions India?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All Linux commands and server related

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for RHCE and appear for interview to crack it.

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people at a meeting shake hands with each other once, how m ... read more
asked in Siemens
Q2. A drawer contains 10 pairs each of red and blue socks. What is th ... read more
asked in AVASOFT
Q3. What is the logic for determining if a number is an Armstrong num ... read more
asked in Sobha
Q4. Shear force diagram and bending moment diagram for combination of ... read more
asked in Siemens
Q5. If you are given two CSV files, each containing two columns, how ... read more
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Apti test on ps and measures

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Technical Devops Questions.
  • Q2. About existing projects
  • Q3. Related to Cloud

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to SQL, BI Tools

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrating more on technical skills

Consultant Interview Questions & Answers

AST Corporation user image Aishwarya Todmal-Phadatare

posted on 20 Feb 2024

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

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Hiring process
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

GD checking the communication

Round 2 - Technical 

(1 Question)

  • Q1. SQL, Oracle Fusion
Round 3 - Technical 

(1 Question)

  • Q1. SQL, Oracle Fusion
Round 4 - HR 

(1 Question)

  • Q1. Basic HR Questions, checking your communication
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Financial domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Listen to questions and only answer that.Dont get overexcited.Take a deep breath

I applied via Walk-in and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For fresher 1 aptitude - percentage,date and time,number system,intrest,work done problems 2 Group discussion 3 HR interview

Interview Preparation Tips

Interview preparation tips for other job seekers - First is usual aptitude after finishing it takes 30 min for result . Next g it is more of generall topic, atlast hr

I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Coding Test 

90 minute test on hacker rank consisting of 3 coding questions all of medium difficulty. Most candidates are required to solve more than 1 question.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on concepts of OOPS and Operating Systems.
  • Q2. Find least common ancestor of a binary tree.
  • Ans. 

    Find the lowest common ancestor of a binary tree.

    • Traverse the tree recursively from the root node.

    • If the current node is null or matches either of the given nodes, return the current node.

    • Recursively search for the nodes in the left and right subtrees.

    • If both nodes are found in different subtrees, return the current node.

    • If both nodes are found in the same subtree, continue the search in that subtree.

  • Answered by AI
  • Q3. Find first missing positive integer from an array for non-negative integers.
  • Ans. 

    Find first missing positive integer from an array of non-negative integers.

    • Create a hash set to store all positive integers in the array

    • Loop through the array and add all positive integers to the hash set

    • Loop through positive integers starting from 1 and return the first missing integer not in the hash set

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Design a parking lot
  • Ans. 

    Design a parking lot

    • Consider the size and capacity of the parking lot

    • Decide on the layout and organization of parking spaces

    • Implement a system to manage parking availability and reservations

    • Include features like ticketing, payment, and security

    • Consider scalability and future expansion

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is island and mat[i][j] = 0 means water). Find the island with largest area.
  • Ans. 

    Find the largest island area in a grid representing an ocean using DFS or BFS.

    • Use Depth-First Search (DFS) or Breadth-First Search (BFS) to explore the grid.

    • Mark visited cells to avoid counting them multiple times.

    • Count the size of each island during the traversal.

    • Example: For a grid [[1,0,0],[1,1,0],[0,0,1]], the largest island has area 3.

    • Keep track of the maximum area found during the exploration.

  • Answered by AI
  • Q2. Given list of strings group them into distinct anagrams.
  • Ans. 

    Group list of strings into distinct anagrams.

    • Create a hash table with sorted string as key and list of anagrams as value.

    • Iterate through the list of strings and add each string to its corresponding anagram list in the hash table.

    • Return the values of the hash table as a list of lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Senior Software Engineer interview:
  • Low Level Design
  • Object Oriented Programming
  • Data Structures
  • Algorithms
  • DBMS
Interview preparation tips for other job seekers - Focus on Data Structures & Algorithms and Low Level Designing. Some brushup of DBMS will also help.

Skills evaluated in this interview

Savantis Solutions India Interview FAQs

How to prepare for Savantis Solutions India Engineer Trainee 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 Savantis Solutions India. The most common topics and skills that interviewers at Savantis Solutions India expect are B.E, B.Tech, Communication Skills, Placement and Recruitment.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Arcesium Interview Questions
3.5
 • 85 Interviews
Programmers.io Interview Questions
4.2
 • 26 Interviews
Diverse Lynx Interview Questions
3.6
 • 20 Interviews
BANGMETRIC Interview Questions
3.8
 • 12 Interviews
Apps Associates Interview Questions
3.9
 • 10 Interviews
Signant Health Interview Questions
3.2
 • 9 Interviews
View all
Savantis Solutions India Engineer Trainee Salary
based on 4 salaries
₹3 L/yr - ₹4 L/yr
16% more than the average Engineer Trainee Salary in India
View more details
Trainee Analyst
32 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Project Administrator
16 salaries
unlock blur

₹10.5 L/yr - ₹18.5 L/yr

HR Executive
10 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Analyst
9 salaries
unlock blur

₹2.2 L/yr - ₹2.4 L/yr

SAP Basis Consultant
8 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare Savantis Solutions India with

Mobile Programming

2.9
Compare

Diverse Lynx

3.6
Compare

Arcesium

3.5
Compare

Solartis Technology Services

3.5
Compare
write
Share an Interview