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 Team Lead Operations Interview Questions and Answers for Experienced

Updated 22 Jun 2024

IDBI Intech Limited Team Lead Operations Interview Experiences for Experienced

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About your resume
  • Q2. About your work
Round 2 - One-on-one 

(2 Questions)

  • Q1. Normal transaction
  • Q2. Normal question

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not join no job security hr is a puppet of Abhishek Verma avp he directly called any of employees and harassed him/her toxic work culture if you talk about their system weakness they are playing with you that you are blaming very bad company or insecure avp please dont join company also 2 yr bond once you signed the bond you stuck your life is in tension I am also stuck

Interview questions from similar companies

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.

I applied via Recruitment Consulltant and was interviewed in Sep 2022. 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 - Technical 

(2 Questions)

  • Q1. What's Inheritance. Classify it's types
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • Types of inheritance: Single, Multiple, Multilevel, Hierarchical, Hybrid.

    • Example: A class 'Car' can inherit from a class 'Vehicle' which has properties like 'speed', 'fuel type', etc.

  • Answered by AI
  • Q2. What do understand by encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and restricting access to an object's data and methods.

    • Encapsulation helps in achieving data abstraction and security.

    • It allows for better control over the data and prevents accidental modification.

    • It also enables easy modification of implementation details without affecting the rest of the code.

    • For example, a class can have private variables and public meth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The most funny part about interview is that interviewer will ask you questions by searching it on Google. He/She himself doesn't know the answers. Ask him/her to turn on the camera and then see he/she will deny.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell me about your current role and responsibilities
  • Ans. 

    I am currently working as a Senior Software Engineer, leading a team of developers in designing and implementing software solutions.

    • Leading a team of developers in designing and implementing software solutions

    • Collaborating with stakeholders to gather requirements and define project scope

    • Mentoring junior team members and providing technical guidance

    • Conducting code reviews and ensuring code quality and best practices are

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 Questions were asked
  • Q2. Explain stream api and lambda expression
  • Ans. 

    Stream API is a set of classes in Java that allow processing collections of objects in a functional style. Lambda expressions are used to write concise code for functional interfaces.

    • Stream API provides a way to perform operations on collections like filter, map, reduce, etc.

    • Lambda expressions are used to define anonymous functions in a concise way.

    • Example: List<String> names = Arrays.asList("Alice", "Bob", "Char...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is the salary expected
  • Ans. 

    Salary expectations are based on experience, skills, location, and company size.

    • Consider factors like years of experience, specialized skills, industry demand, and cost of living in the area.

    • Research average salaries for Java Developers in your location and industry.

    • Be prepared to negotiate based on the job responsibilities and benefits offered.

    • Provide a salary range rather than a specific number to allow for negotiati

  • Answered by AI
  • Q2. Ho soon you can join

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. General .net core, oops, sql, caching, authentication, security, angular.

Interview Preparation Tips

Topics to prepare for NeoSOFT Team Lead interview:
  • .Net Core
  • Angular
  • Microservices
  • cqrs
  • JWT
Interview preparation tips for other job seekers - Basics should be clear and confidence level should be high
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Campus Placement and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

The first round includes 3 sections as follows:
1) Aptitude (Quantitative and Logical)
2) Coding Questions (Given two questions of Java Collection)
3) SQL Queries (Given three intermediate level queries)

Round 2 - Technical 

(1 Question)

  • Q1. The second round was face-to-face technical round- I where, the interviewer goes through your resume. He asked me about basics of Java, Collections, OOPs, SQL. And also, asked three coding questions and ba...
Round 3 - Technical 

(1 Question)

  • Q1. The third round was remote technical round- II. In this round, interviewer mainly focuses on the project. And asked about what technical difficulties you faced during the completion of project?

Interview Preparation Tips

Interview preparation tips for other job seekers - You just have to be prepared to excel in this interview.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Hibernate/JPA, Microservices Architecture, API Gateway, JPA Polymorphism, Different Entity Attributes, RestTemplate, Spring Security, JWT Token, @RestController vs @Controller, Relationships in Entity, Ent...
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Functional interface
  • Ans. 

    Functional interface is an interface with only one abstract method, used for lambda expressions.

    • Functional interfaces can have multiple default or static methods, but only one abstract method.

    • They are used for lambda expressions and method references in Java.

    • Examples of functional interfaces in Java include Runnable, Callable, and Comparator.

  • Answered by AI
  • Q2. Java 8 features
  • Q3. One Coding question based on String

Interview Preparation Tips

Topics to prepare for NeoSOFT Java Developer interview:
  • Java
  • Advanced Java

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Skill and technology worked
  • Ans. 

    I have worked with various technologies and developed skills in project management, team leadership, and software development.

    • Proficient in project management tools such as JIRA and Trello

    • Experience in leading teams of up to 10 members

    • Skilled in programming languages such as Java, Python, and JavaScript

    • Familiarity with front-end frameworks such as React and Angular

    • Knowledge of database technologies such as MySQL and Mo

  • Answered by AI
  • Q2. Give only honest reply
Round 2 - Technical 

(2 Questions)

  • Q1. Basic and semi advance
  • Q2. Clear the basic and try hands on experince
Round 3 - Technical 

(2 Questions)

  • Q1. Advance level of power bi and SQL
  • Ans. 

    I have an advanced level of Power BI and SQL skills.

    • Expertise in creating complex data models and DAX formulas in Power BI

    • Proficient in writing complex SQL queries and stored procedures

    • Experience in integrating Power BI with SQL Server and other data sources

    • Ability to optimize queries and improve performance

    • Familiarity with data visualization best practices and design principles

  • Answered by AI
  • Q2. Can get idea if worked aroud 7 years
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Ans. 

    In five years, I envision myself as a seasoned Team Lead, driving impactful projects and mentoring emerging leaders in our field.

    • I aim to lead a high-performing team that consistently exceeds project goals, similar to how I successfully managed a project last year.

    • I plan to enhance my leadership skills through continuous learning and professional development, such as attending leadership workshops.

    • I aspire to contribut...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work. Clear with basics and hands on experience.

Skills evaluated in this interview

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited Team Lead Operations interview for experienced candidates?
IDBI Intech Limited interview process for experienced candidates usually has 2 rounds. The most common rounds in the IDBI Intech Limited interview process for experienced candidates are HR and One-on-one Round.
What are the top questions asked in IDBI Intech Limited Team Lead Operations interview for experienced candidates?

Some of the top questions asked at the IDBI Intech Limited Team Lead Operations interview for experienced candidates -

  1. Normal transact...read more
  2. Normal quest...read more

Tell us how to improve this page.

IDBI Intech Limited Team Lead Operations Interview Process for Experienced

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 369 Interviews
ITC Infotech Interview Questions
3.6
 • 341 Interviews
CitiusTech Interview Questions
3.3
 • 277 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 222 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Indium Software Interview Questions
4.1
 • 186 Interviews
View all

Fast track your campus placements

View all
IDBI Intech Limited Team Lead Operations Salary
based on 14 salaries
₹1.8 L/yr - ₹4 L/yr
45% less than the average Team Lead Operations Salary in India
View more details

IDBI Intech Limited Team Lead Operations Reviews and Ratings

based on 6 reviews

2.7/5

Rating in categories

2.1

Skill development

2.5

Work-life balance

2.7

Salary

2.5

Job security

2.5

Company culture

2.1

Promotions

2.5

Work satisfaction

Explore 6 Reviews and Ratings
Team Lead
172 salaries
unlock blur

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