Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Experion Technologies Team. If you also belong to the team, you can get access from here

Experion Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Experion Technologies DOT NET Developer Interview Questions and Answers

Updated 15 Nov 2021

Experion Technologies DOT NET Developer Interview Experiences

1 interview found

I applied via Job Portal and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Difference between Abstract class and Interface .
  • Ans. 

    Abstract class can have implementation while interface cannot. A class can implement multiple interfaces but not abstract classes.

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have non-abstract methods while interface cannot.

    • Abstract class can have access modifiers while interface methods are public by default.

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

  • Answered by AI
  • Q2. SOLID Principles in .Net
  • Ans. 

    SOLID principles are a set of guidelines for writing maintainable and scalable code in .Net.

    • Single Responsibility Principle (SRP) - each class should have only one responsibility

    • Open/Closed Principle (OCP) - classes should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - derived classes should be able to substitute their base classes

    • Interface Segregation Principle (ISP) - clients s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The panel was very friendly and supports us in giving the right answers.
Overall the interview was difficult.

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via AmbitionBox and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Simple discussion
Round 2 - Coding Test 

Any coding test in asp.net for 1 hour duration

Round 3 - Technical 

(1 Question)

  • Q1. Ask some technical questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

There was technical paper test

Round 3 - Technical 

(3 Questions)

  • Q1. Write a query to join two tables using LINQ
  • Ans. 

    Join two tables using LINQ

    • Use the join keyword to combine two tables based on a common field

    • Specify the fields to be joined using the equals keyword

    • Select the desired fields from both tables using the select keyword

  • Answered by AI
  • Q2. On which port .Net runs
  • Ans. 

    The .NET framework does not run on a specific port. It runs on top of the operating system and uses the underlying network protocols.

    • The .NET framework does not have its own port number.

    • It relies on the operating system's network stack to handle network communication.

    • Applications built with .NET can listen on any available port specified by the developer.

    • For example, a web application built with ASP.NET can listen on p

  • Answered by AI
  • Q3. What is WCF throttling
  • Ans. 

    WCF throttling is a mechanism to control the number of concurrent requests and resources used by a WCF service.

    • WCF throttling helps prevent resource exhaustion and performance degradation.

    • Throttling settings can be configured in the WCF service configuration file.

    • Throttling parameters include maximum concurrent calls, sessions, and instances.

    • Examples of throttling settings are maxConcurrentCalls, maxConcurrentSessions,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Job Description and preopare accordingly.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Easy GD points to discuss

Round 2 - Aptitude Test 

Easy if u hv prepared

Round 3 - Technical 

(2 Questions)

  • Q1. Basic on DBMS
  • Q2. SQL questions and code

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quants,verbels based on maths and grammer

Round 2 - Coding Test 

Problem solving - python programming,Java programming

Round 3 - HR 

(1 Question)

  • Q1. Oops logics and types Methods of overloading and overridding Class and object
  • Ans. 

    Overloading and overriding are ways to achieve polymorphism in object-oriented programming. Classes are blueprints for objects.

    • Overloading involves defining multiple methods with the same name but different parameters.

    • Overriding involves redefining a method in a subclass that is already defined in the superclass.

    • Classes are templates for creating objects, while objects are instances of classes.

    • Example: Overloading - ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Based place to experience something new skills and environment
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. They asked questioned on joints
Round 2 - HR 

(1 Question)

  • Q1. Basic question about family and backgroud

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont joint very less pay
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was a screening round where questions where from java springboot and micro services

Round 2 - Technical 

(2 Questions)

  • Q1. What are the java 8 features
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, functional interfaces, and more.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Streams provide a new way to work with collections in a functional style.

    • Functional interfaces enable the use of lambda expressions.

    • Default methods allow interfaces to have method implementations.

    • Method references provide a way to ref...

  • Answered by AI
  • Q2. Why do we need to overide equals and hashcode
  • Ans. 

    To ensure correct behavior when using objects in collections like HashMap or HashSet.

    • Ensures that two objects that are equal have the same hash code.

    • Prevents duplicate objects in collections like HashSet.

    • Allows for correct retrieval of objects from collections like HashMap.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. It was a managerial round so had questions related to it
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations where done on this round

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • DI is a way to achieve loose coupling between objects

    • It helps in creating more testable and maintainable code

    • DI can be implemented using constructor injection, property injection, or method injection

    • Example: Instead of creating a database connection object inside a class, we can inject it from outsi...

  • Answered by AI
  • Q2. What are the Design patterns?
  • Ans. 

    Design patterns are reusable solutions to common software development problems.

    • Design patterns provide proven solutions to recurring problems in software development.

    • They help in creating code that is more flexible, reusable, and maintainable.

    • Some common design patterns include Singleton, Factory, Observer, and Decorator.

    • Design patterns can be categorized into three types: Creational, Structural, and Behavioral.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What are the differences between .Net and .Net Core?
  • Ans. 

    The main difference is that .NET Core is open-source and cross-platform while .NET Framework is Windows-only.

    • Both are used for building Windows applications, but .NET Core can also be used for web and cloud applications.

    • .NET Core has a smaller runtime and can be deployed as a single executable file.

    • .NET Core supports Docker containers and can be used on Linux and macOS.

    • .NET Framework has a larger runtime and requires i...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What is the Expected CTC?
  • Ans. 

    Expected CTC depends on various factors such as experience, skills, location, and company policies.

    • Expected CTC can vary based on the candidate's experience and skills.

    • Location can also play a role in determining the Expected CTC.

    • Company policies and budget can also impact the Expected CTC.

    • It is important to research industry standards and negotiate based on market rates.

    • Providing a specific number may limit negotiatio

  • Answered by AI

Skills evaluated in this interview

Experion Technologies Interview FAQs

How to prepare for Experion Technologies 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 Experion Technologies. The most common topics and skills that interviewers at Experion Technologies expect are Azure, MVC, PDF, .Net Core and Active Directory.
What are the top questions asked in Experion Technologies DOT NET Developer interview?

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

  1. Difference between Abstract class and Interfac...read more
  2. SOLID Principles in ....read more

Tell us how to improve this page.

Software Engineer
154 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
131 salaries
unlock blur

₹5.4 L/yr - ₹17 L/yr

Lead Software Engineer
97 salaries
unlock blur

₹7.1 L/yr - ₹22 L/yr

Technical Lead
60 salaries
unlock blur

₹8.9 L/yr - ₹25 L/yr

Associate Software Engineer
56 salaries
unlock blur

₹3 L/yr - ₹4.6 L/yr

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