Upload Button Icon Add office photos
Engaged Employer

i

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

HexaView Technologies Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 76 Reviews

Filter interviews by

HexaView Technologies Interview Questions, Process, and Tips

Updated 5 Dec 2024

Top HexaView Technologies Interview Questions and Answers

View all 18 questions

HexaView Technologies Interview Experiences

Popular Designations

15 interviews found

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

I was interviewed before May 2023.

Round 1 - Coding Test 

ANY OF THE CODING PLATFORM

Round 2 - Technical 

(1 Question)

  • Q1. OOPS , SQL , LINKEDLIST

Top HexaView Technologies Applications Engineer Interview Questions and Answers

Q1. Missing NumberYou are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is ... read more
View answer (4)

Applications Engineer Interview Questions asked at other Companies

Q1. Missing NumberYou are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is ... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. OOPs Concept, Database Concept.
  • Q2. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are independent of each other

    • ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Java Interface, Java Class

Interview Preparation Tips

Interview preparation tips for other job seekers - Java, OOPs, and Database

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)
HexaView Technologies Interview Questions and Answers for Freshers
illustration image

I was interviewed in Feb 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Medium

First-round was the Coding round on Skype in the morning around 10 am.

We had to write programs on paper and share the photo personally on Skype with the Interviewer.

There were set including 2 questions.

We had the choice of writing the program in C,C++,Java,C# (Python was strictly Prohibited).
Time allotted for both programs- 40 minutes

We had to implement the given function only (it was mandatory) and had to write the complexity of the problem also.

We had to keep our Camera ON failing to which candidate could have face on-the-spot rejection.

  • Q1. Missing Number

    You are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to...

  • Ans.  Convert to integers (Sorting)

    In this approach, we will create an array of integers ‘nums’, by converting each string present in list ‘binaryNums’ in the integers they represent.

    A binary string can be converted into a respective integer by simply traversing from rightmost character (least significant bit) to leftmost character (most significant bit) and for each position of set bit i.e (index where char is ‘1’) we add ...

  • Answered Anonymously
  • Q2. Special Sum

    You are given an array ‘ARR’ of length ‘N’. There are two operations, ‘FIRST_SUM’ and ‘LAST_SUM’ for every index ‘i’ (1 <= i <= N) in the array,

    i) FIRST_SUM(i) calculates the sum of fi...

  • Ans. Brute force

    The main idea is to calculate the ‘FIRST_SUM’ and the ‘LAST_SUM’ for every index ‘i’ between [0, N - 1].

     

    • FIRST_SUM can be calculated easily by looping from range 0 to the ‘ith’ number we want and adding all of the numbers.
    • Similarly, LAST_SUM can be calculated easily by looping from (N - 1)th element to the (N - i - 1)th element and adding all the numbers in between.
    • Maintain a variable ‘MIN_SPECIAL_SUM’ ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Medium

Second round was the technical round which held after 4 hours of the coding round same day (at 2 pm). In my second round, Interviewer asked the questions from Data structures and algorithms, OOPS concepts, DBMS, one puzzle and one chess question (because in my introduction I said that I am a chess player)

Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

The second round held same day after the first technical round. The second round was bit tough. He started asking some fundamentals questions from DS Algo, OOPs, DBMS, and other CS stuff and then he gradually increased the difficulty of the questions. At last, he asked me to write the code to print the pattern he gave, which I was able to do so he was impressed.

  • Q1. Number Pattern

    Pattern for N = 4

    The dots represent spaces.



    Input Format :
    N (Total no.

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
Round 4 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Hard

The fourth and final technical round held the same day. He first asked me to send my resume to him through chat then he asked me questions related to my projects and skills. At last he gave me two coding problems and one riddle.

  • Q1. Print the Pattern

    Ninja is given a pattern. Now he is asked to print the same pattern for any given ‘N’ number of rows.

    Note:

    There is only one space between the values of each column in a row.
    
    For exa...
  • Ans. Observation

    We can observe that there are ‘N’ numbers of rows (where ‘N’ is the total number of rows to be printed). Each row contains a different value in the first column and its value increments by 1 for each subsequent column.

     

    Algorithm:

     

    • Declare an array of strings for storing the pattern.
    • Declare a variable ‘startValue’  and initialize its value to 1.
    • Declare a variable ‘row’ for keeping track of the n...
  • Answered Anonymously
  • Q2. Spiral Matrix

    You are given a N x M matrix of integers, return the spiral path of the matrix

    Example Of Spiral Path

    Input Format:
    The first line contains an integer 'T' which denotes the numb...

  • Ans. Spiral Matrix

    Divide the matrix into loops. Print all the elements in the clockwise order from the first-outer layer, followed by the elements from the second outer layer, and so on. Use four loops to print all the elements. Every ‘for’ loop defines a single direction movement along with the matrix. The first loop represents the movement from left to right, the second loop represents the movement from top to bottom, the...

  • Answered Anonymously
Round 5 - HR 

Round duration - 60 Minutes
Round difficulty - Medium

He asked me some general Questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Madan Mohan Malaviya University Of Technology. I applied for the job as Application Engineer in NoidaEligibility criteriaNo criteriaHexaview Tech interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, Algorithms, DBMS, Puzzles.Time required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Search Top Interview question of your topic on google and read thoroughly.
Tip 2 : Be prepared for general Questions also. For e.g., Tell me something about yourself, why do you want to join, about the company etc.
Tip 3 : Practice as many questions as you can as it will help you to build logic in short time.
Tip 4 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Make short, up to the point things in your resume.
Tip 2 : Mention your projects, skills, and experiences in detail.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top HexaView Technologies Applications Engineer Interview Questions and Answers

Q1. Missing NumberYou are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is ... read more
View answer (4)

Applications Engineer Interview Questions asked at other Companies

Q1. Missing NumberYou are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is ... read more
View answer (4)

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Questions on data arrays and linked list.
  • Q2. Questions on Oops.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with data structures and algorithms. All round will be live coding on ide.

Associate Application Engineer Interview Questions asked at other Companies

Q1. Design of algorithms and puzzles and DBMS
View answer (1)

HexaView Technologies interview questions for popular designations

 Applications Engineer

 (4)

 Associate Application Engineer

 (3)

 Associate Business Analyst

 (1)

 Associate Software Engineer

 (1)

 Member Technical Staff

 (1)

 Member Technical Staff 1

 (1)

 Quality Analyst

 (1)

 Senior Data Scientist

 (1)

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Wildcard Pattern Matching

    Given a text and a wildcard pattern of size N and M respectively, implement a wildcard pattern matching algorithm that finds if the wildcard pattern is matched with the text. The ...

  • Ans. Brute Force

    We will try to explore all the possibilities using the recursion.

     

    Let’s say we have a recursive function ‘REC’ who has two arguments IDX and IDY where IDX represents the index in the text string and IDY represents the index in pattern string and its return type is boolean. Initially, we will call the rec with IDX =  N and IDY = M where N is the size of the text string and M is the size of the patte...

  • Answered Anonymously
  • Q2. Time To Burn Tree

    You have been given a binary tree of 'N' unique nodes and a Start node from where the tree will start to burn. Given that the Start node will always exist in the tree, your task i...

  • Ans. Using BFS

    The idea is to first create an undirected graph of the given binary tree and then doing a bfs traversal of the undirected graph starting from the start node. We will keep a variable ‘count’ that will be incremented at each level of bfs traversal. ‘count-1’ is the required time needed to burn the whole tree.

     

    Algorithm

     

    • Initialize an unordered map ‘M’ that maps from integer to array of integers that sto...
  • Answered Anonymously
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteriaClear paperHexaview Tech interview preparation:Topics to prepare for the interview - Data structures , Python , C++ , Algorithms and design , OOPs , Software testingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have some knowledge of the role
Tip 2 : basics were clear

Application resume tips for other job seekers

Tip 1 : Have projects and internships 
Tip 2 : Have good skills with proper knowledge

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top HexaView Technologies Interview Questions

Contribute & help others!
anonymous
You can choose to be anonymous

HexaView Technologies Interview FAQs

How many rounds are there in HexaView Technologies interview?
HexaView Technologies interview process usually has 2-3 rounds. The most common rounds in the HexaView Technologies interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for HexaView Technologies interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at HexaView Technologies. The most common topics and skills that interviewers at HexaView Technologies expect are Python, Analytical skills, Java, MySQL and Translation.
What are the top questions asked in HexaView Technologies interview?

Some of the top questions asked at the HexaView Technologies interview -

  1. How many times we can subtract 10 from 1...read more
  2. Valid parenthesis (all approaches ) time and space complexity and past projec...read more
  3. Design of algorithms and puzzles and D...read more

Tell us how to improve this page.

HexaView Technologies Interview Process

based on 6 interviews in last 1 year

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
Cyient Interview Questions
3.7
 • 279 Interviews
View all

Fast track your campus placements

View all

HexaView Technologies Reviews and Ratings

based on 76 reviews

3.3/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

3.0

Salary

3.5

Job security

3.4

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 76 Reviews and Ratings
Applications Engineer
77 salaries
unlock blur

₹3.1 L/yr - ₹9 L/yr

Senior Application Engineer
40 salaries
unlock blur

₹7.2 L/yr - ₹18 L/yr

Member Technical Staff
34 salaries
unlock blur

₹6 L/yr - ₹10.5 L/yr

Software Quality Engineer
27 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Software Developer
24 salaries
unlock blur

₹5.5 L/yr - ₹9.7 L/yr

Explore more salaries
Compare HexaView Technologies with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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