Premium Employer

i

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

HCLTech Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 34k Reviews

Filter interviews by

HCLTech Project Manager-IT/Software Interview Questions and Answers for Freshers

Updated 27 Nov 2021

HCLTech Project Manager-IT/Software Interview Experiences for Freshers

1 interview found

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

Interview Questionnaire 

1 Question

  • Q1. What does success look like in this position, and how do you measure it?

Interview Preparation Tips

Interview preparation tips for other job seekers - be polite and use the right language and tone for a formal situation

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Give your Introduction
  • Q2. What is your salary expectations
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is a Java thread stream?
  • Ans. 

    A Java thread stream is a sequence of data that can be read from or written to concurrently by multiple threads.

    • Java thread streams allow for efficient communication between threads.

    • They can be used to pass data between different parts of a program running in parallel.

    • Examples of Java thread streams include InputStream and OutputStream for reading and writing data respectively.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your strengths?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong programming abilities.

    • Strong problem-solving skills - I enjoy tackling complex issues and finding creative solutions.

    • Attention to detail - I am meticulous in my work to ensure high-quality results.

    • Strong programming abilities - I have expertise in multiple programming languages such as Java, Python, and C++.

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hr test with mcq and coding snippet

Round 2 - One-on-one 

(6 Questions)

  • Q1. What are pointers in c?
  • Ans. 

    Pointers are variables that store memory addresses of other variables in C programming language.

    • Pointers are used to manipulate data structures like arrays, linked lists, and trees.

    • They can be used to pass values by reference to functions.

    • Pointers can also be used to allocate memory dynamically using functions like malloc() and calloc().

  • Answered by AI
  • Q2. Write a linked list program.
  • Ans. 

    A linked list program is a data structure that stores a sequence of elements with pointers to the next element.

    • Create a Node class with a value and a next pointer

    • Create a LinkedList class with a head pointer and methods to add, remove, and traverse nodes

    • Example: LinkedList ll = new LinkedList(); ll.add(5); ll.add(10); ll.remove(5);

  • Answered by AI
  • Q3. Applications of data structures
  • Ans. 

    Data structures are used to organize and manipulate data efficiently in various applications.

    • Data structures are used in databases to store and retrieve data quickly.

    • In computer graphics, data structures are used to represent geometric objects.

    • Data structures are used in algorithms such as sorting and searching.

    • In networking, data structures are used to represent network packets and routing tables.

    • Data structures are u...

  • Answered by AI
  • Q4. Algorithm for merge sort
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the input array into two halves, sorts them and then merges them.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Repeat until the entire array is sorted

  • Answered by AI
  • Q5. Cloud computing application in real world in project
  • Ans. 

    Cloud computing is widely used in various industries for data storage, processing, and analysis.

    • Cloud computing allows for easy scalability and cost-effectiveness in managing large amounts of data.

    • Real-time collaboration and access to data from anywhere are some of the benefits of cloud computing.

    • Examples of cloud computing applications in real-world projects include Amazon Web Services (AWS), Microsoft Azure, and Goog...

  • Answered by AI
  • Q6. Java and nodejs questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be precise and confident. Keep learning and solving code on platforms.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Written 

(2 Questions)

Round duration - 120 minutes
The Recruitment Process of Mphasis starts with an Online Test having
sections like :
Quants
Logical Reasoning
Verbal Ability
Computer Programming

  • Q1. The questions of quants, logical and verbal were easy and the total number of questions was 75.
  • Ans. 

    The interviewee is asked about the difficulty level and number of questions in a test.

    • The interviewee should mention the specific type of test (quants, logical, verbal) and their difficulty level.

    • They should also mention the total number of questions in the test.

    • If applicable, they can provide examples of the types of questions asked.

    • It is important to answer truthfully and not exaggerate or downplay the difficulty lev

  • Answered by AI
  • Q2. There were 20 coding programming questions.
  • Ans. 

    There were 20 coding programming questions.

    • Were the questions related to a specific programming language?

    • What was the difficulty level of the questions?

    • Were there any questions related to data structures or algorithms?

    • How much time was given to answer the questions?

    • Were there any coding challenges or just theoretical questions?

  • Answered by AI
Round 2 - Technical 

(7 Questions)

Round duration - 20 minutes
The technical interview consisted of technical questions and from the technical subjects that were present on my CV.

  • Q1. Write a program for multiple inheritances?
  • Ans. 

    A program for multiple inheritances

    • Create a base class with common attributes and methods

    • Create derived classes that inherit from the base class

    • Use multiple inheritance to inherit from multiple base classes

    • Resolve any naming conflicts using scope resolution operator (::)

    • Example: class Derived: public Base1, public Base2 {}

    • Example: class Derived: public Base1, public Base2 { public: void method() { Base1::method(); Base

  • Answered by AI
  • Q2. What is the difference between structure and union?
  • Ans. 

    Structure is a collection of variables of different data types while union is a collection of variables of same data type.

    • Structure allocates memory for all its variables while union allocates memory for only one variable at a time.

    • Structure is used when we need to store different types of data while union is used when we need to store only one type of data.

    • Example of structure: struct student { char name[20]; int age;...

  • Answered by AI
  • Q3. Explain about OSI model
  • Ans. 

    The OSI model is a conceptual model that describes how data is transmitted over a network.

    • OSI stands for Open Systems Interconnection.

    • It has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the adjacent layers.

    • Example: When you send an email, the Application layer sends it to the Presentation layer, which formats the data,...

  • Answered by AI
  • Q4. What do you know about process management?
  • Ans. 

    Process management involves planning, organizing, executing, and monitoring processes to achieve organizational goals.

    • It includes identifying and defining processes

    • Assigning responsibilities and resources

    • Establishing timelines and milestones

    • Monitoring progress and making adjustments as needed

    • Examples include project management, supply chain management, and quality management

  • Answered by AI
  • Q5. What is a dangling pointer?
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated or freed.

    • Dangling pointers can cause crashes or unexpected behavior when accessed.

    • They can occur when a pointer is not set to NULL after the memory it points to is freed.

    • Example: int *ptr = malloc(sizeof(int)); free(ptr); printf('%d', *ptr);

    • In the above example, ptr becomes a dangling pointer after the memory it points to is free

  • Answered by AI
  • Q6. Difference between Function overriding and function overloading?
  • Ans. 

    Function overriding vs function overloading

    • Function overloading is having multiple functions with the same name but different parameters

    • Function overriding is having a function in a subclass with the same name and parameters as a function in the superclass

    • Function overloading is resolved at compile-time while function overriding is resolved at runtime

  • Answered by AI
  • Q7. C code to perform in-order traversal on a binary tree.
  • Ans. 

    C code for in-order traversal on a binary tree.

    • Start at the root node.

    • Traverse the left subtree recursively.

    • Visit the root node.

    • Traverse the right subtree recursively.

    • Repeat until all nodes have been visited.

    • Example code: void inorderTraversal(Node* root) { if(root != NULL) { inorderTraversal(root->left); printf("%d ", root->data); inorderTraversal(root->right); } }

  • Answered by AI
Round 3 - HR 

(3 Questions)

Round duration - 10 mins

  • Q1. Where do you see yourself 5 years from now?
  • Q2. Why Mphasis? What do you know about us?
  • Ans. 

    Mphasis is a leading IT solutions provider with a focus on digital transformation.

    • Mphasis has a strong presence in the banking and financial services industry, providing innovative solutions to clients such as Citibank and Standard Chartered.

    • The company has a focus on digital transformation and offers services such as cloud computing, data analytics, and artificial intelligence.

    • Mphasis has won several awards for its wo...

  • Answered by AI
  • Q3. What is your definition of work-life balance?
  • Ans. 

    Work-life balance is the ability to prioritize and manage both work and personal life effectively.

    • It involves setting boundaries and managing time efficiently

    • It allows for time to pursue personal interests and hobbies

    • It reduces stress and burnout

    • Examples include flexible work hours, remote work options, and time off for personal reasons

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience.Mphasis interview preparation:Topics to prepare for the interview - Data Types
Iteration, Recursion,
Decision
Procedure, functions, and
scope
Arrays, Linked Lists,
Trees, Graphs
Stacks, QueuesResources to prepare for this interview - I had only prepared through prepinsta website. The platform is offering a complete package and
helps to grab each and every necessity related to interviews as well as
written exams. If one goes through this website thoroughly, then I can assure you that no one
can stop you from grabbing good and reputed companies that too at handsome packages.Tips for other job seekers - I would like to suggest everyone who is appearing for interviews to be confident and honest with
the answers as the interviewer will detect your personality through it. Do not mention such subjects
that you are not aware about.Final outcome of the interviewAwaiting Outcome

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Advance C, Java script ,Python, Html, Excel knowledge

Round 2 - Group Discussion 

Give me topic and i will discussed you that topic about regarding all things

Interview Preparation Tips

Topics to prepare for HCL Infosystems Software Developer interview:
  • Advance C
  • Javascript
  • Python
  • Html
  • Excel knowledge
  • Oracle
Interview preparation tips for other job seekers - I have a inovater and team player and best Communication skill and applied my knowledge and skill to grow this Company in best manner and good manner.

I was interviewed in Jun 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

For me assesment was on 4.30 in the evening. the round was about 120 minute long. It had 3 coding question easy,medium and high level. And it contained some aptitude question on profit and loss, SI,CI etc. which will be easy to solve. It also contained logical question like seating arrangement, directions. And vocabulary round was also there. To solve a coding round you need to have a basic understanding. For me the easy question was to find out the prime number in array and medium level question was on profit maximization and another one was jumping cloud problem. There will be 6 coding question in which we need to solve 3.(one from easy, medium and hard). I solved 2 coding question. and the aptitude part was easy most like other companies. you can solve that very easily.

  • Q1. Find prime numbers

    You are given a positive integer ‘N’. Your task is to print all prime numbers less than or equal to N.

    Note: A prime number is a natural number that is divisible only by 1 and itself. ...

  • Ans. Brute force approach

    We use Brute Force to solve this problem.

     

    1. We iterate from 2 to N.
    2. For each number num, we check if it is prime or not. We use the following approach to check if a given number is prime.
      1. We loop through all numbers from 2 to num - 1.
      2. For every number in the loop, we check if it divides num.
      3. If we find any number that divides num, we can say num is not prime.
      4. If num is prime, we store it in the result...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This round was also held at 4.30pm. The round lasted for about 30minutes. At first he asked me to introduce myself. Later he asked about my internship done as front end engineer and asked about JavaScript dom, what was my role and told me to write a code for a table creation in html. Then he asked about python (I said i am comfortable with python and java). He then asked me code a string reversal program in both java and python. Then asked me to explain OOPs concepts. He asked me to write a program on function overloading and overwriting. Next he asked question about SQL,JOINS, Normalization and told me to write a query to retrieve 3rd highest salary among employees. He said that's all and asked me if i have any questions. That's all about my TR.

  • Q1. DBMS Question

    What is Normalization and forms of normalization?

Round 3 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

This round happened around 5.20pm and lasted for 15 minutes.

  • Q1. Basic HR Questions

    Introduce yourself . 

    Later briefly asked about my internship and what was my role and how I managed conflicts.

     Asked why are you choosing Mindtree and what quality that Mindtree...

  • Ans. 

    Tip 1 : Do a background research and state some of the facts like number of employee, CEO etc.
    Tip 2 : Tell about work culture in their company
    Tip 3 : research about their different ethics of features that make them stand out among other companies

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteriaAbove 6.5 cgpaMindtree interview preparation:Topics to prepare for the interview - Data structures, Object oriented programming concepts, SQL, java, python and front end technologies like html,css and jsTime required to prepare for the interview - 1 monhInterview preparation tips for other job seekers

Tip 1 : Practice coding everyday for a hour
Tip 2 : revise theoretical concepts
Tip 3 : Build a good project and resume

Application resume tips for other job seekers

Tip 1 : A good project attracts interviewer so Build a good project
Tip 2 : Resume should be short and neat. and try to do certifications if possible
Tip 3 : If you have done internship, please add that in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Aug 2021.

Interview Questionnaire 

4 Questions

  • Q1. Java only. After giving 100% correct answers. Got feedback not cleared. All coz of expected CTC
  • Q2. Hashmap internal
  • Q3. Spring boot autoconfiguration
  • Q4. Wap to find each character occurrence in string
  • Ans. 

    Wap to find each character occurrence in string

    • Iterate through the string and use a dictionary to keep track of character counts

    • Use a for loop to iterate through the string and increment the count of each character in the dictionary

    • Print the dictionary to display the character counts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If u want to join support level project then
One online test Hackerrank 50 MCQ
one technical.

Skills evaluated in this interview

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

Interview Questionnaire 

6 Questions

  • Q1. I applied for the position of RPA developer. Questions were of scenario based and I told based on my experience with the tools I did in automation.
  • Q2. What type of errors you faced during production environment and how did you overcome that?
  • Q3. How many projects or process you implemented in RE framework?
  • Ans. 

    I have implemented RE framework in 3 projects.

    • Implemented RE framework in 3 projects

    • Used RE framework for automating end-to-end processes

    • Leveraged RE framework's modular structure for easy maintenance

    • Examples: Invoice processing, Order management, HR onboarding

  • Answered by AI
  • Q4. What do you do incase of bot execution failure
  • Ans. 

    In case of bot execution failure, I would identify the root cause and fix it as soon as possible.

    • Check the logs to identify the error message and the point of failure

    • Analyze the code to identify the root cause of the failure

    • Fix the issue and test the bot again to ensure it is working as expected

    • Implement measures to prevent similar failures in the future

  • Answered by AI
  • Q5. Few data table based questions
  • Q6. Conversion operation in string
  • Ans. 

    Conversion operation in string

    • String conversion can be done using built-in functions like parseInt(), parseFloat(), toString(), etc.

    • Conversion can also be done using regular expressions and string manipulation techniques.

    • It is important to handle errors and edge cases while performing string conversion.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answers and explain with any real time example for each questions asked for.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Basics of Java
  • Q2. Questions related to OOPS
  • Q3. Basic coding questions like Fibonacci, factorial, prime, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't hesitate, interviewers were so cool and good overall good experience

Tell us how to improve this page.

People are getting interviews through

based on 1 HCLTech interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join HCLTech Find your spark and discover what drives you forward

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all

HCLTech Project Manager-IT/Software Reviews and Ratings

based on 3 reviews

4.9/5

Rating in categories

4.9

Skill development

4.4

Work-Life balance

3.9

Salary & Benefits

4.9

Job Security

4.5

Company culture

4.9

Promotions/Appraisal

4.9

Work Satisfaction

Explore 3 Reviews and Ratings
Software Engineer
22.5k salaries
unlock blur

₹1.2 L/yr - ₹8 L/yr

Technical Lead
20.7k salaries
unlock blur

₹6.9 L/yr - ₹25 L/yr

Senior Software Engineer
15.4k salaries
unlock blur

₹4 L/yr - ₹16.5 L/yr

Lead Engineer
14.8k salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Senior Analyst
13.9k salaries
unlock blur

₹1 L/yr - ₹8.7 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.7
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
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