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

Clear (1)

IDBI Intech Limited Java Developer Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top IDBI Intech Limited Java Developer Interview Questions and Answers

IDBI Intech Limited Java Developer Interview Experiences

3 interviews found

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

I was interviewed before Mar 2024.

Round 1 - Aptitude Test 

Question on debugging and troubleshooting

Round 2 - Technical 

(5 Questions)

  • Q1. What is finalize keyword
  • Q2. How you handle run time exception
  • Q3. Explain flow of spring boot
  • Q4. What is autowired
  • Q5. How to handle multiple schema in jdbc

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared basic knowledge on spring and java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Walk-in

Round 1 - Technical 

(3 Questions)

  • Q1. 2nd highest salary of employee using Java 8.
  • Ans. 

    Using Java 8, find the 2nd highest salary of employees.

    • Sort the salaries in descending order using Comparator

    • Skip the first highest salary to get the second highest

    • Handle edge cases like if there are less than 2 salaries

  • Answered by AI
  • Q2. Why we Encryption decryption in java Springboot.
  • Ans. 

    Encryption and decryption in Java Springboot ensures data security and confidentiality.

    • Protects sensitive data from unauthorized access

    • Meets compliance requirements for data protection

    • Secures communication between client and server

    • Examples: encrypting passwords, securing API endpoints

  • Answered by AI
  • Q3. Repeated characters in a given String using Java 8.
  • Ans. 

    Using Java 8, we can find repeated characters in a given String.

    • Use streams and collectors to group characters by count

    • Filter out characters with count greater than 1

    • Collect the repeated characters into an array of strings

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for scenario based questions in respective technology.

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Java Developer Interview Questions & Answers

user image sarang jadhav

posted on 9 Sep 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. 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 - Group Discussion 

ChatGPT is the topic of group discussion and this interview scheduled by CDAC mumbai

Round 3 - Technical 

(1 Question)

  • Q1. What is spring boot I which file we give database connection
  • Ans. 

    Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

    • Spring Boot is used to create stand-alone, production-grade Spring-based Applications.

    • Database connection details are typically provided in the application.properties or application.yml file.

    • Example: spring.datasource.url=jdbc:mysql://localhost:3306/mydatabase

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do things more on project like annotations

Skills evaluated in this interview

Interview questions from similar companies

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 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 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

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 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

Interview Questionnaire 

1 Question

  • Q1. Abstraction

I applied via LinkedIn and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic and advanced concepts of java programming with spring fremwork
  • Q2. Construct chaining

Interview Preparation Tips

Interview preparation tips for other job seekers - You must know basic bor advance concept of your core field in which you have.you must share about your previous employment specific role correctly and you should keep true role and responsibilities interviews always look inosent condidate.
Contribute & help others!
anonymous
You can choose to be anonymous

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited Java Developer interview?
IDBI Intech Limited interview process usually has 2 rounds. The most common rounds in the IDBI Intech Limited interview process are Technical, Resume Shortlist and Group Discussion.
How to prepare for IDBI Intech Limited Java 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 Spring Boot, JSP, Core Java, Hibernate and JDBC.
What are the top questions asked in IDBI Intech Limited Java Developer interview?

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

  1. What is spring boot I which file we give database connect...read more
  2. Why we Encryption decryption in java Springbo...read more
  3. Repeated characters in a given String using Java...read more

Recently Viewed

INTERVIEWS

Jio Platforms

No Interviews

SALARIES

IDBI Intech Limited

INTERVIEWS

WNS

No Interviews

INTERVIEWS

IDBI Intech Limited

No Interviews

SALARIES

IDBI Intech Limited

INTERVIEWS

EXFO

No Interviews

INTERVIEWS

WNS

No Interviews

INTERVIEWS

IDBI Intech Limited

20 top interview questions

INTERVIEWS

AB InBev India

50 top interview questions

INTERVIEWS

WNS

No Interviews

Tell us how to improve this page.

IDBI Intech Limited Java Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Fast track your campus placements

View all
IDBI Intech Limited Java Developer Salary
based on 48 salaries
₹2.4 L/yr - ₹6.7 L/yr
17% less than the average Java Developer Salary in India
View more details

IDBI Intech Limited Java Developer Reviews and Ratings

based on 5 reviews

3.7/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

2.7

Salary

4.7

Job security

4.0

Company culture

1.8

Promotions

3.1

Work satisfaction

Explore 5 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