i
HCLTech
Filter interviews by
I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.
What people are saying about HCLTech
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.
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++.
I applied via Naukri.com and was interviewed in Oct 2022. There were 2 interview rounds.
1 hr test with mcq and coding snippet
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().
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);
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...
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
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...
I applied via Campus Placement and was interviewed in Feb 2022. There were 3 interview rounds.
Round duration - 120 minutes
The Recruitment Process of Mphasis starts with an Online Test having
sections like :
Quants
Logical Reasoning
Verbal Ability
Computer Programming
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
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?
Round duration - 20 minutes
The technical interview consisted of technical questions and from the technical subjects that were present on my CV.
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
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;...
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,...
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
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
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
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); } }
Round duration - 10 mins
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...
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
I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.
Advance C, Java script ,Python, Html, Excel knowledge
Give me topic and i will discussed you that topic about regarding all things
I was interviewed in Jun 2021.
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.
We use Brute Force to solve this problem.
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.
What is Normalization and forms of normalization?
Round duration - 15 minutes
Round difficulty - Easy
This round happened around 5.20pm and lasted for 15 minutes.
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...
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
Tip 1 : Practice coding everyday for a hour
Tip 2 : revise theoretical concepts
Tip 3 : Build a good project and resume
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
I was interviewed in Aug 2021.
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
posted on 29 Jun 2021
I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.
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
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
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.
posted on 25 Sep 2021
I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.
based on 3 reviews
Rating in categories
Software Engineer
22.5k
salaries
| ₹1.2 L/yr - ₹8 L/yr |
Technical Lead
20.7k
salaries
| ₹6.9 L/yr - ₹25 L/yr |
Senior Software Engineer
15.4k
salaries
| ₹4 L/yr - ₹16.5 L/yr |
Lead Engineer
14.8k
salaries
| ₹4.2 L/yr - ₹14 L/yr |
Senior Analyst
13.9k
salaries
| ₹1 L/yr - ₹8.7 L/yr |
TCS
Wipro
Accenture
Cognizant