Upload Button Icon Add office photos
Engaged Employer

i

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

EbixCash Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

EbixCash Limited DOT NET Developer Interview Questions, Process, and Tips

Updated 14 Nov 2024

Top EbixCash Limited DOT NET Developer Interview Questions and Answers

View all 17 questions

EbixCash Limited DOT NET Developer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is Common Term Expression?
  • Q2. What is Overloading and Overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the parent class.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding is when a subclass provides a specific implementation of a method that is already defined in its parent class.

    • Example o...

  • Answered by AI
  • Q3. Examples of Server side session Management? Types of Session State?
  • Ans. 

    Server side session management involves storing user data on the server to maintain state. Types include in-process, out-of-process, and database.

    • In-process session state: Data stored in memory on the same server as the application.

    • Out-of-process session state: Data stored in a separate server or service, such as a state server or Redis cache.

    • Database session state: Data stored in a database, such as SQL Server or MySQ...

  • Answered by AI
  • Q4. How to Debug Stored Procedures?
  • Ans. 

    Debugging stored procedures involves using tools like SQL Server Management Studio, setting breakpoints, and analyzing query execution.

    • Use SQL Server Management Studio to debug stored procedures

    • Set breakpoints in the stored procedure code to pause execution at specific points

    • Analyze query execution using tools like SQL Profiler to identify issues

    • Use PRINT or SELECT statements to output intermediate results for debuggin...

  • Answered by AI
  • Q5. What is Compile time binding and Runtime Binding?
  • Ans. 

    Compile time binding occurs during compilation while runtime binding occurs during execution.

    • Compile time binding is also known as early binding, where the method to be called is determined at compile time based on the type of the object.

    • Runtime binding is also known as late binding, where the method to be called is determined at runtime based on the actual type of the object.

    • Compile time binding is faster as it is don...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for EbixCash Limited DOT NET Developer interview:
  • C#
  • ASP.Net MVC
  • SQL Server
Interview preparation tips for other job seekers - Prepare well on C# and Asp.Net MVC. For experienced candidates prepare in depth.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(12 Questions)

  • Q1. What is ActionResult and ViewResult?
  • Ans. 

    ActionResult and ViewResult are classes in ASP.NET MVC used to return responses to client requests.

    • ActionResult is a base class for action results in ASP.NET MVC.

    • ViewResult is a type of ActionResult that returns a view to the client.

    • ViewResult inherits from ViewResultBase class.

    • ActionResult can be used to return different types of responses like JSON, File, Redirect, etc.

    • Example: return View();

  • Answered by AI
  • Q2. What is Asp.Net Page Life Cycle?
  • Ans. 

    ASP.NET Page Life Cycle is the series of events that occur from the time a page is requested to the time the page is fully rendered and sent to the client.

    • Page Request: When a page is requested by a user, ASP.NET creates an instance of the page class.

    • Page Initialization: The page's properties are set and controls on the page are initialized.

    • Page Load: The page's controls are loaded with data and events are handled.

    • Post...

  • Answered by AI
  • Q3. Coding Question: Count the number of words "My Name is Nikhil"
  • Ans. 

    Count the number of words 'My Name is Nikhil'

    • Split the sentence into individual words

    • Count the number of words in the sentence

  • Answered by AI
  • Q4. Calculate sum of digits
  • Ans. 

    Calculate sum of digits in a given number

    • Iterate through each digit in the number and add them together

    • Use modulus operator to extract each digit

    • Convert the number to a string to easily access individual digits

  • Answered by AI
  • Q5. What is Static Keyword?
  • Ans. 

    Static keyword is used to declare a member that belongs to the class itself, rather than to instances of the class.

    • Static keyword can be applied to variables, methods, properties, and constructors.

    • Static members are accessed using the class name, not an instance of the class.

    • Static variables retain their values for the entire duration of the program.

    • Static methods can be called without creating an instance of the class...

  • Answered by AI
  • Q6. What is Sealed Classes?
  • Ans. 

    Sealed classes are classes that cannot be inherited or used as a base class.

    • Sealed classes are used to restrict inheritance for security or optimization reasons.

    • They are marked with the 'sealed' keyword.

    • Example: 'sealed class MyClass {}'

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

    Abstract class is a class that cannot be instantiated and may contain abstract methods. Interface is a contract that defines methods that a class must implement.

    • Abstract class can have abstract methods as well as concrete methods.

    • Interface can only have method signatures, no method bodies.

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

    • Example: Abstract class - Animal with abstrac...

  • Answered by AI
  • Q8. What is Inheritance and Types of Inheritance?
  • Ans. 

    Inheritance is a mechanism in OOP where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance, and hybrid inheritance.

    • Example: Class B inheriting from Class A - B is a subclass of A.

  • Answered by AI
  • Q9. How view is created from Model?
  • Ans. 

    A view is created from a model by using a view engine to render the model data into HTML markup.

    • Use a view engine like Razor in ASP.NET to create views from models

    • Pass the model data from the controller to the view using ViewBag or strongly-typed models

    • Use HTML helpers to display model data in the view

  • Answered by AI
  • Q10. What is ViewModel?
  • Ans. 

    ViewModel is a class that is responsible for preparing data to be displayed in a view.

    • ViewModel separates the logic of data preparation from the view itself.

    • It helps in keeping the views lightweight and focused on display.

    • ViewModels are commonly used in MVVM (Model-View-ViewModel) architecture.

    • Example: In an e-commerce website, a ProductViewModel may contain product details for display.

  • Answered by AI
  • Q11. What is ViewBag, ViewData and TempData?
  • Ans. 

    ViewBag, ViewData, and TempData are used to pass data from controller to view in ASP.NET MVC.

    • ViewBag is a dynamic property that allows you to pass data from controller to view.

    • ViewData is a dictionary object that allows you to pass data from controller to view.

    • TempData is a dictionary object that allows you to pass data from one controller action to another.

  • Answered by AI
  • Q12. In your Project, How did you connected your application with Database?
  • Ans. 

    I used Entity Framework to connect the application with the database.

    • Utilized Entity Framework for ORM mapping

    • Configured connection string in the application's configuration file

    • Used LINQ queries to interact with the database

  • Answered by AI
Round 2 - Coding Test 

Create a form with Entity Framework and do crud operation on them.

Interview Preparation Tips

Topics to prepare for EbixCash Limited DOT NET Developer interview:
  • C#
  • ASP.Net MVC
  • MS SQL
Interview preparation tips for other job seekers - Prepare well on basics. Machine test is quite easy.

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. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?

Interview questions from similar companies

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

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

I was interviewed in Mar 2021.

Interview Questionnaire 

1 Question

  • Q1. .net core , mvc basics and some scripting language

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basics , know about your current project . If interviewer asks you if you have to ask anything , do ask . For my case I asked for his advice where I need to improve. He answered genuinely and even came to know about my other technical skills .

Interview Questionnaire 

1 Question

  • Q1. Time management

Interview Questionnaire 

1 Question

  • Q1. Sql joins

Interview Preparation Tips

Interview preparation tips for other job seekers - go to google and search it

Interview Questionnaire 

2 Questions

  • Q1. Python
  • Q2. Webdevelopment

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

Interview Questionnaire 

1 Question

  • Q1. Coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice experience

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 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 Resume tips
Round 2 - HR 

(16 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am looking for a competitive salary that reflects my skills and experience.

    • I am more interested in the overall compensation package, including benefits and growth opportunities.

    • I would like to learn more about the company's salary range for this position.

    • I am confident that we c

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    My family background is diverse and multicultural.

    • My parents are from different countries, which has exposed me to different cultures and perspectives.

    • I have relatives who work in various industries, including technology and healthcare.

    • Growing up, my family encouraged me to pursue my interests in computer science and supported my education in the field.

  • Answered by AI
  • Q3. Share details of your previous job.
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained software applications using Java and Python.

    • Collaborated with a team of developers to design and implement new features.

    • Participated in code reviews and debugging sessions to ensure high-quality code.

    • Worked closely with clients to gather requirements and provide technical support.

    • Implemented unit tests and performed software testing to identify an...

  • Answered by AI
  • Q4. Why should we hire you?
  • Ans. 

    I have a strong background in software development and a proven track record of delivering high-quality projects on time and within budget.

    • I have a deep understanding of various programming languages and frameworks, allowing me to adapt quickly to new technologies.

    • I am highly skilled in problem-solving and troubleshooting, which enables me to identify and resolve issues efficiently.

    • I am a team player and have excellent...

  • Answered by AI
  • Q5. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to enhance my skills and knowledge.

    • Interested in working on cutting-edge technologies and projects.

    • Want to be part of a dynamic and innovative team.

    • Desire to expand my professional network and learn from industry experts.

  • Answered by AI
  • Q6. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and staying updated with new technologies

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q7. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving, attention to detail, teamwork

    • Weaknesses: time management, public speaking

  • Answered by AI
  • Q8. Tell me about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Experienced in Java, C++, and Python

    • Developed a mobile app using React Native

    • Worked on a team to create a web application using Angular

    • Strong problem-solving and analytical skills

  • Answered by AI
  • Q9. Tell me about yourself
  • Ans. 

    I am a software developer with experience in web development and a passion for problem-solving.

    • Experienced in web development using HTML, CSS, and JavaScript

    • Proficient in programming languages such as Java and Python

    • Familiar with frameworks like React and Angular

    • Strong problem-solving and analytical skills

    • Excellent teamwork and communication abilities

  • Answered by AI
  • Q10. What are your strength and weakness
  • Ans. 

    My strength is problem-solving and my weakness is sometimes overthinking.

    • Strength: Problem-solving

    • Weakness: Overthinking

  • Answered by AI
  • Q11. Where do you see yourself in 5 year's
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q12. Why are you looking for a change
  • Ans. 

    Seeking new opportunities for professional growth and challenges.

    • Looking for a more challenging role

    • Want to expand my skill set

    • Seeking better career prospects

    • Interested in working with new technologies

    • Want to work in a more collaborative environment

  • Answered by AI
  • Q13. I think I am very flexible and adaptive to learning new things
  • Q14. Share your details for your previous job
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained web applications using Java and Spring framework

    • Collaborated with cross-functional teams to gather requirements and design solutions

    • Implemented unit tests and performed code reviews to ensure code quality

    • Participated in Agile development process and attended daily stand-up meetings

    • Troubleshooted and resolved software defects reported by users

  • Answered by AI
  • Q15. What is your family background
  • Ans. 

    My family background is diverse and multicultural, with members from different professions and cultural backgrounds.

    • My father is a doctor and my mother is a teacher.

    • I have two siblings, one is an engineer and the other is a lawyer.

    • We celebrate various cultural festivals and traditions together.

    • My family values education and encourages continuous learning.

  • Answered by AI
  • Q16. What are your salary expectations
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am looking for a fair and competitive salary based on my skills and experience.

    • I am more interested in the overall compensation package, including benefits and growth opportunities.

    • I am confident that we can come to a mutually beneficial agreement.

  • Answered by AI
Round 3 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Good morning sir/ mam..
I'm from Vinukonda
I'm ready to the interview
Contribute & help others!
anonymous
You can choose to be anonymous

EbixCash Limited Interview FAQs

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

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

  1. In your Project, How did you connected your application with Databa...read more
  2. What is Compile time binding and Runtime Bindi...read more
  3. What is Inheritance and Types of Inheritan...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

CAMPUS PLACEMENT

Indian Institute of Technology (IIT), Kharagpur

CAMPUS PLACEMENT

National Institute of Technology, Surathkal

CAMPUS PLACEMENT

Indian Institute of Technology (IIT), Chennai

INTERVIEWS

EbixCash Limited

No Interviews

INTERVIEWS

EbixCash Limited

No Interviews

INTERVIEWS

EbixCash Limited

No Interviews

INTERVIEWS

EbixCash Limited

No Interviews

SALARIES

EbixCash Limited

Tell us how to improve this page.

EbixCash Limited DOT NET Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Fast track your campus placements

View all
EbixCash Limited DOT NET Developer Salary
based on 4 salaries
₹4.6 L/yr - ₹8 L/yr
15% more than the average DOT NET Developer Salary in India
View more details
Software Engineer
188 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
173 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
151 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Analyst
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior System Analyst
137 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

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