Upload Button Icon Add office photos

Filter interviews by

Sdaemon Infotech DOT NET Developer Interview Questions and Answers

Updated 15 Nov 2024

16 Interview questions

A DOT NET Developer was asked 7mo ago
Q. Can a 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 }

A DOT NET Developer was asked 7mo ago
Q. What is an 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

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between Windows application development an ... read more
Q2. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?
A DOT NET Developer was asked 7mo ago
Q. What is a 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.

A DOT NET Developer was asked 7mo ago
Q. What is a 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.

A DOT NET Developer was asked 7mo ago
Q. Write a query to find the ID and name of the employee with the 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

A DOT NET Developer was asked 7mo ago
Q. What is a 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

A DOT NET Developer was asked 7mo ago
Q. 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

Are these interview questions helpful?
A DOT NET Developer was asked 7mo ago
Q. 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.

A DOT NET Developer was asked 7mo ago
Q. 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...

A DOT NET Developer was asked 7mo ago
Q. 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, a...

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

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Sdaemon Infotech?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNoWipro Limited interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice as much as you can
Tip 2 : Coding is key to crack

Application resume tips for other job seekers

Tip 1 : It should look nice
Tip 2 : Skills should be mentioned properly

Final outcome of the interviewRejected

Skills evaluated in this interview

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between Windows application development an ... read more
Q2. How many ways are there to send data to a controller from a View?
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
asked in Infosys
Q5. What kind of database have you used in your projects?

Interview Questionnaire 

3 Questions

  • Q1. Mathematical ,verbal, logical, puzzles, pseudo code
  • Q2. Verbal
  • Q3. Logical

Interview Preparation Tips

Interview preparation tips for other job seekers - Help me for infosys apptitude test interview

I applied via Campus Placement and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Explore your self , add studies,hobbies,short term and long term goals.keep it short and simple.

Interview Questionnaire 

2 Questions

  • Q1. What is software configuration management?
  • Ans. 

    Software configuration management is the process of tracking and controlling changes made to software throughout its lifecycle.

    • It involves version control, build management, and release management.

    • It ensures that changes are made in a controlled and systematic manner.

    • Examples include Git, SVN, and Jenkins.

    • It helps to maintain the integrity and quality of the software.

    • It is essential for collaboration among team members...

  • Answered by AI
  • Q2. What are software requirements?
  • Ans. 

    Software requirements are the functional and non-functional specifications that a software system must meet.

    • Software requirements define what the software should do and how it should behave

    • They include functional requirements (what the software should do) and non-functional requirements (how well it should do it)

    • Requirements are typically documented in a requirements specification document

    • They are used to guide the dev...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 👉 First of all you have a good communication skills,Technical skills
👉 Be Confidential and be prepared
👉 Review common interview questions
👉 And finally End the interview with a good impression

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 2 hours
Round difficulty - Medium

In the 1st round 
Aptitude
Reasoning
English
Automata fix( code debug) 
Timing in morning
Environment is good
Interviewer was very cool and interactive

  • Q1. 

    Encode the Message Problem Statement

    Given a text message, your task is to return the Run-length Encoding of the given message.

    Run-length encoding is a fast and simple method of encoding strings, repres...

  • Ans. 

    Implement a function to encode a text message using run-length encoding.

    • Iterate through the message and count consecutive characters

    • Append the character and its count to the encoded message

    • Handle edge cases like single characters or empty message

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This is interview round 
Ques from basic electronics
C language

  • Q1. 

    Print Name and Age Problem Statement

    Create a class named Person with a string variable 'name' and an integer variable 'age', such that these variables are not accessible outside the class. Implement a me...

  • Ans. 

    Create a class Person with private variables name and age, and methods to set and get their values.

    • Create a class Person with private variables 'name' and 'age'.

    • Implement a method setValue to set the variables' values.

    • Implement a method getValue to print the variables' values.

    • Ensure the name is a non-empty string and the age is a non-negative integer.

    • Encapsulate the data and provide a clear interface for setting and ge...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaCognizant interview preparation:Topics to prepare for the interview - Electronics basics, C language , Data structure, OOPS, ProjectsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do aptitude from indiabix. Go through your basics. At least one language u know. Learn about your branch basics. Know concept of data structure and oops. 
Tip 2 : prepare your final project well. 

Application resume tips for other job seekers

Tip 1 : the skills you know very well mention in resume
Tip 2 : mention project in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Based on programming

Interview Questionnaire 

2 Questions

  • Q1. Hibernate,Java 7,Multithreading
  • Q2. Prepare well on the above topics
Round 1 - Aptitude Test 

HTML

Round 2 - Aptitude Test 

Aptitude and resume shortlist and HTML

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

Interview Preparation Tips

Interview preparation tips for other job seekers - No tips

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, Bootstrap, Design Patterns, JQuery 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.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Sdaemon Infotech DOT NET Developer Salary
based on 15 salaries
₹1.5 L/yr - ₹7.2 L/yr
30% 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

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Dot Net Developer

Pune

1-5 Yrs

Not Disclosed

Explore more jobs
DOT NET Developer
15 salaries
unlock blur

₹1.5 L/yr - ₹7.2 L/yr

Flutter Developer
14 salaries
unlock blur

₹2.6 L/yr - ₹4.4 L/yr

Software Developer
8 salaries
unlock blur

₹1.2 L/yr - ₹5.5 L/yr

Angular Developer
5 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Web Developer
4 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Sdaemon Infotech with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview