Upload Button Icon Add office photos

Filter interviews by

Sdaemon Infotech DOT NET Developer Interview Questions, Process, and Tips

Updated 15 Nov 2024

Sdaemon Infotech DOT NET Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(16 Questions)

  • Q1. What is Object Oriented Programming?
  • Ans. 

    Object Oriented Programming is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • Example: In a banking application, you can have classes like Account, Customer, and Tr...

  • Answered by AI
  • Q2. What are the important pillars of OOPs?
  • Ans. 

    The important pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation hides the internal state of an object and only exposes necessary information.

    • Abstraction focuses on the essential features of an object while hiding the implementation details.

    • Polymorphism allows objects to be treated as instances of t...

  • Answered by AI
  • Q3. What is Encapsulation? How do you hide data using Encapsulation?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data within a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • Data hiding is achieved by making the variables private and providing public methods to access or modify them.

    • For example, a class 'Car' may have private variables like 'model' and 'year' with public methods like 'getModel()' a

  • Answered by AI
  • Q4. What is Inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can access public and protected members of the base class

    • Example: Class Car inherits from class Vehicle

  • Answered by AI
  • Q5. What is Polymorphism?
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different data types.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance allows a child class to override a method of its parent class, exhibiting polymorphic behavior.

  • Answered by AI
  • Q6. What is Abstract Class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by derived classes

    • Can have both abstract and non-abstract methods

  • Answered by AI
  • Q7. What is difference between Abstract Class and Interface?
  • Ans. 

    Abstract class can have implementation details while interface cannot. Class can implement multiple interfaces but only inherit from one abstract class.

    • Abstract class can have method implementations while interface cannot.

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

    • Interfaces are used to define a contract for classes to implement, while abstract classes are used to provide a c...

  • Answered by AI
  • Q8. What is Layout page in MVC?
  • Ans. 

    Layout page in MVC is a shared template that defines the structure of the final output HTML.

    • Layout page contains common elements like header, footer, navigation menu, etc.

    • It allows for consistent design across multiple views.

    • Can be used to define sections that can be overridden by individual views.

  • Answered by AI
  • Q9. What is primary key?
  • Ans. 

    Primary key is a unique identifier for each record in a database table.

    • Primary key ensures each record in a table is unique

    • It can be a single column or a combination of columns

    • Primary key constraints prevent duplicate or null values

  • Answered by AI
  • Q10. What is Unique key?
  • Ans. 

    Unique key is a column or a set of columns that uniquely identifies each row in a table.

    • A unique key constraint ensures that all values in a column or a set of columns are unique.

    • It can be used to enforce data integrity and prevent duplicate entries.

    • Example: Employee ID in an employee table can be a unique key.

  • Answered by AI
  • Q11. Can a table have multiple primary key?
  • Ans. 

    Yes, a table can have multiple primary keys.

    • A table can have a composite primary key, which consists of multiple columns.

    • Each column in the composite primary key contributes to uniquely identifying each row.

    • Example: CREATE TABLE Employee (emp_id INT, dept_id INT, PRIMARY KEY (emp_id, dept_id));

  • Answered by AI
  • Q12. Query for finding ID, Name for employee with Maximum Salary
  • Ans. 

    Query to find ID and Name of employee with maximum salary

    • Use SQL query with MAX() function to find the maximum salary

    • Join the result with employee table to get ID and Name

  • Answered by AI
  • Q13. Select ID,Name from Employee where Salary = { Selelct Max(Salary) from Employee};
  • Ans. 

    The query selects the ID and Name of the employee with the highest salary.

    • The query uses a subquery to find the maximum salary in the Employee table.

    • The outer query then selects the ID and Name of the employee with that maximum salary.

  • Answered by AI
  • Q14. If you have static constructor and default constructor, which gets executed first?
  • Ans. 

    Static constructor gets executed first before default constructor.

    • Static constructor is called only once, when the class is first accessed or instantiated.

    • Default constructor is called every time a new instance of the class is created.

    • Example: If a class has both static and default constructors, the static constructor will be executed before the default constructor.

  • Answered by AI
  • Q15. Can static constructor have multiple arguments?
  • Ans. 

    No, static constructors cannot have multiple arguments.

    • Static constructors in C# do not take any arguments.

    • They are used to initialize static data members or perform any necessary setup for the class.

    • Example: public static MyClass() { // constructor code }

  • Answered by AI
  • Q16. If you have class and private variable. Can you use that class in other class?
  • Ans. 

    Yes, by using access modifiers like public or internal.

    • Yes, by changing the access modifier of the class to public or internal.

    • Private variables can be accessed within the same class but not outside. Use properties or methods to access them in other classes.

    • Example: class A has a private variable 'x'. In class B, create an instance of class A and access 'x' using a public method or property.

  • Answered by AI
Round 2 - Coding Test 

Create a form and do CRUD Operation

Interview Preparation Tips

Topics to prepare for Sdaemon Infotech DOT NET Developer interview:
  • C#
  • ASP.Net MVC
  • MS SQL
Interview preparation tips for other job seekers - Prepare well on basics of C#, Asp.Net MVC and Sql.

Skills evaluated in this interview

DOT NET Developer Jobs at Sdaemon Infotech

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the repository design pattern?
  • Q2. What is the difference between IEnumerable and IQueryable?

Interview Preparation Tips

Interview preparation tips for other job seekers - I was ghosted after successfully completing all interview rounds and finalizing the salary package.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. What are the types and number of constraints in your specific context?
  • Ans. 

    There are various types of constraints in DOT NET development, including primary key, foreign key, unique, check, and default constraints.

    • Primary key constraints ensure each record in a table is unique.

    • Foreign key constraints enforce referential integrity between tables.

    • Unique constraints ensure that all values in a column are distinct.

    • Check constraints validate the data before it is inserted or updated.

    • Default constra...

  • Answered by AI
  • Q2. What is the difference between an independent class and an abstract class?
  • Ans. 

    Independent class can be instantiated while abstract class cannot be instantiated directly.

    • Independent class can be directly instantiated using the 'new' keyword.

    • Abstract class cannot be instantiated directly, it can only be used as a base class for other classes.

    • Independent class does not require any derived class to implement its members.

    • Abstract class can have abstract methods that must be implemented by derived cla

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Technical coding with the technical team
Round 3 - HR 

(1 Question)

  • Q1. What are your reasons for changing your job?
  • Ans. 

    Seeking new challenges, growth opportunities, and a better work-life balance.

    • Looking for new challenges and opportunities to learn and grow.

    • Seeking a better work-life balance.

    • Interested in working with new technologies or in a different industry.

    • Wanting to advance my career and take on more responsibilities.

    • Company restructuring or changes in management.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's important to prepare thoroughly in order to succeed in the interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to call abstract constructor
  • Q2. Difference between generic list and list which is faster
Round 2 - Coding Test 

Write prime number code

Interview Preparation Tips

Topics to prepare for Wipro DOT NET Developer interview:
  • C#
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

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

Round 1 - One-on-one 

(9 Questions)

  • Q1. What is the extension method
  • Ans. 

    Extension methods allow adding new methods to existing types without modifying the original type

    • Extension methods are static methods that can be called as if they were instance methods of the extended type

    • They are defined in static classes and must be in the same namespace as the extended type

    • They are commonly used to add functionality to existing types or interfaces without modifying them directly

  • Answered by AI
  • Q2. What is difference between union and union all
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

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

    • Union is slower than Union All because it has to perform an additional step to remove duplicates.

    • Union is used when you want to combine two result sets and remove duplicates, while Union All is used when you want to combine two result sets without removing duplicat

  • Answered by AI
  • Q3. What is constructor chaining
  • Ans. 

    Constructor chaining is the process of calling one constructor from another constructor within the same class.

    • Allows for reusing code and avoiding duplication

    • Can be achieved using 'this' keyword in the constructor

    • Example: public MyClass(int x) : this(x, 0) {}

  • Answered by AI
  • Q4. What is CTE and explain
  • Ans. 

    CTE stands for Common Table Expressions, which is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs are defined using the WITH keyword in SQL.

    • They help improve readability and maintainability of complex queries.

    • CTEs can be recursive, allowing for hierarchical data querying.

    • Example: WITH CTE AS (SELECT * FROM table_name) SELECT * FROM CTE;

    • Example: WITH RECURSIVE CTE ...

  • Answered by AI
  • Q5. What is constructor
  • Ans. 

    A constructor is a special method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to.

    • They are used to initialize the object's state.

    • Constructors can be parameterized or default (no parameters).

    • Example: public class Person { public Person(string name) { this.Name = name; } }

  • Answered by AI
  • Q6. How to send bulk of data through db
  • Ans. 

    Use bulk insert or batch processing to send large amounts of data through the database.

    • Use bulk insert operations provided by the database management system.

    • Consider using batch processing techniques to optimize performance.

    • Use stored procedures or parameterized queries for efficient data transfer.

  • Answered by AI
  • Q7. Which design pattern do you used in your project
  • Ans. 

    I have used the MVC (Model-View-Controller) design pattern in my project.

    • Separates the application into three main components: Model, View, and Controller

    • Promotes code reusability, modularity, and maintainability

    • Example: ASP.NET MVC framework

  • Answered by AI
  • Q8. What are the characteristics of singleton pattern and how to use
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Characteristics include private constructor, static instance variable, static method to access instance, lazy initialization, and thread safety.

    • Example: public class Singleton { private static Singleton instance; private Singleton() {} public static Singleton getInstance() { if (instance == null) { instance = new Singlet

  • Answered by AI
  • Q9. Write a linq to fetch the data from db table(students) and data (studentid) should be in asending rder
  • Ans. 

    Use LINQ to fetch data from the 'students' table in ascending order of 'studentid'.

    • Use LINQ query syntax or method syntax to retrieve data from the 'students' table.

    • Order the data by 'studentid' in ascending order using the 'OrderBy' or 'OrderByDescending' method.

    • Ensure that the LINQ query is executed against the database to fetch the data.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What's your experience
  • Q2. Whats your Qualifications
Round 2 - Technical 

(2 Questions)

  • Q1. What are joins?
  • Q2. Oops concept and its implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between web.config and Machine.config
  • Ans. 

    web.config is specific to a web application and overrides settings in Machine.config

    • web.config is specific to a web application, while Machine.config is at the machine level

    • web.config can override settings in Machine.config for a specific application

    • Machine.config is located in the .NET framework folder, while web.config is in the application folder

  • Answered by AI
  • Q2. Explain about state management
  • Ans. 

    State management in .NET refers to the process of storing and retrieving data during the lifecycle of an application.

    • State management can be achieved using various techniques such as session state, view state, cookies, and query strings.

    • Session state allows storing user-specific data across multiple pages during a user session.

    • View state stores the state of the page and its controls between postbacks.

    • Cookies can be use...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Code excution of .net application?
  • Ans. 

    The .NET application code is compiled into Intermediate Language (IL) which is then executed by the Common Language Runtime (CLR).

    • Code is compiled into Intermediate Language (IL) by the compiler

    • IL is then converted into machine code by the Just-In-Time (JIT) compiler

    • The CLR manages memory, security, and other system resources during code execution

  • Answered by AI
  • Q2. Stored procedure vs function?
  • Ans. 

    Stored procedures are precompiled SQL queries that can perform multiple operations, while functions are reusable code blocks that return a single value.

    • Stored procedures can execute multiple SQL statements and can perform complex operations.

    • Functions are reusable code blocks that return a single value and can be used in SQL queries.

    • Stored procedures can be called independently, while functions are typically called with...

  • Answered by AI
  • Q3. What is CLR, Why its used?
  • Ans. 

    CLR stands for Common Language Runtime, it is used to manage the execution of .NET programs.

    • CLR is a part of the .NET framework responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR converts the Intermediate Language (IL) code into machine code during runtime.

    • It allows for language interoperability, meaning different languages can be...

  • Answered by AI
  • Q4. What is GC, where you have used in the app?
  • Ans. 

    GC stands for Garbage Collection, a process in .NET to automatically manage memory by reclaiming unused objects.

    • GC is a feature in .NET that automatically manages memory by reclaiming unused objects.

    • It helps in preventing memory leaks and improving application performance.

    • GC can be used in .NET applications to free up memory occupied by objects that are no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamentals should be strong and in communicating better

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. General questions on ASP.NET, Projects
  • Q2. Questions from my resume and current project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Solid principle
  • Q2. Dependency injection

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

Sdaemon Infotech Interview FAQs

How many rounds are there in Sdaemon Infotech DOT NET Developer interview?
Sdaemon Infotech interview process usually has 2 rounds. The most common rounds in the Sdaemon Infotech interview process are Technical and Coding Test.
How to prepare for Sdaemon Infotech 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 Sdaemon Infotech. The most common topics and skills that interviewers at Sdaemon Infotech expect are ASP.Net MVC, JQuery, Bootstrap, Design Patterns and SQL Server.
What are the top questions asked in Sdaemon Infotech DOT NET Developer interview?

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

  1. If you have static constructor and default constructor, which gets executed fir...read more
  2. If you have class and private variable. Can you use that class in other cla...read more
  3. Select ID,Name from Employee where Salary = { Selelct Max(Salary) from Employee...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Sdaemon Infotech interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Sdaemon Infotech DOT NET Developer Salary
based on 12 salaries
₹1 L/yr - ₹3.8 L/yr
56% less than the average DOT NET Developer Salary in India
View more details

Sdaemon Infotech DOT NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
.Net Developer

Pune

2-4 Yrs

₹ 0.96-2.65 LPA

Dot Net Developer

Pune

1-5 Yrs

Not Disclosed

Explore more jobs
Flutter Developer
14 salaries
unlock blur

₹2.6 L/yr - ₹4.4 L/yr

DOT NET Developer
12 salaries
unlock blur

₹1 L/yr - ₹3.8 L/yr

Software Developer
8 salaries
unlock blur

₹1.2 L/yr - ₹5.5 L/yr

Web Developer
4 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Web Designer
3 salaries
unlock blur

₹0.9 L/yr - ₹1.6 L/yr

Explore more salaries
Compare Sdaemon Infotech with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview