Upload Button Icon Add office photos
Engaged Employer

i

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

Saviant Consulting Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Saviant Consulting Interview Questions and Answers

Updated 18 Jan 2025
Popular Designations

13 Interview questions

A DOT NET Developer was asked
Q. Explain the ACID properties.
Ans. 

ACID is a set of properties that guarantee database transactions are processed reliably.

  • ACID stands for Atomicity, Consistency, Isolation, Durability.

  • Atomicity ensures that 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 transactions are executed independently withou...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. How do you follow OOPS concepts and other best practices in your project?
Ans. 

I follow OOPS concepts by using inheritance, encapsulation, polymorphism, and abstraction in my code.

  • I use classes and objects to encapsulate data and behavior.

  • I utilize inheritance to create a hierarchy of classes with shared attributes and methods.

  • I implement polymorphism by overriding methods in derived classes.

  • I apply abstraction to hide complex implementation details from the user.

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. Explain Clustered and non-clustered Indexes.
Ans. 

Clustered indexes physically reorder the data in the table, while non-clustered indexes create a separate structure.

  • Clustered indexes determine the physical order of data rows in a table.

  • Non-clustered indexes create a separate structure that contains a copy of the indexed columns and a pointer to the actual data rows.

  • Tables can have only one clustered index, but multiple non-clustered indexes.

  • Clustered indexes are...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. Write a program to print numbers from 100 to 1 without using any loop statements.
Ans. 

Use recursion to print numbers from 100 to 1 without using loops.

  • Create a recursive function that prints the number and calls itself with the next number until reaching 1.

  • Base case should be when the number is 1, then stop recursion.

  • Example: void printNumbers(int n) { if(n == 0) return; print(n); printNumbers(n-1); }

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. How do you test features after implementation?
Ans. 

I test features after implementation by conducting unit tests, integration tests, regression tests, and user acceptance tests.

  • Conduct unit tests to ensure individual components work correctly

  • Perform integration tests to check interactions between components

  • Run regression tests to verify that new features do not break existing functionality

  • Conduct user acceptance tests to ensure the feature meets user requirements

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. Explain the use of filters in MVC with some examples.
Ans. 

Filters in MVC are used to perform logic before or after an action method is executed.

  • Filters can be used for authentication, authorization, logging, exception handling, etc.

  • Examples include Authorize filter for restricting access to certain actions, HandleError filter for handling exceptions, etc.

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. What was the most recent interesting task in your current project?
Ans. 

Implementing a new feature to automate data migration process

  • Developing a custom data migration tool using C# and SQL Server

  • Creating scripts to extract data from legacy system and load into new system

  • Testing the tool with sample data to ensure accuracy and efficiency

View all DOT NET Developer interview questions
Are these interview questions helpful?
A DOT NET Developer was asked
Q. How many ways are there to send data to a controller from a View?
Ans. 

There are multiple ways to send data from View to controller in ASP.NET MVC, including form submission, AJAX calls, query strings, and model binding.

  • Form submission using HTML forms

  • AJAX calls using jQuery or other JavaScript libraries

  • Query strings in the URL

  • Model binding in ASP.NET MVC

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. Explain Abstraction and Encapsulation with an example.
Ans. 

Abstraction focuses on hiding complex implementation details, while encapsulation bundles data and methods into a single unit.

  • Abstraction allows us to focus on the essential features of an object while hiding unnecessary details. For example, a car can be abstracted as a vehicle with properties like speed and color.

  • Encapsulation involves bundling data and methods that operate on the data into a single unit. For ex...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. Given a string, reverse the order of words.
Ans. 

Reverse words in a given string

  • Split the string into an array of words

  • Reverse each word in the array

  • Join the reversed words back into a string

View all DOT NET Developer interview questions

Saviant Consulting Interview Experiences

8 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Basic sales questions
  • Q2. Discussion on software services sales
  • Q3. Final was a whiteboarding round

Interview Preparation Tips

Interview preparation tips for other job seekers - This is actually a good company, the CEO Mr. Anubhav is a great entrepreneur who has proved himself. If you're an MBA I would suggest to approach human resources and ask for a EA (executive assistant) role. It will be a privilege and great learning experience learning from the founder himself and if you have it in your, Mr. Anubhav will be more than happy.

Thank you Anubhav and team at Saviant.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts, SQL Query

DOT NET Developer Interview Questions & Answers

user image Kartik Juneja

posted on 19 Jun 2023

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

I applied via Recruitment Consulltant and was interviewed in May 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 - Technical 

(9 Questions)

  • Q1. Introduction and the technologies used.
  • Ans. 

    I am a DOT NET Developer with expertise in C#, ASP.NET, MVC, SQL Server, and Entity Framework.

    • Proficient in C# programming language

    • Experience with ASP.NET and MVC frameworks

    • Skilled in working with SQL Server and Entity Framework

  • Answered by AI
  • Q2. Print 100 to 1 without using any loop statement
  • Ans. 

    Use recursion to print numbers from 100 to 1 without using loops.

    • Create a recursive function that prints the number and calls itself with the next number until reaching 1.

    • Base case should be when the number is 1, then stop recursion.

    • Example: void printNumbers(int n) { if(n == 0) return; print(n); printNumbers(n-1); }

  • Answered by AI
  • Q3. Reverse words in a given string
  • Ans. 

    Reverse words in a given string

    • Split the string into an array of words

    • Reverse each word in the array

    • Join the reversed words back into a string

  • Answered by AI
  • Q4. Write LEFT Join example in LINQ and SQL
  • Ans. 

    LEFT Join example in LINQ and SQL

    • In LINQ, use the 'DefaultIfEmpty' method to perform a LEFT JOIN

    • In SQL, use the 'LEFT JOIN' keyword to combine rows from two tables based on a related column

  • Answered by AI
  • Q5. Explain Abstraction and Encapsulation with example
  • Ans. 

    Abstraction focuses on hiding complex implementation details, while encapsulation bundles data and methods into a single unit.

    • Abstraction allows us to focus on the essential features of an object while hiding unnecessary details. For example, a car can be abstracted as a vehicle with properties like speed and color.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit. For example...

  • Answered by AI
  • Q6. Explain the use of filters in MVC with some example
  • Ans. 

    Filters in MVC are used to perform logic before or after an action method is executed.

    • Filters can be used for authentication, authorization, logging, exception handling, etc.

    • Examples include Authorize filter for restricting access to certain actions, HandleError filter for handling exceptions, etc.

  • Answered by AI
  • Q7. How many ways are there to send data to controller from View?
  • Ans. 

    There are multiple ways to send data from View to controller in ASP.NET MVC, including form submission, AJAX calls, query strings, and model binding.

    • Form submission using HTML forms

    • AJAX calls using jQuery or other JavaScript libraries

    • Query strings in the URL

    • Model binding in ASP.NET MVC

  • Answered by AI
  • Q8. Explain Clustered and non clustered Indexes.
  • Ans. 

    Clustered indexes physically reorder the data in the table, while non-clustered indexes create a separate structure.

    • Clustered indexes determine the physical order of data rows in a table.

    • Non-clustered indexes create a separate structure that contains a copy of the indexed columns and a pointer to the actual data rows.

    • Tables can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are fast...

  • Answered by AI
  • Q9. Explain the ACID concepts.
  • Ans. 

    ACID is a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability.

    • Atomicity ensures that 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 transactions are executed independently without int...

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

(9 Questions)

  • Q1. Ask questions about current company, location , projects worked on, project timeline
  • Q2. Why leaving current company? What type of growth and explain growth?
  • Q3. What was the recent intersting task in current project?
  • Ans. 

    Implementing a new feature to automate data migration process

    • Developing a custom data migration tool using C# and SQL Server

    • Creating scripts to extract data from legacy system and load into new system

    • Testing the tool with sample data to ensure accuracy and efficiency

  • Answered by AI
  • Q4. What have you learned in past 8 months?
  • Q5. Why do you want to join Saviant?
  • Ans. 

    I want to join Saviant for its innovative projects, collaborative culture, and opportunities for professional growth in .NET development.

    • Saviant's commitment to innovation aligns with my passion for developing cutting-edge applications.

    • The collaborative work environment fosters teamwork, which I believe enhances creativity and problem-solving.

    • I am impressed by Saviant's focus on continuous learning and professional dev...

  • Answered by AI
  • Q6. What do you know about Saviant?
  • Q7. How do you test features after implementation?
  • Ans. 

    I test features after implementation by conducting unit tests, integration tests, regression tests, and user acceptance tests.

    • Conduct unit tests to ensure individual components work correctly

    • Perform integration tests to check interactions between components

    • Run regression tests to verify that new features do not break existing functionality

    • Conduct user acceptance tests to ensure the feature meets user requirements

  • Answered by AI
  • Q8. How do you follow OOPS concepts and other best practices in your project?
  • Ans. 

    I follow OOPS concepts by using inheritance, encapsulation, polymorphism, and abstraction in my code.

    • I use classes and objects to encapsulate data and behavior.

    • I utilize inheritance to create a hierarchy of classes with shared attributes and methods.

    • I implement polymorphism by overriding methods in derived classes.

    • I apply abstraction to hide complex implementation details from the user.

  • Answered by AI
  • Q9. How database is connected in current project and Can we update multiple databse using DbSet?
  • Ans. 

    Database is connected using Entity Framework in current project. Yes, we can update multiple databases using DbSet.

    • Database is connected using Entity Framework which provides a data access layer for interacting with the database.

    • DbSet is a collection of entities that can be queried, updated, inserted, and deleted in the database.

    • By using DbSet, we can update multiple databases by specifying the database context for eac...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2023. There were 5 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 - One-on-one 

(1 Question)

  • Q1. Regarding SQL and Power BI
Round 3 - Technical 

(1 Question)

  • Q1. Regarding Projects
Round 4 - One-on-one 

(1 Question)

  • Q1. Regarding company and career plan
Round 5 - HR 

(1 Question)

  • Q1. HR template questions

Interview Questions & Answers

user image Ajinkya Sukhatme

posted on 5 Jan 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Nothing specific full grey area
Round 2 - One-on-one 

(1 Question)

  • Q1. With promoter & director; no structure, no agenda, no clarity on debriefing candidate
Round 3 - One-on-one 

(1 Question)

  • Q1. Again same thing repeat
Round 4 - One-on-one 

(1 Question)

  • Q1. Whiteboarding that too with insufficient info.

Interview Preparation Tips

Interview preparation tips for other job seekers - The CEO is very intelligent and truly passionate about entrepreneurship however the organization and people Knowledge-wise are very shallow.

Speaking of people management, there's no org. Tree, no contingency plan, no progress tracking. No one one training.

However do interact with the CEO, he is a good person with ambition and works very hard.

Marketing Head Interview Questions & Answers

user image Manish Rajani

posted on 3 May 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Behavioral 

(1 Question)

  • Q1. Why do you think we should hire you?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Share your goals for 1 year

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

Interview Questionnaire 

2 Questions

  • Q1. All about Oops concepts, dot net core, microsoft services
  • Q2. Angular, Http verbs

Interview Preparation Tips

Interview preparation tips for other job seekers - basic knowledge of your project

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Saviant Consulting?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

Saviant Consulting Interview FAQs

How many rounds are there in Saviant Consulting interview?
Saviant Consulting interview process usually has 2-3 rounds. The most common rounds in the Saviant Consulting interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Saviant Consulting 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 Saviant Consulting. The most common topics and skills that interviewers at Saviant Consulting expect are C#, Client Engagement, MVC, Account Management and Angular.
What are the top questions asked in Saviant Consulting interview?

Some of the top questions asked at the Saviant Consulting interview -

  1. How many ways are there to send data to controller from Vi...read more
  2. How database is connected in current project and Can we update multiple databse...read more
  3. How do you follow OOPS concepts and other best practices in your proje...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 8 interview experiences

Difficulty level

Moderate 75%
Hard 25%

Duration

Less than 2 weeks 75%
More than 8 weeks 25%
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
3.0
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Saviant Consulting Reviews and Ratings

based on 42 reviews

3.6/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.8

Salary

3.8

Job security

3.7

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 42 Reviews and Ratings
Solution Engineer

Pune

3-8 Yrs

₹ 7-23 LPA

Quality Analyst

Pune

3-7 Yrs

₹ 7-15 LPA

Explore more jobs
Solution Engineer
103 salaries
unlock blur

₹8.4 L/yr - ₹20.5 L/yr

Software Developer
16 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Quality Analyst
16 salaries
unlock blur

₹6.3 L/yr - ₹15 L/yr

Project Manager
12 salaries
unlock blur

₹18.5 L/yr - ₹36 L/yr

Business Analyst
11 salaries
unlock blur

₹11 L/yr - ₹20 L/yr

Explore more salaries
Compare Saviant Consulting with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

3.9
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare
write
Share an Interview