Premium Employer

i

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

Hexaware Technologies Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 5.7k Reviews

Filter interviews by

Hexaware Technologies Senior Web Developer Interview Questions and Answers

Updated 15 Jun 2024

Hexaware Technologies Senior Web Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Hr general questions asked
  • Q2. Deep knowledge is need
Round 2 - Coding Test 

Dynamic coding and advanced coding and critical problems

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core Java Questions
  • Q2. Spring Boot Questions
Round 2 - Technical 

(2 Questions)

  • Q1. HighLevelDesign Questions
  • Q2. Basic Docker questions
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Aptitude Test 

Worst set of questions

Round 2 - Coding Test 

Advanced DSA for entry level role

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions held online with their portal

Round 2 - Coding Test 

Broad coding and basic oops

Round 3 - HR 

(1 Question)

  • Q1. About hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Preview about basics and brush up
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

Basic php questions and laravel framework

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the concepts of oops
  • Ans. 

    OOPs concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. Pls explain all concepts of oops
  • Ans. 

    Object-oriented programming concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability to create a new class that inherits attributes and methods from an existing class.

    • Polymorphism: Ability to use a single interface to represent different data types or objects.

    • Abstraction: Hiding the comple...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Brief about yourself
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Coimbatore Institute of Technology, Coimbatore and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There was Aptitude, Technical and Coding. Coding there were 4 sections for 4 languages (C, C++, java, Python) We had to do atleast 2. Technical MCQs were based on OS, CN, DSA, C, C++, Python (Numpy, Panda) and Java

Round 2 - Technical 

(1 Question)

  • Q1. Mainly asked OS, and since I'm from EEE dept, i wasnt well versed in CN, so no CN questions were asked to me. My primary coding language was Python, so some questions regarding the python was asked. I was ...

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Software Developer interview:
  • Operating Systems
  • Computer Networking
  • Python
  • Object Oriented Programming
  • SQL
  • DSA
Interview preparation tips for other job seekers - Prepare OS, CN and basic interview question in your primary coding language. When preparing OS, try and implement that in code as and when you study.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

The first stage of the aptitude test was a written examination. it consisted of multiple-choice questions and problem-solving exercises, the question covered a wide range of topics such as logical reasoning, numerical ability, and verbal comprehension. the time limit was challenging, but I completed most of the questions.

Round 3 - Coding Test 

In summary, the coding round was a challenging yet rewarding experience. it tested my programming abilities, problem-solving skills,
and ability to deliver efficient and error-free code within a time constraint. with adequate round preparation, focus, and practice, I navigated the coding round confidently and showcased my technical capabilities.

Round 4 - Technical 

(5 Questions)

  • Q1. Create a regular expression accepting 10-digit numeric characters starting with 1, 2, or 3.
  • Ans. 

    Regular expression for 10-digit numeric characters starting with 1, 2, or 3.

    • Use the pattern ^[1-3]\d{9}$ to match the criteria

    • The ^ symbol denotes the start of the string

    • The [1-3] specifies that the first digit must be 1, 2, or 3

    • \d{9} matches exactly 9 numeric digits

    • $ indicates the end of the string

  • Answered by AI
  • Q2. What do you mean by OOPS?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Encapsulation refers to the bundling of data and methods that operate on the data into a single unit (obje...

  • Answered by AI
  • Q3. What are the basic SQL skills?
  • Ans. 

    Basic SQL skills include querying databases, manipulating data, and understanding database structures.

    • Writing basic SQL queries to retrieve data from databases

    • Understanding and using SQL functions and operators

    • Creating and modifying database tables and relationships

    • Using SQL to filter, sort, and group data

    • Understanding basic SQL syntax and commands

  • Answered by AI
  • Q4. What is a join in SQL? What are the types of joins?
  • Ans. 

    A join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left tabl...

  • Answered by AI
  • Q5. Convert Hours into Seconds.
  • Ans. 

    To convert hours into seconds, multiply the number of hours by 3600.

    • Multiply the number of hours by 3600 to get the equivalent seconds.

    • For example, 2 hours = 2 * 3600 = 7200 seconds.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jan 2023. There was 1 interview round.

Round 1 - One-on-one 

(8 Questions)

  • Q1. Please give an introduction of yourself.
  • Q2. Your comfortable programming/coding language
  • Q3. What is session in java?
  • Ans. 

    Session in Java is a way to store information about a user across multiple requests.

    • Session is used to maintain stateful information about a user.

    • It is created when a user first accesses a web application and remains active until the user logs out or the session times out.

    • Session data is stored on the server and can be accessed by multiple requests from the same user.

    • It is commonly used for user authentication, shoppin...

  • Answered by AI
  • Q4. What is Java Class Library?
  • Ans. 

    Java Class Library is a collection of pre-compiled classes and methods that provide ready-to-use functionality for Java developers.

    • Java Class Library contains classes for common tasks like input/output, networking, database access, etc.

    • Developers can use these classes to save time and effort by reusing existing code.

    • Examples include java.lang, java.util, java.io, java.net, etc.

  • Answered by AI
  • Q5. Types of datatypes in Java
  • Ans. 

    Java has several types of datatypes including primitive and reference types.

    • Primitive datatypes include int, double, boolean, char, etc.

    • Reference datatypes include classes, interfaces, arrays, etc.

    • Examples: int age = 25; String name = "John"; int[] numbers = {1, 2, 3};

    • Wrapper classes like Integer, Double, Boolean, etc. are used to wrap primitive types.

  • Answered by AI
  • Q6. One question was on SQL. (I had mentioned SQL in one of my academic projects)
  • Q7. Please tell me What is HTML?
  • Ans. 

    HTML stands for HyperText Markup Language. It is the standard markup language for creating web pages.

    • HTML is used to structure content on the web.

    • It uses tags to define elements such as headings, paragraphs, links, images, etc.

    • HTML documents are interpreted by web browsers to display the content.

    • Example:

      This is a heading

  • Answered by AI
  • Q8. How to change a div background colour?
  • Ans. 

    To change a div background color in Java, use the setBackground() method and pass the desired color as a parameter.

    • Create a reference to the div element using its id or class

    • Use the setBackground() method to set the background color

    • Pass the desired color as a parameter to the setBackground() method

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ITC Infotech Java Developer interview:
  • java basics theory
Interview preparation tips for other job seekers - I could not ans to ques. 3 and 4 properly, and on question 5, due to nervousness I replied with int, bool, float, etc so even that is incorrect. and Ques 6 about SQL I could not ans.

The interview was really easy I have to say that, but I could not clear it because I went more prepared for the coding part like write a program for this that, which they did not ask me literally nothing from coding. It's my fault I understand i should have prepared my theory better, I'm fresher I'm learning things but

I hope you will learn something from my mistakes and will succeed. I wish you all the very best for your interview and hope you will clear it. Thank you.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Java spring boot microservices

Round 3 - Technical 

(1 Question)

  • Q1. Java spring boot microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Please dont interview withis comapny this HR people jsut waste your time and take so much time in HR round will ask every thing about you and will rejct on non groiu nd basis the hr are very rude and bad here save yourslrf
HR Name:Rehana praveen ,Meher and sowmya

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Senior Web Developer interview?
Hexaware Technologies interview process usually has 2 rounds. The most common rounds in the Hexaware Technologies interview process are Technical and Coding Test.

Tell us how to improve this page.

Hexaware Technologies Senior Web Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 805 Interviews
Mphasis Interview Questions
3.4
 • 800 Interviews
Nagarro Interview Questions
4.0
 • 776 Interviews
View all
Senior Software Engineer
3.8k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

System Analyst
3k salaries
unlock blur

₹6.7 L/yr - ₹29 L/yr

Software Engineer
2.9k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Executive
2k salaries
unlock blur

₹0.8 L/yr - ₹6.2 L/yr

Technical Architect
1.9k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview