Upload Button Icon Add office photos
Engaged Employer

i

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

IDBI Intech Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IDBI Intech Limited Finacle Developer Interview Questions and Answers

Updated 30 Apr 2024

IDBI Intech Limited Finacle Developer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to find errors in product menus ?
  • Ans. 

    Errors in product menus can be found by checking for inconsistencies, missing links, incorrect labels, and broken functionalities.

    • Check for inconsistencies in menu items across different pages or sections

    • Look for missing links or buttons that do not lead to the intended destination

    • Verify the correctness of labels and descriptions for each menu item

    • Test the functionality of each menu option to ensure they work as expect

  • Answered by AI
  • Q2. Please tell the procedure of custom menu creation?
  • Ans. 

    Custom menu creation in Finacle involves defining menu options, assigning access rights, and linking them to specific functions.

    • Define menu options using the Menu Maintenance screen

    • Assign access rights to users or user groups

    • Link menu options to specific functions or screens

    • Test the custom menu to ensure it functions as intended

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Some basic questions of sql and FINACLE related tables.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic java concepts like collection frame work, exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics well, be confident, show you are flexible enough to learn

I applied via Company Website

Interview Questionnaire 

1 Question

  • Q1. Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1 . Oops concept in detail 2 DBMS 3. Data base query
Round 2 - HR 

(1 Question)

  • Q1. Document verification

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers should be clear on basic concepts.
For experienced should be detailed knowledge on their domain.

I applied via Campus Placement and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is encapsulation ?
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation helps in achieving data abstraction and information hiding.

    • It allows for better control over data and prevents unauthorized access.

    • In Java, encapsulation is achieved through the use of access modifiers such as private, public, and protected.

    • For example, a class may have private variables that c...

  • Answered by AI
  • Q2. What is the meaning of string.
  • Ans. 

    A string is a sequence of characters used to represent text in programming.

    • Strings are often used for storing and manipulating text data.

    • In Java, strings are represented by the String class.

    • Strings can be concatenated using the + operator.

    • Strings are immutable, meaning they cannot be changed once created.

    • Examples of string literals include "hello world" and "42".

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do not tell about salary expectations

Skills evaluated in this interview

I was interviewed in Jul 2017.

Interview Questionnaire 

6 Questions

  • Q1. What is autoboxing and unboxing
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing is useful when working with collections that require objects instead of primitives.

    • Example: int i = 5; Integer j = i; //autoboxing

    • Unboxing is the opposite of autoboxing, where an object of a wrapper class is converted back to its corresponding primitive type.

    • Example: Integer j = 5; int i = j; //unboxi

  • Answered by AI
  • Q2. What is typecasting UP AND DOWN
  • Ans. 

    Typecasting up and down refers to converting a variable of one data type to another data type of higher or lower precision.

    • Typecasting up involves converting a variable of lower precision to a variable of higher precision, such as converting an int to a double.

    • Typecasting down involves converting a variable of higher precision to a variable of lower precision, such as converting a double to an int.

    • Typecasting can resul...

  • Answered by AI
  • Q3. How do you iterate map
  • Ans. 

    To iterate a map in Java, use a for-each loop or an iterator.

    • Use the entrySet() method to get a set of key-value pairs

    • For-each loop: for(Map.Entry entry : map.entrySet())

    • Iterator: Iterator> iterator = map.entrySet().iterator();

    • Use hasNext() and next() methods to iterate through the map

  • Answered by AI
  • Q4. Types of synchronisation in java
  • Ans. 

    Types of synchronization in Java

    • Synchronized methods

    • Synchronized statements

    • ReentrantLock

    • Semaphore

    • CountDownLatch

  • Answered by AI
  • Q5. Access modifiers in method overriding
  • Ans. 

    Access modifiers in method overriding

    • Access modifiers in the overriding method cannot be more restrictive than the overridden method

    • The access modifier can be less restrictive or the same as the overridden method

    • Private methods cannot be overridden

    • Examples: public method can be overridden by public or protected method, but not by private method

  • Answered by AI
  • Q6. Covarient return type

Skills evaluated in this interview

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Technical Interview
Experience: They asked java basics,
what we wrote in resume will ask
about project
Tips: please prepare basics things

Interview Preparation Tips

Round: Test
Experience: I almost sove 130 question
Duration: 2 hours
Total Questions: 150

Round: Group Discussion
Experience: Problem Solving Algorithms
Duration: 3 hours

I applied via Naukri.com and was interviewed in Aug 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1.Core java 2.Spring 3. Hibernate 4. Spring Boot 5. SQL 6. AngularJS
  • Ans. 

    The question is asking about the candidate's knowledge in Core Java, Spring, Hibernate, Spring Boot, SQL, and AngularJS.

    • Core Java is the foundation of Java programming language.

    • Spring is a popular framework for building Java applications.

    • Hibernate is an ORM tool used for mapping Java objects to database tables.

    • Spring Boot is a framework for building microservices.

    • SQL is a language used for managing relational databases...

  • Answered by AI
  • Q2. 1. How to connect 2 DBs from spring boot application
  • Ans. 

    To connect 2 DBs from a Spring Boot application, configure multiple data sources and use JdbcTemplate or EntityManager for each DB.

    • Configure multiple data sources in the application.properties file

    • Create separate configuration classes for each data source

    • Use JdbcTemplate or EntityManager to interact with each DB

    • Specify the appropriate data source in the repository or service classes

  • Answered by AI
  • Q3. 2. Difference between abstract method implementation and default method
  • Ans. 

    Abstract method implementation is mandatory while default method is optional.

    • Abstract method has no implementation in the abstract class and must be implemented by the subclass.

    • Default method has a default implementation in the interface and can be overridden by the implementing class.

    • Abstract method is used to enforce a contract while default method is used to provide a default behavior.

    • Example: abstract method - publ...

  • Answered by AI
  • Q4. 1. About salary and expectation

Interview Preparation Tips

Round: Test
Experience: Technical written test

General Tips: Terrible interview. HR told to give 11% hike with 6% variable and 5% fixed. I kicked off the company.
Skills: Web Technologies, Java Application Development
Duration: 1-4 weeks

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 7 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What java
  • Ans. 

    Java is a high-level, object-oriented programming language used to develop applications for various platforms.

    • Java is platform-independent and can run on any platform with a JVM.

    • It is used for developing web, mobile, desktop, and enterprise applications.

    • Java has a vast library of pre-built classes and APIs.

    • It supports multithreading, exception handling, and garbage collection.

    • Java is widely used in the industry for its...

  • Answered by AI
  • Q2. Why java
  • Ans. 

    Java is a popular, versatile, and reliable programming language used for developing a wide range of applications.

    • Java is platform-independent, making it easy to write code once and run it on multiple platforms.

    • It has a vast library of pre-built classes and APIs, making development faster and easier.

    • Java is highly secure and provides built-in features for encryption and authentication.

    • It is widely used in enterprise app...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

Skills evaluated in this interview

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited Finacle Developer interview?
IDBI Intech Limited interview process usually has 1 rounds. The most common rounds in the IDBI Intech Limited interview process are Technical.
How to prepare for IDBI Intech Limited Finacle 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 IDBI Intech Limited. The most common topics and skills that interviewers at IDBI Intech Limited expect are Finacle, CRM, API, Core Banking Solution and Database.
What are the top questions asked in IDBI Intech Limited Finacle Developer interview?

Some of the top questions asked at the IDBI Intech Limited Finacle Developer interview -

  1. How to find errors in product menu...read more
  2. Please tell the procedure of custom menu creati...read more

Tell us how to improve this page.

IDBI Intech Limited Finacle Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
TCS iON Interview Questions
3.9
 • 366 Interviews
View all

Fast track your campus placements

View all
IDBI Intech Limited Finacle Developer Salary
based on 13 salaries
₹3 L/yr - ₹6.5 L/yr
34% less than the average Finacle Developer Salary in India
View more details

IDBI Intech Limited Finacle Developer Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

3.2

Salary

4.2

Job security

4.2

Company culture

2.8

Promotions

4.2

Work satisfaction

Explore 3 Reviews and Ratings
Team Lead
171 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Service Associate
152 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Service Executive
140 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Team Leader
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
97 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IDBI Intech Limited with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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