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, Process, and Tips

Updated 21 May 2024

Top HexaView Technologies Applications Engineer Interview Questions and Answers

  • 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 ev ...read more
  • 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: FIRST_SUM(i) : Calculates the sum of ...read more
  • Q3. 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 Outp ...read more

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

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

Applications Engineer Interview Questions Asked at Other Companies

Q1. Missing Number Problem Statement You are provided with an array n ... read more
Q2. Minimum Special Sum Problem You are given an array ARR of length ... 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
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

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 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.  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. 

    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. 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 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. 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. 

    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. 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 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. 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

HexaView Technologies interview questions for designations

 Associate Application Engineer

 (3)

 Associate Software Engineer

 (1)

 Trainee

 (1)

 Quality Analyst

 (1)

 Senior Associate

 (1)

Interview questions from similar companies

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

Round 1 - Aptitude Test 

Contains intermediate level aptitude and logical thinking

Round 2 - Aptitude Test 

Contain expert level aptitude, logical and problem solving questions. Paragraph writing is also a part of it

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How do you get to know about the company

Interview Preparation Tips

Topics to prepare for Zifo RnD Solutions Application Development Analyst interview:
  • Aptitude
  • Logical reasoning
  • Communication Skills
Interview preparation tips for other job seekers - Prepare well in the aptitude and logical reasoning

I applied via Company Website and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Programming Logic , SQL , shell Scripting

Interview Preparation Tips

Interview preparation tips for other job seekers - Programming

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. 3 technical rounds , first two were coding and databases . Last one will be pro...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.

HexaView Technologies Applications Engineer Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

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
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 283 Interviews
View all

Fast track your campus placements

View all
HexaView Technologies Applications Engineer Salary
based on 82 salaries
₹3.1 L/yr - ₹9 L/yr
15% 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
82 salaries
unlock blur

₹3.1 L/yr - ₹9 L/yr

Senior Application Engineer
43 salaries
unlock blur

₹7.2 L/yr - ₹18 L/yr

Member Technical Staff
35 salaries
unlock blur

₹6 L/yr - ₹10.5 L/yr

Software Quality Engineer
30 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Project Lead
16 salaries
unlock blur

₹7 L/yr - ₹10 L/yr

Explore more salaries
Compare HexaView Technologies with

Infosys

3.6
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