Upload Button Icon Add office photos

Filter interviews by

Hexagon Capability Center Software Engineer Intern Interview Questions and Answers

Updated 26 Apr 2022

Hexagon Capability Center Software Engineer Intern Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Find the output of the given psuedo code and other technical MCQs
  • Ans. 

    Psuedo code output and technical MCQs for Software Engineer Intern position

    • Provide examples for technical MCQs

    • Psuedo code output needs to be calculated

    • Assess candidate's technical knowledge

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Write function to create a Linked List
  • Ans. 

    Function to create a Linked List

    • Create a Node class with value and next pointer

    • Create a LinkedList class with head pointer

    • Add nodes to the linked list using the LinkedList class

    • Handle edge cases like empty list and inserting at head

  • Answered by AI
  • Q2. SQL question on joins
  • Q3. OOPS theory questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions like what is your ambition, where do you see yourself in the next few years, do you plan to study abroad?

Interview Preparation Tips

Topics to prepare for Hexagon Capability Center Software Engineer Intern interview:
  • SQL
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Just be cool and clear with your basics on OOPS, basic Data Structures and SQL.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Code pairing round - you will be given story where you need to add one API to the share repository. It is a simple problem but needs good understanding of the shared code. You should follow clean code pri...
  • Q2. Add one API to the existing repository
  • Ans. 

    The API allows users to retrieve weather data based on location.

    • Create a new endpoint that accepts a location parameter

    • Use a weather API service to fetch weather data based on the location

    • Return the weather data in a standardized format, such as JSON

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project you are working on, do some changes to the project, how well you understand the project
  • Q2. Add some feature to the project
  • Ans. 

    The feature added to the project is a user authentication system.

    • Implement a login page with username and password fields.

    • Create a database table to store user credentials.

    • Hash and salt passwords for secure storage.

    • Implement password reset functionality.

    • Add user roles and permissions for access control.

  • Answered by AI

Skills evaluated in this interview

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

Coding test regarding the tools and technologies

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about the connections
  • Q2. Questions on coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It's some what Moderate question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept, solid principles
Round 2 - Technical 

(1 Question)

  • Q1. Angular. oops, c#
Round 3 - Technical 

(1 Question)

  • Q1. Programs, oops, azure
Round 4 - HR 

(1 Question)

  • Q1. About company, Package negotiation, notice period
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. .Net Core 7 & MVC
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 - Technical 

(1 Question)

  • Q1. About technology and tech latest
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions about tech stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn new tech and hands on with the code you are wringing learn cloud
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. C++ Basic Question OOPS Data structures
Round 3 - Technical 

(1 Question)

  • Q1. Copy Constructors Polymorphism About Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics first.
Basics should be clear.
Also Implement whatever you learn
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is higher order component?
  • Ans. 

    Higher order component is a function that takes a component and returns a new component with additional functionality.

    • HOC is a design pattern in React

    • It allows code reuse, logic abstraction and composition

    • Examples include withRouter, connect, and memo

  • Answered by AI
  • Q2. What is context api?
  • Ans. 

    Context API is a way to manage global state in React applications.

    • Context API allows components to share data without passing props down the component tree.

    • It provides a way to avoid prop drilling and makes code more maintainable.

    • Context API consists of two parts: the Provider and the Consumer.

    • The Provider component allows data to be passed down to all child components.

    • The Consumer component allows components to access

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Discuss last salary and godhead for final round
Round 4 - HR 

(1 Question)

  • Q1. Discuss only expected package

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply. here not job security. North Indian peoples please don't apply here

Skills evaluated in this interview

I was interviewed in Aug 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Check if a linkedlist is palindrome
  • Ans. 

    To check if a linkedlist is palindrome or not

    • Traverse the linkedlist and push each element into a stack

    • Traverse the linkedlist again and compare each element with the popped element from the stack

    • If all elements match, then the linkedlist is palindrome

  • Answered by AI
  • Q2. Sort employees stream based on salary and department
  • Ans. 

    Sort employees by salary and department

    • Create a comparator function to compare salary and department

    • Use the comparator function with the sort() method on the employee stream

    • Return the sorted employee stream

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Count the duplicates in array
  • Ans. 

    Count duplicates in array of strings

    • Create a dictionary to store the count of each string

    • Loop through the array and increment the count in dictionary

    • Loop through the dictionary and count the duplicates

    • Return the count of duplicates

  • Answered by AI
Round 4 - Client Interview 

(1 Question)

  • Q1. Managerial questions about resolving team issues
  • Ans. How will you solve a blocker
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is of average difficulty, very easy and smooth process, helpful hrs

Skills evaluated in this interview

Round 1 - Aptitude Test 

Aptitude question like logical reason,verbal
Technical question like output of the programs,finding error.

Round 2 - Technical 

(1 Question)

  • Q1. 1 program and some technical questions how what,why?
Round 3 - Technical 

(1 Question)

  • Q1. 1 program and explain about it
  • Ans. 

    A web-based task management system

    • Allows users to create and assign tasks

    • Tracks progress and completion status

    • Includes notifications and reminders

    • Can be customized with different task types and priorities

  • Answered by AI
Round 4 - Assignment 

Question like,
tell me about your self
Goals
Achievement
Courses
Salary detail

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company but salary is not up to market.
Learning process of company is good.

Hexagon Capability Center Interview FAQs

How many rounds are there in Hexagon Capability Center Software Engineer Intern interview?
Hexagon Capability Center interview process usually has 3 rounds. The most common rounds in the Hexagon Capability Center interview process are Technical and HR.
What are the top questions asked in Hexagon Capability Center Software Engineer Intern interview?

Some of the top questions asked at the Hexagon Capability Center Software Engineer Intern interview -

  1. Find the output of the given psuedo code and other technical M...read more
  2. Write function to create a Linked L...read more
  3. OOPS theory questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
View all

Hexagon Capability Center Software Engineer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Developer
308 salaries
unlock blur

₹5.8 L/yr - ₹19 L/yr

Senior Software Engineer
290 salaries
unlock blur

₹5.5 L/yr - ₹17.5 L/yr

Software Developer
199 salaries
unlock blur

₹3.8 L/yr - ₹11 L/yr

Software Consultant
195 salaries
unlock blur

₹8.1 L/yr - ₹24.6 L/yr

Principal Software Developer
180 salaries
unlock blur

₹9.1 L/yr - ₹30.8 L/yr

Explore more salaries
Compare Hexagon Capability Center with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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