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

Filter interviews by

IDBI Intech Limited Java Developer Interview Questions and Answers

Updated 9 Sep 2023

IDBI Intech Limited Java Developer Interview Experiences

1 interview found

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

Interview questions from similar companies

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
1
Bad
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Five MCQs, 2 moderate-level+1 hard level coding,2 SQL queries.

Round 2 - Assignment 

Hard-level 6 Data structure based questions to write the code.

Round 3 - Technical 

(2 Questions)

  • Q1. Flattenedarray code
  • Q2. Nested array objects to single array.
  • Ans. 

    Convert nested array objects to single array of strings.

    • Iterate through the nested arrays and flatten them into a single array.

    • Use recursion to handle multiple levels of nesting.

    • Example: [["a", "b"], ["c", "d"]] -> ["a", "b", "c", "d"]

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Reverse the list node with head node having multiple values.
  • Ans. 

    Reverse a list node with multiple values in Java.

    • Create a new linked list to store the reversed nodes.

    • Traverse the original list and add each node to the front of the new list.

    • Update the head node of the original list to point to the new list.

  • Answered by AI
  • Q2. Hard-level string question to write the code.
Round 5 - Technical 

(2 Questions)

  • Q1. Advanced Java and database
  • Q2. Advanced Data structures

Skills evaluated in this interview

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. They asked some core Java Concepts,String,Java 8,SpringBoot Architecture,Stream API code
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Sonarqube, different type of code smells, and how its implemented in CI CD
  • Ans. 

    Sonarqube is a static code analysis tool used to detect code smells and bugs in code. It is integrated into CI/CD pipelines for continuous code quality checks.

    • Sonarqube is a static code analysis tool that identifies code smells, bugs, and security vulnerabilities in code.

    • Code smells are common programming issues that may indicate a deeper problem in the code. Examples include duplicated code, long methods, and complex ...

  • Answered by AI
  • Q2. Write a program to find the numbers divisble by 3 in a string - and reverse its indexes eg : - input : String s = "123456789" output String s = "129456783"
  • Ans. 

    Program to find numbers divisible by 3 in a string and reverse their indexes.

    • Iterate through the string and check if each character is a number divisible by 3.

    • Store the divisible numbers in an array and reverse their indexes.

    • Join the array back into a string and return the result.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Junit code writing
Round 2 - HR 

(2 Questions)

  • Q1. Reason for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Desire for professional growth

    • Seeking new challenges

    • Interested in a more dynamic work environment

  • Answered by AI
  • Q2. Past experience

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

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

I applied via Company Website and was interviewed in Mar 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

30 multiple choice questions

Round 2 - Coding Test 

Two coding questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Oops questions like main principles of oops
Round 4 - One-on-one 

(1 Question)

  • Q1. Deep in project
Round 5 - HR 

(1 Question)

  • Q1. Self intro, family background,some hr questions

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited Java Developer interview?
IDBI Intech Limited interview process usually has 3 rounds. The most common rounds in the IDBI Intech Limited interview process are Resume Shortlist, Group Discussion and Technical.
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.

Tell us how to improve this page.

People are getting interviews through

based on 1 IDBI Intech Limited interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Fast track your campus placements

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

IDBI Intech Limited Java Developer Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

4.3

Skill development

4.0

Work-Life balance

3.4

Salary & Benefits

5.0

Job Security

4.4

Company culture

2.7

Promotions/Appraisal

3.7

Work Satisfaction

Explore 5 Reviews and Ratings
Team Lead
164 salaries
unlock blur

₹3.4 L/yr - ₹13.8 L/yr

Customer Service Associate
158 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Customer Service Executive
137 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Senior Project Leader
94 salaries
unlock blur

₹6.9 L/yr - ₹19 L/yr

Project Lead
93 salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Explore more salaries
Compare IDBI Intech Limited with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview