i
Saviant Consulting
Filter interviews by
I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 interview rounds.
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
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); }
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
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
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...
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.
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
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...
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...
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
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
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.
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...
posted on 12 Sep 2023
I applied via Naukri.com and was interviewed before Sep 2022. There were 3 interview rounds.
Advanced JS, PHP related questions
posted on 24 Oct 2024
I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.
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
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
posted on 11 Feb 2022
I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.
1st test was aptitude and a easy coding test
The 2nd test was pure coding based test on hacker rank platform and contains 2 easy and 2 medium question
posted on 24 Apr 2024
I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.
It was online 60min test.
It was offline 30 min test.
posted on 26 Apr 2024
I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.
The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.
Inheritance allows a class to inherit properties and behavior from another class.
Encapsulation restricts access to certain components within a class, protecting the data.
Abstraction hides complex implementation details and only shows the necessary features.
Polymorphism allows objects to be treated as instances of their parent class.
String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.
String buffer is synchronized, making it thread-safe for use in multi-threaded environments.
String builder is not synchronized, providing better performance in single-threaded applications.
String builder is faster than string buffer due to lack of synchronization overhead.
Example: StringBuffer sb = new StringBuffer(); Str
Strings are immutable in order to ensure data integrity and security.
Immutable strings prevent accidental data modification, ensuring data integrity.
Immutable strings enhance security by preventing unauthorized access or tampering.
Immutable strings allow for more efficient memory management and optimization.
Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.
There are two types of exceptions in Java: checked exceptions and unchecked exceptions.
Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.
Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.
Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.
Examples of unchecked exceptions include...
Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.
Iterate through each element in the list
Compare the current element with the target value
Return the index if a match is found, otherwise return -1
JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.
JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.
JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.
JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.
JDK is used for developing ...
posted on 27 Aug 2024
I applied via Job Portal
posted on 26 Mar 2024
I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.
I appeared for an interview before Mar 2024.
The aptitude test mainly covered logical reasoning, quantitative aptitude, and basic programming concepts. Questions were of moderate difficulty, with some time-based problem-solving challenges. Practicing common aptitude topics like puzzles, numerical ability, and coding fundamentals can help in preparation.
The group discussion round focused on general topics related to technology, current affairs, and workplace scenarios. The evaluators were looking for clarity of thought, communication skills, and how well candidates could present their points while engaging with others. Staying confident and actively participating helped in getting selected.
Some of the top questions asked at the Saviant Consulting DOT NET Developer interview -
based on 1 interview
Interview experience
Solution Engineer
86
salaries
| ₹5.3 L/yr - ₹20 L/yr |
Software Developer
16
salaries
| ₹6 L/yr - ₹17 L/yr |
Business Analyst
14
salaries
| ₹9 L/yr - ₹17 L/yr |
Quality Analyst
13
salaries
| ₹6.3 L/yr - ₹15 L/yr |
Technology Consultant
11
salaries
| ₹5.5 L/yr - ₹10.9 L/yr |
Accel Frontline
Northcorp Software
Elentec Power India (EPI) Pvt. Ltd.
HyScaler