Upload Button Icon Add office photos

Filter interviews by

Droisys DOT NET Developer Interview Questions and Answers

Updated 17 Nov 2022

Droisys DOT NET Developer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Oct 2022. There were 2 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 

(2 Questions)

  • Q1. Difference between stored procedure and functions?
  • Ans. 

    Stored procedures are used to perform an action, while functions return a value.

    • Stored procedures are precompiled and stored in the database, while functions are compiled at runtime.

    • Functions can be used in SQL statements, while stored procedures cannot be used in SQL statements.

    • Functions can be called from within stored procedures, but stored procedures cannot be called from within functions.

    • Functions can have input p...

  • Answered by AI
  • Q2. Difference between == & === ?
  • Ans. 

    The == operator compares values, while the === operator compares values and types.

    • The == operator performs type coercion, while the === operator does not.

    • The == operator returns true if the values are equal after type coercion, while the === operator returns true only if the values and types are equal.

    • For example, 1 == '1' returns true, but 1 === '1' returns false.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview and interview was soft spoken. Not so much bombarded the question.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
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 - Technical 

(3 Questions)

  • Q1. What is JWT Authentication
  • Q2. Design Patterns
  • Q3. Different Types of Routing in MVC
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(1 Question)

  • Q1. What is Entity Framework and how does it function?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2023. There were 2 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 

(12 Questions)

  • Q1. Abstract class vs interfaces. What would i choose and why.
  • Ans. 

    Abstract class is used when there is a need for default implementation, while interfaces are used for multiple inheritance.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can provide default implementations for methods, while interfaces cannot.

    • Interfaces allow a class to implement multiple interfaces, but can only inherit from one abstra...

  • Answered by AI
  • Q2. Difference between .NET core, .NET framework and .NET
  • Ans. 

    NET core is a cross-platform, open-source framework for building modern, cloud-based, internet-connected applications. NET framework is a Windows-only framework for building Windows desktop applications. NET is a general term encompassing both .NET core and .NET framework.

    • NET core is cross-platform and open-source, while .NET framework is Windows-only.

    • .NET core is modular and lightweight, allowing for faster performanc...

  • Answered by AI
  • Q3. Pipelines and Middlewares in .NET. How would i configure them.
  • Ans. 

    Pipelines and Middlewares in .NET are used for request processing and can be configured using middleware components.

    • Pipelines in .NET are used to define a series of middleware components that process an HTTP request.

    • Middlewares are components that can handle requests and responses in the pipeline.

    • To configure pipelines and middlewares in .NET, you can use the 'UseMiddleware' method in the 'Configure' method of the Star...

  • Answered by AI
  • Q4. Difference between App.Use() and App.Run()
  • Ans. 

    App.Use() is used for adding middleware to the request pipeline, while App.Run() is used for handling the request directly.

    • App.Use() is used to add middleware components to the request pipeline.

    • App.Run() is used to handle the request directly without passing it to the next middleware component.

    • App.Use() is typically used for setting up middleware like authentication, logging, etc.

    • App.Run() is used for handling the fina...

  • Answered by AI
  • Q5. SOLID principles (S and O was asked)
  • Q6. Dependency Inversion vs Inversion of Control. I had to write examples of constructor injection, method injection with the help of a DBContext file.
  • Q7. String vs String Builder. Comparision of their mutability, speed, memory allocated, usability. Was provided a use case and asked which one to use and how. String Interpolation. String Manipulation.
  • Ans. 

    String is immutable, while StringBuilder is mutable. StringBuilder is faster and more memory efficient for string manipulation.

    • String is immutable, meaning once created, it cannot be changed. StringBuilder is mutable, allowing for efficient string manipulation.

    • StringBuilder is faster than String for concatenating multiple strings, as it does not create a new string object each time.

    • String uses more memory as it creates...

  • Answered by AI
  • Q8. Database Normalization (2NF was asked). Was given an sample dataset, asked to normalize and eliminate partial dependency. Given 2 entities Students and Class, establish relationships between them and prepa...
  • Q9. Difference between Unique, Primary Key. Clustered and Non-Clustered Indices.
  • Ans. 

    Unique, Primary Key, Clustered, and Non-Clustered Indices are all used in database management to enforce data integrity and improve query performance.

    • Unique constraint ensures that all values in a column are unique, but allows NULL values.

    • Primary Key constraint ensures that all values in a column are unique and not NULL. Each table can have only one Primary Key.

    • Clustered Index physically reorders the way records in the...

  • Answered by AI
  • Q10. Prepare an example of JWT authentication and Oauth for an API.
  • Ans. 

    JWT authentication and OAuth example for API

    • Implement JWT authentication by generating a token upon user login and including it in the Authorization header of API requests

    • Use OAuth for user authorization by obtaining access tokens from a third-party provider like Google or Facebook

    • Ensure API endpoints validate JWT tokens and OAuth access tokens before allowing access to resources

  • Answered by AI
  • Q11. Difference between $.post and $.ajax.
  • Ans. 

    Both $.post and $.ajax are methods in jQuery used for making AJAX requests, but $.ajax is more versatile and customizable.

    • Both $.post and $.ajax are used for making AJAX requests in jQuery.

    • $.post is a shorthand method for $.ajax with predefined settings for POST requests.

    • $.ajax is more versatile and customizable, allowing for different types of requests and more options.

    • Example: $.post('example.php', {data: 'example'},...

  • Answered by AI
  • Q12. Write a Linq query to fetch data the fastest.(i used iQueryable) Write a Linq query to check if a record exists in the table.(i used ANY)

Interview Preparation Tips

Topics to prepare for NeoSOFT DOT NET Developer interview:
  • C#
  • webapi
  • SQL Server
Interview preparation tips for other job seekers - The interviewer was asking real life use case-driven questions. You can learn a bit about low level system design.
Focus more on C# and DOTNET 6.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Depenency injejction
  • Q2. Routings
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Code for prime numbers

Interview Preparation Tips

Interview preparation tips for other job seekers - good interview done here
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dependency injection
  • Q2. Dispose and finalize
  • Ans. 

    Dispose is used to release unmanaged resources, while finalize is used for cleanup before an object is destroyed.

    • Dispose is called explicitly by the developer, while finalize is called by the garbage collector.

    • Dispose should be implemented in classes that directly use unmanaged resources like file handles or database connections.

    • Finalize is used for cleanup tasks like closing files or releasing memory.

    • Implement IDispos...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Mettl aptitude reasoning and technical MCQ

I applied via Campus Placement and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Union And Union All in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines all rows including duplicates.

    • Union merges the results of two or more SELECT statements into a single result set.

    • Union All returns all rows from all SELECT statements, including duplicates.

    • Union requires the same number of columns in all SELECT statements, while Union All does not.

    • Union sorts the result set and removes duplicates, while Union All does not.

    • Union ...

  • Answered by AI
  • Q2. Difference Abstract Method vs Interface ?
  • Ans. 

    Abstract methods are methods without implementation in abstract classes, while interfaces are contracts that define methods.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Abstract classes can have constructors, while interfaces cannot.

    • Interfaces can have properties,

  • Answered by AI
  • Q3. Tell Travelling Salesman Problem Optimal Solution Approach
  • Ans. 

    The optimal solution approach for the Travelling Salesman Problem involves using algorithms such as the Nearest Neighbor Algorithm and the 2-Opt Algorithm.

    • The Nearest Neighbor Algorithm starts at a random city and selects the nearest unvisited city as the next stop.

    • The 2-Opt Algorithm involves swapping two edges in the tour to see if it results in a shorter distance.

    • Other algorithms include the Genetic Algorithm and th...

  • Answered by AI
  • Q4. Can Two Primary keys can be made possible in Sql Table ?
  • Ans. 

    No, only one primary key can be defined in a SQL table.

    • Primary key ensures uniqueness of each record in a table.

    • A table can have only one primary key constraint.

    • However, a composite primary key can be created using multiple columns.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The Advice which I want to give all fresher candidates to explain theoretical questions that are asked by interviewer in a manner to real life based example, like if interviewer ask oops concepts like inheritance, polymorphism, encapsulation etc. don't tell him direct definition like this this and so please try to relate your answer to real world example and their uses in day to day life
And Another advice to keep calm while complete interview process and don't get nervous and hesitate while answering answer to interviewer

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustrate with an example.
  • Ans. 

    JOINS are used in SQL to combine data from two or more tables based on a related column.

    • Inner JOIN returns only the matching rows from both tables

    • Equi JOIN is a type of Inner JOIN where the join condition is based on equality between two columns

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Divide the array in two Halves and keep each half in ascending order without using new Array?
  • Ans. 

    Divide array in two halves and keep each half in ascending order without using new Array.

    • Use Array.sort() method to sort the original array

    • Use Array.slice() method to divide the array into two halves

    • Use Array.reverse() method to reverse the second half of the array

  • Answered by AI
  • Q3. What are Interfaces and Why do we need interfaces?
  • Ans. 

    Interfaces are contracts that define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • They allow for loose coupling between classes and promote code reusability.

    • Interfaces can be used to define common behavior across multiple classes.

    • Example: IDisposable interface in C# ensures that an object can be properly dispo...

  • Answered by AI
  • Q4. What is inheritance and Examples in inheritance.
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class is based on another class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • The subclass can also add its own properties and methods.

    • Examples include a Car class inheriting from a Vehicle class, or a Dog class inheriting from an Animal class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep The Basics clear and Be confident about what you know.
Be truthful and well prepared (Interviewer will catch your lies).

Skills evaluated in this interview

Droisys Interview FAQs

How many rounds are there in Droisys DOT NET Developer interview?
Droisys interview process usually has 2 rounds. The most common rounds in the Droisys interview process are Resume Shortlist and Technical.
How to prepare for Droisys 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 Droisys. The most common topics and skills that interviewers at Droisys expect are .Net, ASP, Angularjs, Javascript and MySQL.
What are the top questions asked in Droisys DOT NET Developer interview?

Some of the top questions asked at the Droisys DOT NET Developer interview -

  1. Difference between stored procedure and functio...read more
  2. Difference between == & ==...read more

Tell us how to improve this page.

Fast track your campus placements

View all
Droisys DOT NET Developer Salary
based on 4 salaries
₹1.8 L/yr - ₹6.5 L/yr
31% less than the average DOT NET Developer Salary in India
View more details

Droisys DOT NET Developer Reviews and Ratings

based on 2 reviews

4.4/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
27 salaries
unlock blur

₹4.4 L/yr - ₹13.3 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹7.5 L/yr - ₹14.8 L/yr

QA Engineer
10 salaries
unlock blur

₹3.6 L/yr - ₹8.8 L/yr

System Analyst
8 salaries
unlock blur

₹6.2 L/yr - ₹24 L/yr

Software Developer
7 salaries
unlock blur

₹4 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Droisys 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