Upload Button Icon Add office photos

HCL Infosystems

Compare button icon Compare button icon Compare

Filter interviews by

HCL Infosystems Software Engineer Interview Questions and Answers for Experienced

Updated 3 Jun 2025

6 Interview questions

A Software Engineer was asked
Q. What is the difference between abstraction and interface?
Ans. 

Abstraction is a concept of hiding implementation details while interface is a contract that defines the behavior of a class.

  • Abstraction is achieved through abstract classes and methods

  • Interface is a collection of abstract methods

  • Abstraction is used for reducing complexity and increasing efficiency

  • Interface is used for achieving multiple inheritance and loose coupling

  • Abstraction is a way of achieving data abstract...

A Software Engineer was asked
Q. Which collection class is used to represent key-value pairs?
Ans. 

The HashMap class is used to represent key-value pairs in Java.

  • HashMap is a part of the Java Collections Framework.

  • It allows null values and only one null key.

  • It provides constant-time performance for basic operations like get and put.

  • Example: HashMap<String, Integer> map = new HashMap<>();

Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. String Compression Problem Statement Implement a program that per ... read more
asked in HCLTech
Q2. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in HCLTech
Q3. Reverse Array Elements Given an array containing 'N' elements, th ... read more
Q4. Total time: 110 mins 1. Find missing and duplicate numbers from g ... read more
asked in Cisco
Q5. Intersection of Linked List Problem You are provided with two sin ... read more
A Software Engineer was asked
Q. Why is try-catch used in JAVA?
Ans. 

try-catch is used in Java to handle exceptions and prevent program crashes.

  • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

  • It allows the program to gracefully handle errors and prevent the program from crashing.

  • The try block contains the code that may throw an exception, and the catch block handles the exception.

  • Multiple catch blocks can be used to handle different ...

A Software Engineer was asked
Q. What is abstraction?
Ans. 

Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

  • Abstraction allows us to create models or representations of real-world objects or systems in software.

  • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

  • Abstraction provides a level of indirection, allowing changes to be made in one part of the s...

A Software Engineer was asked
Q. Which statement will we use if we want to select a statement based on integer inputs?
Ans. 

The statement to use for selecting based on integer inputs is the 'switch' statement.

  • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

  • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

  • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input v...

A Software Engineer was asked
Q. Wat is exception handling? Store procedure in sql? Indexing? Oops concept?
Ans. 

Exception handling, stored procedures, indexing, and OOP concepts are important in software engineering.

  • Exception handling is the process of handling errors that occur during program execution.

  • Stored procedures are pre-written SQL code that can be executed with a single command.

  • Indexing is the process of optimizing database performance by creating indexes on frequently queried columns.

  • OOP concepts include encapsul...

HCL Infosystems Software Engineer Interview Experiences for Experienced

5 interviews found

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. How was your day
  • Q3. Why do you want to choose this job
  • Q4. Tell about yourself experience
  • Q5. If you got a better than good job in other company can resign this job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 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 

(3 Questions)

  • Q1. Java8 Features and Opps concepts
  • Q2. Collections frame works
  • Q3. Difference between abstraction and interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well then attend the interview All the best

Software Engineer Interview Questions & Answers

user image shivani tyagi

posted on 9 Mar 2022

I applied via Naukri.com and was interviewed in Sep 2021. 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 

Easy reasoning questions

Round 3 - Coding Test 

Basic coding multiple choice questions

Round 4 - One-on-one 

(1 Question)

  • Q1. Wat is exception handling? Store procedure in sql? Indexing? Oops concept?
  • Ans. 

    Exception handling, stored procedures, indexing, and OOP concepts are important in software engineering.

    • Exception handling is the process of handling errors that occur during program execution.

    • Stored procedures are pre-written SQL code that can be executed with a single command.

    • Indexing is the process of optimizing database performance by creating indexes on frequently queried columns.

    • OOP concepts include encapsulation...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HCL Infosystems Software Engineer interview:
  • .Net Core
  • Sql basic
Interview preparation tips for other job seekers - Just focus on basics,thats it!!

If u learn nly 1 thing,jst do it properly.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java basics oops selenium framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java basic on strings and selenium

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

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

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about HCL Infosystems?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Self introduction
  • Q2. What is java
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented approach.

    • Java is widely used for developing desktop, web, and mobile applications.

    • It is known for its robustness, security, and scalability.

    • Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).

    • It supports multithreading, exception handling, and automatic memory management.

    • Popular framewor...

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job security but do not expect projects with latest technologies or development side.

If you are lucky you will get project with new technologies and you can learn.
Are these interview questions helpful?

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Apti & programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Data structure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience all total

Interview Questionnaire 

1 Question

  • Q1. Why Infosys

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest and dont fake they will know if you are

HCL Infosystems Interview FAQs

How many rounds are there in HCL Infosystems Software Engineer interview for experienced candidates?
HCL Infosystems interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the HCL Infosystems interview process for experienced candidates are Technical, Resume Shortlist and Aptitude Test.
What are the top questions asked in HCL Infosystems Software Engineer interview for experienced candidates?

Some of the top questions asked at the HCL Infosystems Software Engineer interview for experienced candidates -

  1. Which statement will we use if we want to select a statement based on integer i...read more
  2. Which collection class is used to represent key-value pairs? ...read more
  3. Wat is exception handling? Store procedure in sql? Indexing? Oops conce...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 50%
Hard 50%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
HCL Infosystems Software Engineer Salary
based on 213 salaries
₹3.9 L/yr - ₹8 L/yr
38% less than the average Software Engineer Salary in India
View more details

HCL Infosystems Software Engineer Reviews and Ratings

based on 16 reviews

4.2/5

Rating in categories

3.8

Skill development

3.4

Work-life balance

3.3

Salary

3.9

Job security

3.8

Company culture

3.6

Promotions

3.7

Work satisfaction

Explore 16 Reviews and Ratings
Technical Lead
327 salaries
unlock blur

₹10.8 L/yr - ₹20 L/yr

Senior Software Engineer
303 salaries
unlock blur

₹6 L/yr - ₹13.5 L/yr

Senior Analyst
221 salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Software Engineer
213 salaries
unlock blur

₹3.9 L/yr - ₹8 L/yr

Lead Engineer
191 salaries
unlock blur

₹5.8 L/yr - ₹12 L/yr

Explore more salaries
Compare HCL Infosystems with

HCLTech

3.5
Compare

TCS

3.6
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview