i
EbixCash Limited
Filter interviews by
I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.
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();
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...
Count the number of words 'My Name is Nikhil'
Split the sentence into individual words
Count the number of words in the sentence
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
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...
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 {}'
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...
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.
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
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.
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.
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
Create a form with Entity Framework and do crud operation on them.
IT hardware refers to physical components of a computer system, such as the motherboard, CPU, RAM, and hard drive.
IT hardware includes components like motherboards, CPUs, RAM, and hard drives.
It also encompasses peripherals like monitors, keyboards, and printers.
Understanding IT hardware is essential for troubleshooting and maintaining computer systems.
Examples of IT hardware brands include Intel, AMD, Samsung, and Wes
Material management involves planning, organizing, and controlling the flow of materials from acquisition to consumption.
Involves procurement, storage, and distribution of materials
Focuses on optimizing inventory levels to meet demand
Includes forecasting, inventory control, and supplier management
Ensures efficient use of resources and cost-effective operations
IT hardware refers to physical components of a computer system, such as the motherboard, CPU, RAM, and hard drive.
IT hardware includes components like motherboards, CPUs, RAM, hard drives, and graphics cards.
Understanding IT hardware is essential for troubleshooting computer issues and upgrading systems.
Examples of IT hardware brands include Intel, AMD, NVIDIA, and Western Digital.
Material management involves planning, organizing, and controlling the flow of materials from acquisition to use or disposal.
Involves procurement, storage, and distribution of materials
Ensures efficient use of resources and cost-effective operations
Includes inventory management and supply chain optimization
Focuses on reducing waste and improving productivity
Examples: Just-in-time inventory system, ABC analysis for inve
I am a dedicated and hardworking individual with a strong attention to detail.
Graduated with a degree in Business Administration
Previous experience in customer service
Proficient in Microsoft Office Suite
Strong communication skills
Ability to work well in a team
I am a dedicated and detail-oriented individual with strong communication skills and a proven track record of meeting deadlines.
I have experience in handling non-voice processes efficiently
I am a quick learner and can adapt to new processes easily
I have excellent communication skills which are essential for this role
I am detail-oriented and can ensure accuracy in my work
I am a team player and can collaborate effectivel
My goal is to excel in my role as a Non Voice Process Associate, continuously learn and grow professionally, and contribute positively to the team and organization.
To consistently meet and exceed performance targets set by the company
To enhance my skills and knowledge through training and development opportunities
To build strong relationships with colleagues and clients for effective teamwork
To actively seek feedback a...
I applied via Naukri.com
I constructed two programs in C#.
EbixCash Limited interview questions for popular designations
I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.
01. what activities do you like to do when you travel ?
02. Do you ever travel for business ? would you like to?
03. Hw to handle corporate Group ?
and more
Tieming :- 11 AM
A formula is an expression that performs calculations on values in a cell, while a function is a predefined formula that performs specific calculations.
Formulas are user-created expressions, while functions are built-in formulas provided by Excel.
Functions have specific names and syntax, such as SUM(), AVERAGE(), IF(), etc.
Formulas can be simple or complex, combining operators, cell references, and values.
Functions are...
Freezing panes in Excel allows you to keep certain rows or columns visible while scrolling through a large spreadsheet.
Go to the View tab on the Excel ribbon
Click on the Freeze Panes option
Select either Freeze Top Row, Freeze First Column, or Freeze Panes to freeze specific rows or columns
To unfreeze panes, go back to the Freeze Panes option and select Unfreeze Panes
Get interview-ready with Top EbixCash Limited Interview Questions
I was interviewed in Aug 2024.
4 questions of coding, level - easy and medium
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.
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...
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...
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...
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...
I was interviewed in Nov 2024.
Top trending discussions
The duration of EbixCash Limited interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 112 interviews
Interview experience
based on 1k reviews
Rating in categories
Software Engineer
188
salaries
| â‚ą0 L/yr - â‚ą0 L/yr |
Network Engineer
173
salaries
| â‚ą0 L/yr - â‚ą0 L/yr |
Software Developer
151
salaries
| â‚ą0 L/yr - â‚ą0 L/yr |
System Analyst
143
salaries
| â‚ą0 L/yr - â‚ą0 L/yr |
Senior System Analyst
137
salaries
| â‚ą0 L/yr - â‚ą0 L/yr |
TCS
Infosys
Wipro
HCLTech