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
3.6

based on 38 Reviews

Filter interviews by

Saviant Consulting Interview Questions, Process, and Tips

Updated 18 Jan 2025

Top Saviant Consulting Interview Questions and Answers

View all 13 questions

Saviant Consulting Interview Experiences

Popular Designations

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.

Business Development Manager Interview Questions asked at other Companies

Q1. If your not getting support from bank or agent, then what will make further to generate business, what is the approach or strategy to be implemented during such cases to convince the customers ?
View answer (14)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts, SQL Query

Dot Net Fullstack Developer Interview Questions asked at other Companies

Q1. What languages does support the .netframework???
View answer (3)

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?
  • 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

Top Saviant Consulting DOT NET Developer Interview Questions and Answers

Q1. How many ways are there to send data to controller from View?
View answer (2)

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (10)
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

Power BI Developer Interview Questions asked at other Companies

Q1. Types of joins in power Bi & SQL and how it works?
View answer (7)

Saviant Consulting interview questions for popular designations

 Business Development Manager

 (1)

 DOT NET Developer

 (1)

 Dot Net Fullstack Developer

 (1)

 Full Stack Software Developer

 (1)

 Manager Talent Acquisition

 (1)

 Marketing Head

 (1)

 Power BI Developer

 (1)

Business Development Manager - Account Based Marketing, Influencer Marketing, Interview Questions & Answers

user image Anonymous

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 was interviewed before May 2023.

Round 1 - Behavioral 

(1 Question)

  • Q1. Why do you think we should hire you?

Marketing Head Interview Questions asked at other Companies

Q1. How will you differentiate and position a product (insecticide), which is at par in efficacy with the existing ones, but have to be priced 2.5X of the existing products, give example from your past experience
View answer (1)
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

Manager Talent Acquisition Interview Questions asked at other Companies

Q1. How do you address employees who are dissatisfied with their appraisals?
View answer (1)

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

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)

Interview questions from similar companies

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

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Ans. 

    ES6 introduced several new features and improvements to JavaScript, making it more powerful and efficient.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for easier object-oriented programming

    • Template literals for easier string interpolation

    • Default parameters and rest parameters for function arguments

    • Destructuring assignment for easier data extraction

    • Promises for asynchronous prog

  • Answered by AI
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Ans. 

    Yes, let and const variables are hoisted but not initialized.

    • let and const variables are hoisted to the top of their block scope, but they are not initialized until the actual line of code is executed.

    • This means that you cannot access a let or const variable before it is declared in the code.

    • For example, trying to access a let variable before it is declared will result in a ReferenceError.

  • Answered by AI
  • Q6. What is global context
  • Ans. 

    Global context refers to the overall environment or setting in which something exists or operates.

    • Global context encompasses all variables, functions, and objects that are accessible throughout an entire program.

    • It can be thought of as the 'big picture' view of a program's execution.

    • In web development, global context includes the window object in JavaScript.

  • Answered by AI
  • Q7. What is temporal deadzone
  • Ans. 

    Temporal dead zone is a period during the variable creation process where accessing the variable results in a ReferenceError.

    • Occurs when trying to access a variable before it has been declared with let or const

    • Happens due to the variable being in the temporal dead zone until it is declared

    • Example: accessing a variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?
  • Ans. 

    Mongoose is an Object Data Modeling (ODM) library for MongoDB that provides a higher level of abstraction and simplifies interactions with the database.

    • Mongoose provides schema validation which helps maintain data integrity.

    • Mongoose simplifies querying and data manipulation with built-in functions.

    • Mongoose supports middleware functions for pre and post processing of data operations.

  • Answered by AI

Skills evaluated in this interview

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 Business Analysis.
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 do you follow OOPS concepts and other best practices in your proje...read more
  3. How database is connected in current project and Can we update multiple databse...read more

Tell us how to improve this page.

Saviant Consulting Interview Process

based on 5 interviews in last 1 year

Interview experience

3
  
Average

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
View all

Saviant Consulting Reviews and Ratings

based on 38 reviews

3.6/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

4.0

Salary

3.8

Job security

3.8

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 38 Reviews and Ratings
HR Operations Specialist

Pune

5-7 Yrs

₹ 10-13 LPA

Quality Analyst

Pune

4-8 Yrs

Not Disclosed

Solution Engineer

Pune

4-8 Yrs

Not Disclosed

Explore more jobs
Solution Engineer
66 salaries
unlock blur

₹5.2 L/yr - ₹19 L/yr

Software Developer
19 salaries
unlock blur

₹5.2 L/yr - ₹17 L/yr

Business Analyst
14 salaries
unlock blur

₹9 L/yr - ₹17 L/yr

Quality Analyst
12 salaries
unlock blur

₹6.3 L/yr - ₹15 L/yr

Technology Consultant
11 salaries
unlock blur

₹5.5 L/yr - ₹10.9 L/yr

Explore more salaries
Compare Saviant Consulting with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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