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

Filter interviews by

HexaView Technologies Applications Engineer Interview Questions and Answers

Updated 21 May 2024

6 Interview questions

An Applications Engineer was asked
Q. What is stable partition?
Ans. 

A stable partition ensures that equal elements retain their original order after sorting.

  • Stable partitioning maintains the relative order of equal elements.

  • Example: In sorting [3, 1, 2, 3], a stable sort keeps the first '3' before the second '3'.

  • Useful in applications where the order of similar items matters, like sorting records by name and then by age.

  • Algorithms like Merge Sort and Bubble Sort are stable, while ...

An Applications Engineer was asked
Q. 

Number Pattern Problem Statement

Given an integer 'N', print a specific pattern on 'N' lines where numbers are aligned in a particular format.

Example:

Input:
N = 4
Output:
   1
232
34543
4567654
Exp...
Ans. 

Print a specific number pattern on 'N' lines where numbers are aligned in a particular format.

  • Iterate through each row from 1 to N

  • Print spaces before the numbers based on the row number

  • Print numbers in increasing order up to the row number, then in decreasing order

Applications Engineer Interview Questions Asked at Other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length ... read more
Q2. Missing Number Problem Statement You are provided with an array n ... read more
Q3. Number Pattern Problem Statement Given an integer 'N', print a sp ... read more
Q4. Spiral Matrix Problem Statement You are given a N x M matrix of i ... read more
Q5. Pattern Printing Task You are tasked with printing a specific pat ... read more
An Applications Engineer was asked
Q. 

Pattern Printing Task

You are tasked with printing a specific pattern based on the given number of rows, 'N'. For any input value of 'N', generate and print a pattern as described in the example.

Input:

...
Ans. 

The task is to print a specific pattern based on the given number of rows, 'N'.

  • Iterate through each row and print the numbers in the specified pattern

  • Use loops to print the numbers in the required order

  • Ensure there is exactly one space between each value in a row

An Applications Engineer was asked
Q. 

Spiral Matrix Problem Statement

You are given a N x M matrix of integers. Your task is to return the spiral path of the matrix elements.

Input

The first line contains an integer 'T' which denotes the num...
Ans. 

The task is to return the spiral path of elements in a given matrix.

  • Iterate through the matrix in a spiral path by adjusting the boundaries of rows and columns.

  • Keep track of the direction of traversal (right, down, left, up) to form the spiral path.

  • Handle edge cases such as when the matrix is a single row or column.

  • Implement a function to print the spiral path of the matrix elements.

An Applications Engineer was asked
Q. 

Missing Number Problem Statement

You are provided with an array named BINARYNUMS consisting of N unique strings. Each string represents an integer in binary, covering every integer from 0 to N except for o...

Ans. 

Given an array of unique binary strings representing integers from 0 to N, find and return the missing integer's binary representation without leading zeros.

  • Iterate through the array of binary strings and convert each string to its decimal equivalent.

  • Calculate the sum of all integers from 0 to N using the formula (N * (N + 1)) / 2.

  • Subtract the sum of the converted integers from the total sum to find the missing in...

An Applications Engineer was asked
Q. 

Minimum Special Sum Problem

You are given an array ARR of length N. There are two operations defined for each index i in the array:

  1. FIRST_SUM(i): Calculates the sum of the first i numbers.
  2. LAST_SUM(i)...
Ans. 

Find the minimum special sum for each index in an array by calculating the sum of first and last elements.

  • Iterate through the array and calculate the special sum for each index using the given operations.

  • Keep track of the minimum special sum encountered so far.

  • Return the minimum special sum found for all indices in the array.

HexaView Technologies Applications Engineer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - MCQ 

(1 Question)

  • Q1. All questions were related to DSA OS DBMS
Round 2 - Technical 

(1 Question)

  • Q1. Question related to arrays
Round 3 - Technical 

(1 Question)

  • Q1. Project discussion and oops,DBMS, computer networks concepts
Round 4 - Technical 

(1 Question)

  • Q1. Que on stable partition
  • Ans. 

    A stable partition ensures that equal elements retain their original order after sorting.

    • Stable partitioning maintains the relative order of equal elements.

    • Example: In sorting [3, 1, 2, 3], a stable sort keeps the first '3' before the second '3'.

    • Useful in applications where the order of similar items matters, like sorting records by name and then by age.

    • Algorithms like Merge Sort and Bubble Sort are stable, while Quick...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise DSA well as the company focuses on DSA related question in each of the round of interview. Generally interviews goes with DSA problem and then last 10 min of rapid fire round of oops dbms concepts.

Applications Engineer Interview Questions & Answers

user image yash maheshwari

posted on 10 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 3 technical rounds , first two were coding and databases . Last one will be project + tech stack. Avg level of interview questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Coding Test 

ANY OF THE CODING PLATFORM

Round 2 - Technical 

(1 Question)

  • Q1. OOPS , SQL , LINKEDLIST

I appeared for an interview 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 Problem Statement

    You are provided with an array named BINARYNUMS consisting of N unique strings. Each string represents an integer in binary, covering every integer from 0 to N except for ...

  • Ans. 

    Given an array of unique binary strings representing integers from 0 to N, find and return the missing integer's binary representation without leading zeros.

    • Iterate through the array of binary strings and convert each string to its decimal equivalent.

    • Calculate the sum of all integers from 0 to N using the formula (N * (N + 1)) / 2.

    • Subtract the sum of the converted integers from the total sum to find the missing integer...

  • Answered by AI
  • Q2. 

    Minimum Special Sum Problem

    You are given an array ARR of length N. There are two operations defined for each index i in the array:

    1. FIRST_SUM(i): Calculates the sum of the first i numbers.
    2. LAST_SUM(i...
  • Ans. 

    Find the minimum special sum for each index in an array by calculating the sum of first and last elements.

    • Iterate through the array and calculate the special sum for each index using the given operations.

    • Keep track of the minimum special sum encountered so far.

    • Return the minimum special sum found for all indices in the array.

  • Answered by AI
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 Problem Statement

    Given an integer 'N', print a specific pattern on 'N' lines where numbers are aligned in a particular format.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34543
    4567654
    Ex...
  • Ans. 

    Print a specific number pattern on 'N' lines where numbers are aligned in a particular format.

    • Iterate through each row from 1 to N

    • Print spaces before the numbers based on the row number

    • Print numbers in increasing order up to the row number, then in decreasing order

  • Answered by AI
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. 

    Pattern Printing Task

    You are tasked with printing a specific pattern based on the given number of rows, 'N'. For any input value of 'N', generate and print a pattern as described in the example.

    Input:

    ...
  • Ans. 

    The task is to print a specific pattern based on the given number of rows, 'N'.

    • Iterate through each row and print the numbers in the specified pattern

    • Use loops to print the numbers in the required order

    • Ensure there is exactly one space between each value in a row

  • Answered by AI
  • Q2. 

    Spiral Matrix Problem Statement

    You are given a N x M matrix of integers. Your task is to return the spiral path of the matrix elements.

    Input

    The first line contains an integer 'T' which denotes the nu...
  • Ans. 

    The task is to return the spiral path of elements in a given matrix.

    • Iterate through the matrix in a spiral path by adjusting the boundaries of rows and columns.

    • Keep track of the direction of traversal (right, down, left, up) to form the spiral path.

    • Handle edge cases such as when the matrix is a single row or column.

    • Implement a function to print the spiral path of the matrix elements.

  • Answered by AI
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 trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about HexaView Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Test
Experience: It was nice set of mixed bag questions each challenging your brain to scratch more and find the trick.
Tips: Be calm in solving the questions, Practice few tricks to solve

work,time,distance,number series problem etc. quickly to help save the

time.
Duration: 20 minuntes minutes
Total Questions: 25

Round: Resume Shortlist
Experience: I think resume played a important role in selection processes.
Tips: Make it simple and HIGHLIGHT your good work and experiences.Interviewer don't have time to go through whole crap what we write so basically focus on highlighting your achievements and internships.

Round: Group Discussion
Experience: People are dying to take the opportunity and speak.You will be facing a fish market in few cases, rest it is calm and everyone is given a chance to put forward there point.
Tips: Generally u have to decide which side of the boat u want to be on.

Either go against the topic or in favor whichever you are more

comfortable with.

College Name: IIT ROORKEE

Interview Questionnaire 

18 Questions

  • Q1. Tell me about your yourself
  • Ans. 

    I am a detail-oriented business analyst with experience in data analysis and process improvement.

    • I have a Bachelor's degree in Business Administration

    • I have worked with various stakeholders to identify business needs and requirements

    • I am proficient in SQL and Excel for data analysis

    • I have experience in process improvement and project management

    • I am a strong communicator and collaborator

  • Answered by AI
  • Q2. Tell us about your training and internships
  • Ans. 

    I have completed a business analyst certification course and have interned at a software development company.

    • Completed a business analyst certification course from XYZ Institute

    • Interned at ABC Software Development Company for 6 months

    • Worked on requirement gathering, documentation and analysis for a project

    • Assisted senior business analysts in creating project plans and reports

  • Answered by AI
  • Q3. What is the role of Instrumentation Department? (my training)
  • Ans. 

    The Instrumentation Department is responsible for designing, installing, and maintaining control systems and instruments used in industrial processes.

    • Designing and implementing control systems for industrial processes

    • Installing and maintaining instruments used in industrial processes

    • Ensuring accuracy and reliability of instruments and control systems

    • Collaborating with other departments to optimize processes and improve...

  • Answered by AI
  • Q4. Why do you want to join Affine Analytics?
  • Ans. 

    I am excited to join Affine Analytics because of their reputation for delivering innovative solutions and their focus on employee growth.

    • Affine Analytics has a strong track record of delivering cutting-edge solutions to clients across industries.

    • I am impressed by the company's commitment to employee growth and development, as evidenced by their training and mentorship programs.

    • I am excited about the opportunity to work...

  • Answered by AI
  • Q5. Why Data anayltics? Why not a technical job in your field?
  • Ans. 

    Data analytics allows me to use my technical skills to solve business problems and make data-driven decisions.

    • Data analytics helps me to identify patterns and trends in data that can be used to improve business processes.

    • It allows me to work with large datasets and use statistical methods to extract insights.

    • I can use my technical skills to develop and implement data models and algorithms.

    • Data analytics is a growing fi...

  • Answered by AI
  • Q6. If I keep two diodes in series will it work as a transistor? (EC branch)
  • Ans. 

    No, two diodes in series cannot work as a transistor.

    • Transistors have three terminals while diodes have two.

    • Transistors can amplify signals while diodes cannot.

    • Transistors can be used as switches while diodes cannot.

    • Diodes in series will only increase the voltage drop.

    • Transistors have different modes of operation such as common emitter, common base, and common collector.

  • Answered by AI
  • Q7. What exactly have you accomplished with the drone? (my final year project)
  • Ans. 

    I developed a drone that can detect and monitor forest fires.

    • Designed and built a drone with thermal imaging camera

    • Integrated machine learning algorithm to detect fire

    • Tested and validated the drone in a controlled forest environment

    • Presented the project at a national engineering conference

  • Answered by AI
  • Q8. How frequently do you play Badminton? (Hobby)
  • Ans. 

    I play badminton twice a week as a hobby.

    • I enjoy playing badminton as a way to stay active and relieve stress.

    • I usually play with friends or family members at a local community center.

    • I have been playing badminton for several years and have improved my skills over time.

  • Answered by AI
  • Q9. Do you have any problem working in Bangalore?
  • Ans. 

    No, I don't have any problem working in Bangalore.

    • I am familiar with the city and its culture

    • I have worked in Bangalore before and enjoyed my experience

    • I am open to new experiences and challenges

    • I am willing to adapt to the local environment and work culture

  • Answered by AI
  • Q10. Do you have any questions for us?
  • Q11. Which football club do you follow? (My answer: Real Madrid) (Que based on hobby)
  • Q12. Why is Real Madrid your favorite?
  • Ans. 

    Real Madrid is my favorite because of their rich history, success, and style of play.

    • Real Madrid has won a record 13 Champions League titles, which is a testament to their success

    • Their style of play is attractive and entertaining to watch

    • The club has a rich history and has had some of the greatest players in football history, such as Cristiano Ronaldo and Zinedine Zidane

  • Answered by AI
  • Q13. Assume you are the CEO of Flipkart. Your board has decided to go App only. What factors would you consider before making your final decision. (You have the relevant data from your website of last 7 years ...
  • Ans. 

    Factors to consider before going App only as CEO of Flipkart

    • Analyze the data from website and app to understand user behavior

    • Evaluate the impact on sales and revenue

    • Consider the potential loss of customers who prefer website over app

    • Assess the cost of developing and maintaining the app

    • Evaluate the competition and their strategies

    • Consider the impact on brand image and customer loyalty

    • Assess the feasibility of providing ...

  • Answered by AI
  • Q14. The Horse Puzzle
  • Q15. 3 Ants triangle puzzle
  • Q16. 3 Jars puzzle (Apple/Orange puzzle)
  • Q17. I have two jars of 5 litres and 3 litres. How can I measure 4 litres? (Assume: Infinite supply of water and no third jar is present)
  • Q18. A revolver with 2 bullets puzzle

Interview Preparation Tips

Round: Test
Experience: The first 10 questions were Data Interpretation type. There were around 4 to 5 logic questions. The rest were quantitative questions.
The questions were pretty basic.
Tips: The aim is to check the speed of your calculations.
Duration: 30 minutes
Total Questions: 23

Round: Group Discussion
Tips: Speak relevant points and you will be fine.
High proficiency in English is a must.
Duration: 10 minutes

Round: Puzzle Interview
Experience: The interview was great and lasted around 35-40 minutes. The interviewer gave ample amount of time to solve the questions.
To answer the questions was ofcourse important but approach to your final answer is very important as well. If you already know the answer but fail to explain the approach to the interviewer, you will get rejected.
Tips: Keep the interviewer in the loop and keep explaining him what you are thinking.
Fluent English is very important as well.

Round: HR Interview
Experience: The interviewers were very friendly and the interview lasted around 15 min.
Tips: Have one or two favorite subject/s from which you can answer any question thrown at you.
Be well versed about your final year project.
Do not put rubbish in your resume as they read the entire resume.

Skills: Enthusiasm, Projects, Proficiency In English, Logical Puzzles, Logical Thinking
College Name: NIT Surat
Funny Moments: As the HR interviewer is an alumni of my college, we had some chat about the college. This made the interview mood very light.
Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. Mostly puzzles and one case study
  • Q2. They asked me questions about my interests and hobbies

Interview Preparation Tips

Round: Test
Experience: There were three sets of question paper. We were sitting according to our roll number then question paper with rough sheet were distributed and we were allowed 1 hour to finish that. There was no negative marking.
Tips: For aptitude practice data interpretation and data sufficiency
Duration: 1 hour
Total Questions: 30

Round: Group Discussion
Duration: 15 minutes

Round: Technical Interview
Tips: Practice puzzles and case study for this round

Round: HR Interview
Tips: Be yourself

College Name: NIT Rourkela

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

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

Interview Questionnaire 

3 Questions

  • Q1. SQL window functions
  • Q2. Basic SQL queries
  • Q3. Basic Power BI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be kind and humble and don't cheat. The interview will be a cup of cake if you even have some decent experience. Just get your basic right. There won't be much scenarios and coding questions

HexaView Technologies Interview FAQs

How many rounds are there in HexaView Technologies Applications Engineer 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 Coding Test.
How to prepare for HexaView Technologies Applications Engineer 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 Architecture, Coding and Database.
What are the top questions asked in HexaView Technologies Applications Engineer interview?

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

  1. Que on stable partit...read more
  2. Project discussion and oops,DBMS, computer networks conce...read more
  3. All questions were related to DSA OS D...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 33%
2-4 weeks 33%
4-6 weeks 33%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
DotPe Interview Questions
3.1
 • 42 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
View all
HexaView Technologies Applications Engineer Salary
based on 83 salaries
₹3.1 L/yr - ₹10 L/yr
14% less than the average Applications Engineer Salary in India
View more details

HexaView Technologies Applications Engineer Reviews and Ratings

based on 10 reviews

2.6/5

Rating in categories

2.9

Skill development

3.5

Work-life balance

2.6

Salary

3.4

Job security

3.6

Company culture

2.2

Promotions

2.7

Work satisfaction

Explore 10 Reviews and Ratings
Applications Engineer
83 salaries
unlock blur

₹3.1 L/yr - ₹10 L/yr

Member Technical Staff
62 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Senior Application Engineer
44 salaries
unlock blur

₹7.2 L/yr - ₹14 L/yr

Software Quality Engineer
42 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Software Quality Engineer
17 salaries
unlock blur

₹4.4 L/yr - ₹11.3 L/yr

Explore more salaries
Compare HexaView Technologies with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview