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
3.5

based on 458 Reviews

Filter interviews by

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

Updated 16 Jan 2025

Top IDBI Intech Limited Java Developer Interview Questions and Answers

IDBI Intech Limited Java Developer Interview Experiences

2 interviews found

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.
  • Q2. Why we Encryption decryption in java Springboot.
  • Q3. Repeated characters in a given String using Java 8.

Interview Preparation Tips

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

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

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 LTIMindtree
Q3. Longest Harmonious Subsequence Problem Statement Determine the lo ... 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

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Implement a custom stack that allows fetching the minimum element in constant time, O(1).
  • Q2. How can one create an immutable class named Employee with fields for name and hobbies defined as List?
  • Q3. What changes are required in the Employee class to use it as a key for a HashMap?
  • Q4. What is the implementation of the singleton design pattern?
  • Q5. Different ways to create a thread
  • Q6. What are the SOLID principles in software design, and can you provide examples for each?
Round 2 - Technical 

(5 Questions)

  • Q1. What is the concept of Object-Oriented Programming (OOP) and can you provide an example?
  • Q2. How do threads communicate with each other in Java?
  • Q3. Write a program to reverse a linked list.
  • Q4. What is the difference between string literals and the string pool?
  • Q5. What is the program to print the 90-degree rotated view of a 2D array?

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental aspects of Java and Spring Boot.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Spring Boot
  • Q2. What is Redux in React
  • Q3. What is Context API in React
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between Hashset and Treeset
  • Q2. Final Finally and finalize difference
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration is 1 hr and topic is core java

Round 2 - HR 

(2 Questions)

  • Q1. What i sth OOPS
  • Q2. What i s abstract class

Java Developer Interview Questions & Answers

Incedo user image Nithin Krishna

posted on 31 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between ArrayList and LinkedList?
  • Ans. 

    ArrayList is implemented as a resizable array, while LinkedList is implemented as a doubly linked list.

    • ArrayList provides fast random access, LinkedList provides fast insertion and deletion.

    • ArrayList uses more memory as it needs to allocate a fixed size array, LinkedList uses more memory for storing references to the next and previous elements.

    • Example: ArrayList is better for scenarios where random access is required, ...

  • Answered by AI
  • Q2. Difference between HashMap and HashTable?
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is faster than HashTable as it is non-synchronized, but HashTable is preferred in multi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Micro service disadvantage
  • Ans. 

    Microservices can introduce complexity, communication overhead, and potential performance issues.

    • Increased complexity due to managing multiple services

    • Communication overhead between services

    • Potential performance issues due to network latency

    • Difficulty in maintaining consistency across services

  • Answered by AI
  • Q2. @functionalinterface can we extend or not, map & flatmap
  • Ans. 

    No, @FunctionalInterface cannot be extended. Map and flatMap are default methods in the interface and cannot be overridden.

    • No, @FunctionalInterface cannot be extended as it is a single abstract method interface.

    • Map and flatMap are default methods in the interface and cannot be overridden.

    • Example: public interface MyInterface { void myMethod(); default void myDefaultMethod() { // implementation } }

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java8 coding to filter the vowels
  • Ans. 

    Using Java8 to filter vowels from an array of strings

    • Use Java8 stream and filter to iterate through each string in the array

    • Use a lambda expression to check if each character is a vowel

    • Collect the filtered strings into a new array

  • Answered by AI
  • Q2. Java8, Multi Threading, Hibernate, JPA

Skills evaluated in this interview

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

Tell us how to improve this page.

IDBI Intech Limited Java Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Fast track your campus placements

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

IDBI Intech Limited Java Developer Reviews and Ratings

based on 4 reviews

3.9/5

Rating in categories

4.1

Skill development

3.7

Work-life balance

2.9

Salary

5.0

Job security

4.2

Company culture

2.0

Promotions

3.4

Work satisfaction

Explore 4 Reviews and Ratings
Team Lead
169 salaries
unlock blur

₹3.4 L/yr - ₹13.6 L/yr

Customer Service Associate
153 salaries
unlock blur

₹1 L/yr - ₹3.3 L/yr

Customer Service Executive
141 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Senior Executive
93 salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Senior Team Leader
93 salaries
unlock blur

₹5.5 L/yr - ₹20 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