Upload Button Icon Add office photos

Filter interviews by

Religare Senior Software Engineer Interview Questions and Answers

Updated 30 Jul 2024

Religare Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Assignment 

A small project was given to complete in 3 days

Round 2 - Technical 

(2 Questions)

  • Q1. Android components, lifecycle, app architecture related questions were asked
  • Q2. Kotlin, coroutines
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Round 4 - Behavioral 

(1 Question)

  • Q1. Basics knowledge of programming

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is state in react
  • Ans. 

    State in React is a JavaScript object that stores data and determines how a component renders and behaves.

    • State is mutable and can be updated using the setState() method

    • State should be used for data that will change over time and affect the component's rendering

    • State should not be modified directly, use setState() instead

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Data Structure based questions - medium level difficulty
  • Q2. Another DS Algo based ques on Arrays, tree, linkedlist
Round 2 - One-on-one 

(2 Questions)

  • Q1. Core java based ques
  • Q2. Logical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was a coding test consisting of medium level questions

Round 2 - Technical 

(1 Question)

  • Q1. Don't remember the questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Don't remember the questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Circle process related questions
  • Q2. Scripting language questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. L1 technical basic C#
Round 2 - Technical 

(1 Question)

  • Q1. L2 technical basic and advance
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What are OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. What are solid Concept
  • Ans. 

    Solid concepts are fundamental principles or ideas that are well-established and widely accepted in a particular field.

    • Solid concepts provide a strong foundation for further learning and development.

    • They are essential for understanding complex topics and solving problems effectively.

    • Examples of solid concepts in software engineering include object-oriented programming, design patterns, and data structures.

  • Answered by AI
  • Q3. Write Code for Palindrome String
  • Ans. 

    Code to check if a string is a palindrome or not.

    • Iterate through the string from both ends and compare characters.

    • Use two pointers, one starting from the beginning and one from the end.

    • If characters at both pointers are equal, move both pointers towards the center.

    • If characters at any point are not equal, return false.

    • If both pointers meet in the middle, return true as the string is a palindrome.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Don't remember the questions
Round 2 - Technical 

(1 Question)

  • Q1. Don't remember the questions
Round 3 - HR 

(1 Question)

  • Q1. Don't remember the questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to learn about payments and it's processing before giving interview. Also, it's better to clarify small and big things with HR in the beginning itself before joining. Overall it's a good company compared to others.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you ever faced OutOfMemoryError? How did you resolve that?
  • Q2. How you will load text data into DB systems?
  • Ans. 

    Text data can be loaded into DB systems using various methods such as SQL INSERT statements, bulk loading, or ETL processes.

    • Use SQL INSERT statements to insert text data into the database one record at a time.

    • For large datasets, consider using bulk loading techniques like BULK INSERT or LOAD DATA INFILE.

    • ETL (Extract, Transform, Load) processes can be used to extract text data from different sources, transform it as per...

  • Answered by AI

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Q. How to improve SQL performance
  • Ans. 

    Improving SQL performance involves optimizing queries, indexes, and server resources.

    • Optimize queries by reducing complexity and avoiding unnecessary joins

    • Use indexes to speed up data retrieval

    • Ensure server resources are adequate for the workload

    • Consider partitioning large tables to improve query performance

    • Use stored procedures to reduce network traffic and improve security

  • Answered by AI
  • Q2. Q.What is index,Trigger,Stored procedure
  • Ans. 

    Index, trigger, and stored procedure are database objects used to improve performance and automate tasks.

    • An index is a data structure that improves the speed of data retrieval operations on a database table.

    • A trigger is a set of instructions that automatically executes in response to certain events, such as an insert, update, or delete operation on a table.

    • A stored procedure is a precompiled set of SQL statements that ...

  • Answered by AI
  • Q3. Q.Define relationship in sql
  • Ans. 

    Relationship in SQL refers to the association between two or more tables based on common fields.

    • Relationships are established using foreign keys

    • Types of relationships include one-to-one, one-to-many, and many-to-many

    • Relationships can be visualized using ER diagrams

    • Joins are used to retrieve data from related tables

  • Answered by AI
  • Q4. Q.Define Class module in vba
  • Ans. 

    Class module is a custom object in VBA that allows you to define your own properties and methods.

    • Class modules are used to create custom objects in VBA

    • They allow you to define your own properties and methods

    • You can create instances of a class module and use them in your code

    • Class modules are useful for encapsulating complex logic and data

    • They can be used to create reusable code libraries

  • Answered by AI
  • Q5. Q.Objects in ms access
  • Ans. 

    Objects in MS Access are used to represent tables, forms, reports, and other database objects.

    • Objects are used to organize and manage data in MS Access.

    • Tables are the most basic object and store data in rows and columns.

    • Forms are used to display and edit data in a user-friendly way.

    • Reports are used to present data in a formatted and organized way.

    • Queries are used to retrieve and manipulate data from tables.

    • Modules are ...

  • Answered by AI
  • Q6. Q.What is Design view,Datasheet view in ms access
  • Ans. 

    Design view is used to create and modify database objects, while Datasheet view is used to view and edit data in tables.

    • Design view allows users to create and modify tables, queries, forms, reports, and macros.

    • Datasheet view displays data in a spreadsheet-like format and allows users to edit data directly.

    • Design view is used to set properties and define relationships between tables.

    • Datasheet view is used to sort, filte...

  • Answered by AI
  • Q7. Q. Describe joins and types in sql
  • Ans. 

    Joins are used to combine data from two or more tables in SQL. There are different types of joins.

    • Inner join returns only the matching rows from both tables

    • Left join returns all the rows from the left table and matching rows from the right table

    • Right join returns all the rows from the right table and matching rows from the left table

    • Full outer join returns all the rows from both tables

    • Cross join returns the Cartesian p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare practical question for sql

Skills evaluated in this interview

Religare Interview FAQs

How many rounds are there in Religare Senior Software Engineer interview?
Religare interview process usually has 4 rounds. The most common rounds in the Religare interview process are Technical, HR and Behavioral.
What are the top questions asked in Religare Senior Software Engineer interview?

Some of the top questions asked at the Religare Senior Software Engineer interview -

  1. Android components, lifecycle, app architecture related questions were as...read more
  2. Basics knowledge of programm...read more
  3. Kotlin, corouti...read more

Tell us how to improve this page.

Religare Senior Software Engineer Salary
based on 17 salaries
₹9.4 L/yr - ₹19.3 L/yr
13% less than the average Senior Software Engineer Salary in India
View more details

Religare Senior Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

3.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Relationship Manager
186 salaries
unlock blur

₹1.4 L/yr - ₹5.5 L/yr

Deputy Manager
139 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Executive
69 salaries
unlock blur

₹1.8 L/yr - ₹3.9 L/yr

Equity Dealer
66 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Senior Relationship Manager
58 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Explore more salaries
Compare Religare with

ICICI Securities

3.9
Compare

HDFC Securities

3.6
Compare

Kotak Securities

3.6
Compare

Edelweiss

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview