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 DOT NET Developer Interview Questions and Answers

Updated 19 Jun 2023

10 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.

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...

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between Windows application development an ... read more
Q2. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?
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

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.

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...

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); }

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

Are these interview questions helpful?
A DOT NET Developer was asked
Q. 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 fo...

A DOT NET Developer was asked
Q. 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

A DOT NET Developer was asked
Q. 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

Saviant Consulting DOT NET Developer Interview Experiences

1 interview found

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

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 Saviant Consulting?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Company Website and was interviewed in May 2023. There were 4 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 - Aptitude Test 

30 min test on simple google form

Round 3 - Coding Test 

Half hour conding round on basic javascript questions

Round 4 - Coding Test 

One hour coding round on little bit intermediate javascript questions

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between Windows application development an ... read more
Q2. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Leetcode Hard questions
  • Q2. IPO Leetcode Hard
  • Ans. 

    The IPO problem involves scheduling and maximizing profits from initial public offerings.

    • Understand the problem constraints and requirements clearly.

    • Use a greedy algorithm to prioritize high-profit IPOs.

    • Consider edge cases, such as overlapping IPO times.

    • Example: If IPOs A, B, and C have profits of 100, 200, and 150 respectively, prioritize B first.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Discussed on my last salary
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General fit to profile filtration
Round 2 - Technical 

(3 Questions)

  • Q1. To the profile applied for
  • Q2. Explain an actual component
  • Ans. 

    An actual component is a reusable and modular piece of software that performs a specific function within a larger system.

    • Components are often designed to be independent and can be easily integrated into different systems.

    • Examples of components include buttons, input fields, and dropdown menus in a user interface.

    • Components can have their own logic, styling, and functionality, making them versatile building blocks for s...

  • Answered by AI
  • Q3. Design the architecture
  • Ans. 

    Designing the architecture for a software system involves planning the structure and components of the system.

    • Identify the key components of the system and their interactions

    • Choose appropriate technologies and frameworks for each component

    • Consider scalability, performance, security, and maintainability

    • Create a detailed diagram or documentation of the architecture

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Attitude towards work

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not bluff they will catch you immediately as even their management are hardcore coders

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Coding Test 

Online Coding Test included some aptitude questions, technical questions followed by 3 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. My technical interview included an introduction about myself followed by my background, projects I've made, internships I've done, and in which language I was comfortable. and the interviewer asked me to w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer confidently and give examples. and you can also connect the questions asked to your past projects.
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

They asked one coding question that is for star pattern question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for pattern auestions and java
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude questions.

Round 2 - HR 

(2 Questions)

  • Q1. What's your strength ?
  • Ans. 

    My strength lies in my problem-solving skills and ability to learn quickly.

    • Strong problem-solving skills

    • Quick learner

    • Adaptability to new technologies

    • Ability to work well under pressure

  • Answered by AI
  • Q2. Are you willing to work under pressure?
  • Ans. 

    Yes, I am comfortable working under pressure and have experience delivering high-quality work in tight deadlines.

    • I have successfully completed projects with tight deadlines in my previous roles.

    • I am able to prioritize tasks effectively and remain focused under pressure.

    • I thrive in challenging situations and see them as opportunities to showcase my skills.

    • I have experience working on urgent bug fixes and resolving issue...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have a good carrier then don't go there.

Saviant Consulting Interview FAQs

How many rounds are there in Saviant Consulting DOT NET Developer interview?
Saviant Consulting interview process usually has 3 rounds. The most common rounds in the Saviant Consulting interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Saviant Consulting DOT NET Developer 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#, MVC, SQL, .Net and .Net Core.
What are the top questions asked in Saviant Consulting DOT NET Developer interview?

Some of the top questions asked at the Saviant Consulting DOT NET Developer 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

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 103 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 35 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all
Solution Engineer
61 salaries
unlock blur

₹12.5 L/yr - ₹21.7 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

4.1
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.8
Compare
write
Share an Interview