Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by IBM Team. If you also belong to the team, you can get access from here

IBM Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 21.3k Reviews

Filter interviews by

IBM Associate Technical Engineer Interview Questions and Answers

Updated 17 Jul 2024

IBM Associate Technical Engineer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

C++ basic OOP concepts

Round 2 - HR 

(2 Questions)

  • Q1. Share your experience
  • Q2. Behavioral interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Object Oriented programming questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Guru Gobind Singh Indraprastha University (GGSIU) and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy and mostly on sequences and general aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. Questioned regarding projects did and profile specific.
Round 3 - HR 

(1 Question)

  • Q1. Mostly behavioral questions were asked.

Associate Technical Engineer Interview Questions Asked at Other Companies

asked in Kyndryl
Q1. What do you think is the most impactful technology today?
Q2. How many types of transformer and how to work?
Q3. Tell about the diodes and transistor types and its work.
asked in Finastra
Q4. How to troubleshoot a computer booting-up issue
Q5. Which make of your DG and transformer.?

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Oct 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 

(6 Questions)

  • Q1. JDK & JVM difference
  • Ans. 

    JDK is a development kit for Java programming, while JVM is a virtual machine that runs Java bytecode.

    • JDK stands for Java Development Kit and includes tools for developing Java applications.

    • JVM stands for Java Virtual Machine and is responsible for running Java bytecode.

    • JDK includes JRE (Java Runtime Environment) which contains JVM, libraries, and other necessary components.

    • JVM is platform-dependent, while JDK is platf...

  • Answered by AI
  • Q2. What is SDLC ?
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful development and deployment of software.

    • Examples of SDL...

  • Answered by AI
  • Q3. What is the use of pointers?
  • Ans. 

    Pointers are variables that store memory addresses of other variables. They are used to manipulate memory and improve efficiency.

    • Pointers allow for dynamic memory allocation and deallocation

    • Pointers can be used to pass variables by reference instead of by value

    • Pointers are commonly used in data structures like linked lists and trees

  • Answered by AI
  • Q4. Why java is more in industry
  • Ans. 

    Java is more prevalent in the industry due to its platform independence, strong community support, and extensive libraries.

    • Platform independence allows Java programs to run on any device with a Java Virtual Machine (JVM)

    • Strong community support ensures continuous updates and improvements to the language

    • Extensive libraries provide developers with a wide range of tools and resources to build robust applications

  • Answered by AI
  • Q5. What is functional interface
  • Ans. 

    A functional interface is an interface that contains only one abstract method. It can have multiple default or static methods.

    • Functional interfaces are used in Java to implement lambda expressions.

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

    • Functional interfaces can also be annotated with @FunctionalInterface to ensure they only have one abstract method.

  • Answered by AI
  • Q6. What are diff types of os
  • Ans. 

    Different types of operating systems include Windows, macOS, Linux, and Unix.

    • Windows - developed by Microsoft, commonly used for personal computers

    • macOS - developed by Apple, used on Mac computers

    • Linux - open-source OS used on servers and embedded systems

    • Unix - older OS used in mainframes and servers

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Program for duplicate removal and sorting

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical in detail

Interview Preparation Tips

Interview preparation tips for other job seekers - I had the opportunity to interview with Wipro over a period of two months, and unfortunately, it was one of the most frustrating interview experiences I’ve had. Here’s a breakdown of what happened.

First Round – Virtual Interview:
The first round was a virtual interview that lasted around 30 minutes. It was smooth and professional, covering the usual technical and behavioral questions.

Second Round – Face-to-Face Interview:
After successfully passing the first round, I was invited for a second and final face-to-face interview. This round lasted over an hour and covered more in-depth technical topics. I left the interview feeling positive and optimistic about the outcome.

Post-Interview Communication:
A few days later, the HR contacted me to request documents and initiated salary discussions, giving me the impression that things were progressing well. However, this is where the problems began.

Months of Silence and Miscommunication:
After these initial discussions, there was complete silence from their side for nearly two months. No updates, no follow-ups—just radio silence. I reached out multiple times, only to be ignored.

L2 Interview Round – Unexpected and Unprofessional:
Out of the blue, I received a call from HR stating that I needed to go through another "L2" technical round, despite having completed the final round weeks earlier. This round felt redundant, and I was ultimately rejected.

Unprofessional HR Behavior:
Throughout this process, the communication from HR was inconsistent, rude, and highly unprofessional. Their lack of transparency, coupled with the abrupt rejection after months of waiting, made the experience even worse.

I would advise anyone considering interviewing with Wipro to think twice before investing their time. The process was disorganized, communication was poor, and the behavior from the HR team was far from professional. Your time and efforts could be better spent elsewhere.

Technical Lead Interview Questions & Answers

HCLTech user image Chandan Kumar Sahoo

posted on 21 Sep 2024

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

(2 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. What is method overriding
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Occurs in inheritance when a subclass provides a specific implementation of a method that is already provided by its parent class

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class

    • Allows fo...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is interceptor
  • Ans. 

    An interceptor is a design pattern commonly used in software development to capture and manipulate incoming and outgoing requests.

    • Interceptors can be used for logging, authentication, authorization, error handling, and more

    • In Angular, interceptors can be used to modify HTTP requests before they are sent to the server

    • In Spring framework, interceptors can be used to intercept client requests and server responses

  • Answered by AI
  • Q2. What is filter in spring
  • Ans. 

    A filter in Spring is a component that intercepts incoming requests and outgoing responses, allowing for pre-processing and post-processing.

    • Filters are used for tasks such as logging, authentication, authorization, and more

    • Filters can be configured in the Spring application context

    • Examples of filters in Spring include CharacterEncodingFilter, HiddenHttpMethodFilter, and CorsFilter

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. What is your contribution
  • Ans. 

    My contribution as a Technical Lead includes leading a team, providing technical guidance, resolving technical issues, and ensuring project success.

    • Leading a team to achieve project goals

    • Providing technical guidance and mentorship to team members

    • Resolving technical issues and challenges

    • Ensuring project success through effective planning and execution

  • Answered by AI
  • Q2. What have you done in your project
  • Ans. 

    I have led a team in developing a new feature for our product, involving designing, coding, testing, and deployment.

    • Led a team in developing a new feature

    • Designed the architecture for the feature

    • Coded the functionality using Java and Spring Boot

    • Tested the feature using JUnit and Mockito

    • Deployed the feature to production environment

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. How soon can you join
  • Ans. 

    I can join within 2 weeks.

    • I can start within 2 weeks of receiving an offer.

    • I need to give notice to my current employer.

    • I may need time to relocate if necessary.

  • Answered by AI
  • Q2. How was your last interview
  • Ans. 

    My last interview went well, I was able to showcase my technical skills and experience effectively.

    • Prepared thoroughly by reviewing common technical interview questions

    • Highlighted my experience leading technical teams and projects

    • Demonstrated problem-solving skills with real-life examples

    • Received positive feedback on my communication and teamwork abilities

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

(2 Questions)

  • Q1. Offer letter related
  • Q2. Relocation related
Round 6 - One-on-one 

(2 Questions)

  • Q1. Ticket booking and travel date related
  • Q2. Confirmation on travel
Round 7 - HR 

(2 Questions)

  • Q1. Are you ready to travel?
  • Ans. 

    Yes, I am ready to travel for work as needed.

    • I am willing to travel for client meetings, conferences, and team collaborations.

    • I have previous experience traveling for work in my current or past roles.

    • I understand the importance of face-to-face interactions in a technical lead role.

  • Answered by AI
  • Q2. Have you talked to your reporting manager
  • Ans. 

    Yes, I regularly communicate with my reporting manager to provide updates and discuss any issues or concerns.

    • Regularly scheduled check-ins with reporting manager

    • Provide updates on project progress

    • Discuss any issues or concerns

    • Seek guidance and feedback from reporting manager

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

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

Round 1 - Group Activity 

(2 Questions)

  • Q1. Advantage and disadvantage of smart phones
  • Ans. 

    Smartphones offer convenience and connectivity but can also lead to distractions and privacy concerns.

    • Advantage: Convenient access to information, communication, and entertainment

    • Advantage: Enhanced productivity with apps and tools

    • Disadvantage: Potential distractions from notifications and social media

    • Disadvantage: Privacy concerns with data collection and security risks

  • Answered by AI
  • Q2. Advantage and disadvantage of online education
  • Ans. 

    Online education offers flexibility but lacks in-person interaction.

    • Advantage: Flexibility to study at own pace and schedule.

    • Advantage: Access to a wide range of courses and resources from anywhere.

    • Disadvantage: Lack of in-person interaction with teachers and peers.

    • Disadvantage: Potential for distractions and lack of motivation without a structured environment.

    • Disadvantage: Limited hands-on learning experiences for cer

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Ans. 

    I am a dedicated Technical Support Engineer with 5 years of experience in troubleshooting hardware and software issues.

    • 5 years of experience in technical support

    • Proficient in troubleshooting hardware and software issues

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. What makes you a suitable candidate for this position?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for helping customers.

    • Extensive experience in troubleshooting technical issues

    • Strong knowledge of various operating systems and software applications

    • Excellent communication skills to effectively assist customers

    • Proven track record of resolving complex technical problems efficiently

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy to answer, but consider real-time scenarios.
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Describe architecture of current project
Round 2 - Technical 

(1 Question)

  • Q1. Microservices Design Patterns
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Technical Lead Interview Questions & Answers

Cognizant user image Ravi Kumar Gundamala

posted on 16 Oct 2024

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

(2 Questions)

  • Q1. All AWS related questions
  • Q2. Automation questions specific cloud automation using Python
Round 2 - Behavioral 

(2 Questions)

  • Q1. Overall infrastructure handling & Trouble shooting
  • Q2. How you perform as Individual contributor/ get team lead opportunity how you handle it
  • Ans. 

    I excel as an individual contributor and transition smoothly into a team lead role by leveraging my technical expertise and leadership skills.

    • Demonstrate strong technical skills and consistently deliver high-quality work as an individual contributor.

    • Proactively seek opportunities to mentor and guide team members, showcasing leadership potential.

    • Communicate effectively with team members, fostering collaboration and driv...

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

I applied via campus placement at National Institute of Technology,(NIT), Manipur and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Voice assesment,which will be evaluated by ai

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Basic dsa question on printing pattern
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

First Round was assessment test round, Which includes English + Cognitive questions

Round 2 - Technical 

(1 Question)

  • Q1. As I have completed aeronautical engineering. They asked me basic questions related to aeronautics. What are the primary part of the airplane?

IBM Interview FAQs

How many rounds are there in IBM Associate Technical Engineer interview?
IBM interview process usually has 2-3 rounds. The most common rounds in the IBM interview process are HR, Aptitude Test and Technical.
What are the top questions asked in IBM Associate Technical Engineer interview?

Some of the top questions asked at the IBM Associate Technical Engineer interview -

  1. Mostly behavioral questions were ask...read more
  2. Behavioral interview questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 IBM interviews
Campus Placement
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
View all
IBM Associate Technical Engineer Salary
based on 291 salaries
₹3 L/yr - ₹6 L/yr
8% less than the average Associate Technical Engineer Salary in India
View more details

IBM Associate Technical Engineer Reviews and Ratings

based on 20 reviews

4.0/5

Rating in categories

3.4

Skill development

3.9

Work-Life balance

3.8

Salary & Benefits

4.2

Job Security

4.4

Company culture

3.1

Promotions/Appraisal

3.3

Work Satisfaction

Explore 20 Reviews and Ratings
Application Developer
11.5k salaries
unlock blur

₹5.5 L/yr - ₹23.6 L/yr

Software Engineer
5.4k salaries
unlock blur

₹4.8 L/yr - ₹22.6 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹9.3 L/yr - ₹27 L/yr

Senior Software Engineer
4.9k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Systems Engineer
4.6k salaries
unlock blur

₹5.6 L/yr - ₹18.5 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
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