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 Customer Care Executive Interview Questions and Answers

Updated 19 Feb 2023

IDBI Intech Limited Customer Care Executive Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Feb 2022. There were 4 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 - Aptitude Test 

Basic grammar test and nothing more

Round 3 - HR 

(1 Question)

  • Q1. Myself and previous experience
Round 4 - One-on-one 

(1 Question)

  • Q1. One on one team leader round

Interview Preparation Tips

Interview preparation tips for other job seekers - Best job for freshers, Great TL with great location and travel convenient

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

General questions , maths ,GI, basic networking

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Take me through your resume
  • Q2. Situation that has been in your work where you had to reduce expenses in a kpi and how u overcome it
Round 2 - One-on-one 

(2 Questions)

  • Q1. How will you forecast expenses for the company
  • Ans. 

    I will forecast expenses by analyzing historical data, market trends, and budget projections.

    • Analyze historical data to identify patterns and trends in expenses

    • Consider market trends and economic indicators that may impact expenses

    • Collaborate with department heads to gather budget projections and forecasts

    • Use financial modeling techniques to predict future expenses based on various scenarios

    • Regularly review and adjust

  • Answered by AI
  • Q2. Take me thru major financial statements and their interconnecting areas
  • Ans. 

    Major financial statements include income statement, balance sheet, and cash flow statement, which are interconnected through net income and retained earnings.

    • Income statement shows revenues and expenses, resulting in net income.

    • Balance sheet displays assets, liabilities, and equity, with net income affecting retained earnings.

    • Cash flow statement details cash inflows and outflows, reconciling with changes in cash on th...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to switch?
  • Q2. What made u choose to apply for the company
  • Ans. 

    I applied to the company because of its strong reputation in the industry and its commitment to innovation and employee development.

    • Reputation of the company in the industry

    • Commitment to innovation

    • Opportunities for employee development

  • Answered by AI

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to the technical queries based on the profile and project required skill set

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at the technical point of view and project management with time line delivery as they have client facing interviews and one has to visit client side for work.

Interview Questionnaire 

1 Question

  • Q1. This interview wada technical one but was majorly a stress test the interviewer wanted to test both my knowledge and communication skills

I applied via Approached by Company and was interviewed before Nov 2021. 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 - Technical 

(2 Questions)

  • Q1. Java 8 spring boot question
  • Q2. Problem solving in java 8
Round 3 - Technical 

(2 Questions)

  • Q1. Based on the project you worked on
  • Q2. Problem solving in java and ds

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good interview experience and interviewer is friendly and help us to know which we lack

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

Round 1 - Aptitude Test 

Question related to dilr, aptitude were asked.

Round 2 - Coding Test 

Easy level questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level aptitude questions were asked. Easy level coding questions were asked.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Remove duplicates from the list
  • Ans. 

    Remove duplicates from an array of strings

    • Create a new set to store unique values

    • Iterate through the array and add each element to the set

    • Convert the set back to an array to remove duplicates

  • Answered by AI
  • Q2. Inheritance related theoretical

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 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 - One-on-one 

(8 Questions)

  • Q1. Explain OOPs concepts.
  • Ans. 

    OOPs concepts are fundamental principles of object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes by inheriting properties and behaviors from existing classes.

    • Polymorphism: Ability of an object to take on many forms.

    • Abstraction: Hiding complex implementation details and providing a simplified ...

  • Answered by AI
  • Q2. Write a program to count occurance the letter in a string.
  • Ans. 

    This program counts the occurrence of each letter in a given string.

    • Use a HashMap to store the count of each letter.

    • Iterate through the characters of the string and update the count in the HashMap.

    • Finally, print the count of each letter.

  • Answered by AI
  • Q3. Write a SQL query to find third highest salary from employee table.
  • Ans. 

    SQL query to find third highest salary from employee table.

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to limit the result to the third row

    • Use a subquery to exclude the highest and second highest salaries

  • Answered by AI
  • Q4. Difference between Array and arraylist.
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array has a fixed length, while ArrayList can grow dynamically.

    • Array can store both primitive types and objects, while ArrayList can only store objects.

    • Array uses square brackets [] for declaration, while ArrayList uses angle brackets <>.

    • Array provides direct access to elements using index, while ArrayList provides metho...

  • Answered by AI
  • Q5. Explain working of Arraylist.
  • Ans. 

    ArrayList is a dynamic array that can grow or shrink in size. It stores objects and provides methods for adding, removing, and accessing elements.

    • ArrayList is part of the Java Collections Framework.

    • It is implemented as a resizable array.

    • Elements can be added using the add() method.

    • Elements can be accessed using the get() method.

    • Elements can be removed using the remove() method.

    • The size() method returns the number of el...

  • Answered by AI
  • Q6. What is the default size of an arraylist.
  • Ans. 

    The default size of an ArrayList is 10.

    • The default initial capacity of an ArrayList is 10.

    • If the number of elements exceeds the initial capacity, the ArrayList automatically increases its size.

    • The capacity of an ArrayList can be increased manually using the ensureCapacity() method.

  • Answered by AI
  • Q7. Some questions from my resume about my previous experience.
  • Q8. The interviewer was stupid and in my opinion they are just wasting your precious time. After the interview they don't provide any updates about the interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study core Java in depth and some famous SQL questions.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8, stream api, spring boot
Round 2 - Technical 

(1 Question)

  • Q1. Java 8 ,stream api , Microservice, spring boot ,
Round 3 - Technical 

(1 Question)

  • Q1. Stream api program,duplicate character find in given string how many way you can solve this problem, puzzles 25 horses
Round 4 - Behavioral 

(1 Question)

  • Q1. How to improve performance issue your application,How to find proformance problem in system, How to join us
  • Ans. 

    To improve performance in an application, identify performance problems and join our team.

    • Analyze application code and identify bottlenecks

    • Use profiling tools to measure performance

    • Optimize database queries and improve indexing

    • Implement caching mechanisms

    • Upgrade hardware or infrastructure if necessary

    • Join our team to collaborate on performance improvements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I declined to proceed with the HR round as the offered salary didn't meet my expectations.

Skills evaluated in this interview

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited Customer Care Executive interview?
IDBI Intech Limited interview process usually has 4 rounds. The most common rounds in the IDBI Intech Limited interview process are Resume Shortlist, Aptitude Test and HR.

Tell us how to improve this page.

IDBI Intech Limited Customer Care Executive Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 371 Interviews
ITC Infotech Interview Questions
3.6
 • 342 Interviews
CitiusTech Interview Questions
3.3
 • 278 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
Indium Software Interview Questions
4.1
 • 187 Interviews
View all

Fast track your campus placements

View all
IDBI Intech Limited Customer Care Executive Salary
based on 47 salaries
₹1.2 L/yr - ₹2.5 L/yr
27% less than the average Customer Care Executive Salary in India
View more details

IDBI Intech Limited Customer Care Executive Reviews and Ratings

based on 10 reviews

3.3/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

2.9

Salary

3.3

Job security

3.0

Company culture

2.7

Promotions

3.6

Work satisfaction

Explore 10 Reviews and Ratings
Team Lead
171 salaries
unlock blur

₹3.5 L/yr - ₹14.7 L/yr

Customer Service Associate
155 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Customer Service Executive
142 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Senior Team Leader
117 salaries
unlock blur

₹5.2 L/yr - ₹21 L/yr

Senior Executive
97 salaries
unlock blur

₹2 L/yr - ₹8.7 L/yr

Explore more salaries
Compare IDBI Intech Limited with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

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