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

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency injection ?
  • Q2. Injecting Dependencies instead of creating them.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between async and await?
  • Q2. Async defines, await pauses execution.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is garbage collection in .NET?
  • Q2. Automatic memory management system.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is D/W array and ArrayList in .Net?
  • Ans. 

    D/W array is a dynamic array in .Net that can grow or shrink in size. ArrayList is a collection class that can store objects of any type.

    • D/W array is a resizable array that automatically adjusts its size as elements are added or removed.

    • ArrayList is a collection class that can store objects of any type, allowing for flexibility in data storage.

    • Example: D/W array - string[] myArray = new string[5]; ArrayList - ArrayList

  • Answered by AI
  • Q2. Array : Fixed size, type -safe. ArrayList : Dynamic size, not type-safe.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between readonly and const in C#?
  • Ans. 

    readonly variables can be assigned a value either at the time of declaration or in the constructor, while const variables must be assigned a value at the time of declaration and cannot be changed.

    • readonly variables can be assigned a value at runtime, while const variables must be assigned a value at compile time

    • readonly variables can be assigned a value in the constructor, while const variables cannot

    • const variables ar...

  • Answered by AI
  • Q2. Const is compile-time constant, while readonly is runtime constant.
  • Ans. 

    const is compile-time constant, while readonly is runtime constant.

    • const values are determined at compile time and cannot be changed during runtime

    • readonly values can be assigned a value either at the declaration or in the constructor and can be changed at runtime

    • const is used for values that are known at compile time, like mathematical constants

    • readonly is used when the value needs to be initialized at runtime, like d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tailor your resume to match the job description and highlight relevant skills.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Write a program for factorial of a number using for loop?
  • Ans. 

    Program to calculate factorial of a number using for loop

    • Initialize a variable to store the factorial result

    • Use a for loop to iterate from 1 to the given number

    • Multiply the current value with the factorial result in each iteration

    • Return the factorial result

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Debugging Techniques, Types of Logs
  • Ans. 

    Debugging techniques involve using logs to identify and fix issues in code.

    • Types of logs include console logs, file logs, event logs, and trace logs.

    • Debugging techniques include using breakpoints, stepping through code, and analyzing error messages.

    • Logging frameworks like log4net and NLog can be used to generate logs for debugging purposes.

  • Answered by AI
  • Q2. Aptitude type questions
  • Q3. Basic sql queries, sql injection
  • Q4. Sessions and cookies

Interview Preparation Tips

Topics to prepare for ClaySys DOT NET Developer interview:
  • MySQL
  • .Net
  • Debugging
  • aptitude
Interview preparation tips for other job seekers - I was a 1 yr experienced candidate interviewed for dot net developer position. Practise your sql skills and overall the interviwer was very friendly and it was good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is CLR in .NET?
  • Q2. Common Language runtime.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

30 min aptitude quetiobs

Round 2 - Coding Test 

2 coding questions where asked i simple logics

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview

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

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

₹5.3 L/yr - ₹20 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.6
Compare

Wipro

3.7
Compare

HCLTech

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