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

Clear (1)

Saviant Consulting DOT NET Developer Interview Questions, Process, and Tips

Updated 19 Jun 2023

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

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I was interviewed in Sep 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills and ability to work in a team

    • Completed multiple projects including a web-based inventory management system

  • Answered by AI
  • Q2. Simple coding questions..Basically pattern.
  • Q3. And also they will ask about your projects.

Interview Preparation Tips

Round: Test
Experience: 60 multiple choice questions so have to manage time carefully.
Tips: Have to give equal importance to all the sections..So try to do well in all section.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical + HR Interview
Experience: Don't panic...Only write those things that you know in your resume.

Skills: Smart Coding
College Name: Jaypee Institute Of Information Technology, Noida

I was interviewed in May 2017.

Interview Preparation Tips

Round: Test
Total Questions: 20

Round: Group Discussion
Duration: 1 hour

Skills: Coding Skills And Knowledge On Data Structures

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes

Skills: Engineering Basics

I was interviewed in May 2017.

Interview Preparation Tips

Round: Group Discussion
Duration: 7 hours

College Name: Andhra university

I was interviewed in Aug 2017.

Interview Preparation Tips

Round: Test
Tips: Practice e litmus questions and also give mock tests on placement season
Duration: 2 hours

Round: Technical + HR Interview
Experience: The interviewer asked me questions from the subjects I mentioned in my CV and also asked so many situational questions like what will you do in this situation etc.

Skills: Presence Of Mind, Technical Skill
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

SALARIES

KEKA TECHNOLOGIES

JOBS

Aurigo

No Jobs

SALARIES

KEKA TECHNOLOGIES

JOBS

KEKA TECHNOLOGIES

No Jobs

JOBS

Vidwath Innovative Solutions

No Jobs

SALARIES

Aurigo

INTERVIEWS

HCLTech

No Interviews

INTERVIEWS

Tech Mahindra

No Interviews

REVIEWS

KEKA TECHNOLOGIES

No Reviews

SALARIES

Aurigo

Tell us how to improve this page.

Saviant Consulting DOT NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Solution Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technology Consultant
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Saviant Consulting with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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