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 Associate Software Engineer Interview Questions and Answers

Updated 13 Oct 2023

HexaView Technologies Associate Software Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java questions - basic oops concepts
  • Q2. Basic sql queries and table creation, joints were asked
Round 2 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Initially 1 aptitude round was there and english essay was there in. Then those who were selected in this round they will be into tech and then hr round. Searching job is like you should never lose hope and take the failure as stepping stones.keep on self motivating and dont hestitate to give ur best on 50 th interview if not getting selected till 49 interviews.ur name may be written in that. Stay positive and upgrade your skills

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Programming Language, SQL Queries, OOPS Concepts, Certifications and Questions on Projects and Certifications done.

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Describe last project. What is entity framework?
  • Ans. 

    Entity Framework is an ORM tool used to map database tables to classes in .NET applications.

    • Entity Framework simplifies database access by allowing developers to work with objects instead of SQL statements.

    • It supports various database providers such as SQL Server, MySQL, and Oracle.

    • It provides features like LINQ to Entities, automatic change tracking, and database migrations.

    • Example: In my last project, I used Entity F...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 girls and they just took 2 minutes and wrap up the interview. Bad experience.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Pretty easy test, 100 questions in 180 minutes. After that a GD round, then Technical round then HR round.

Round 2 - Group Discussion 

Kind of essay writing

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are eager to learn, they will definitely hire you.

I applied via Naukri.com and was interviewed before Aug 2021. 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 tips
Round 2 - Aptitude Test 

1 hr
Aptitude, general engilsh

Round 3 - Technical 

(1 Question)

  • Q1. About final year projects and some questions about general programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for aptitude tests and have strong knowledge in your projects

I applied via Campus Placement and was interviewed before Nov 2021. 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 tips
Round 2 - Aptitude Test 

It was easy to complete aptitude test

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. They was asked about location

Interview Preparation Tips

Interview preparation tips for other job seekers - Mphasis is a good company in IT field and it is a top mnc company

I applied via Campus Placement and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Projects in Engineering
  • Ans. 

    Projects in engineering involve designing, building, and testing systems and structures to solve problems.

    • Identify problem and constraints

    • Design solution and create blueprints

    • Build and test prototype

    • Refine design based on testing results

    • Implement final solution

    • Examples: building a bridge, designing a new software application

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong and confident while saying answers. Instead of sitting silent speak in friendly way.

I applied via Campus Placement and was interviewed before Oct 2019. There were 6 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is String buffer and string builder ?
  • Ans. 

    String buffer and string builder are classes in Java used for manipulating strings.

    • String buffer is a mutable sequence of characters that can be modified without creating a new object.

    • String builder is similar to string buffer but is not synchronized, making it faster in single-threaded applications.

    • Both classes provide methods for appending, inserting, deleting, and replacing characters in a string.

    • Example: StringBuff...

  • Answered by AI
  • Q2. Write a code for palindrome in any language like c c++ or c#?
  • Ans. 

    Code for palindrome in any language like c c++ or c#

    • Take input string from user

    • Reverse the string

    • Compare original and reversed string

    • If same, then it is a palindrome

  • Answered by AI
  • Q3. What is oops concepts explain all ?
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details

    • Example: A car is an object that encapsulates data like speed and functions like accelerate and brake

    • Example: A child class can inherit properti...

  • Answered by AI
  • Q4. What is collections in java?
  • Ans. 

    Collections in Java are pre-built data structures that allow storing and manipulating groups of objects.

    • Collections provide a set of interfaces and classes to work with data structures like lists, sets, maps, etc.

    • They offer various methods to add, remove, search, sort, and iterate over elements in the collection.

    • Examples of collections include ArrayList, HashSet, TreeMap, etc.

    • Collections framework is part of the Java A...

  • Answered by AI
  • Q5. What is the difference between encapsulation and abstraction?
  • Ans. 

    Encapsulation is hiding implementation details while abstraction is hiding unnecessary details.

    • Encapsulation is achieved through access modifiers like private, protected, and public.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsulation is used to protect data from outside interference.

    • Abstraction is used to provide a simplified view of a complex system.

    • Example of encapsulation: Getters and sette...

  • Answered by AI
  • Q6. Explain your acedamic project ?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was totally technical first there was aptitude round then second one is technical and third one is program writing round.I will suggest just prepare small small codes like palindrome, factorial etc which will help you to crack the coding part some companies ask this type of codes to write.prepare OOPS concepts which is the most important part of software development ......

Skills evaluated in this interview

I applied via Company Website and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

TNQT: TCS National Qualifier Test

Round 2 - Technical 

(1 Question)

  • Q1. All technical questions related to your project and basic understanding of any programming language. Basically questions from your resume will be asked.
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, TCS is not tough to get into. But getting good project is a main cookie to be cracked.

HexaView Technologies Interview FAQs

How many rounds are there in HexaView Technologies Associate Software Engineer interview?
HexaView Technologies interview process usually has 3 rounds. The most common rounds in the HexaView Technologies interview process are Technical and Resume Shortlist.
What are the top questions asked in HexaView Technologies Associate Software Engineer interview?

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

  1. ACID Propert...read more
  2. OOPs Concept, Database Conce...read more
  3. Java Interface, Java Cl...read more

Tell us how to improve this page.

HexaView Technologies Associate Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Fast track your campus placements

View all
HexaView Technologies Associate Software Engineer Salary
based on 5 salaries
₹5 L/yr - ₹9 L/yr
15% more than the average Associate Software Engineer Salary in India
View more details
Applications Engineer
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Quality Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Lead
16 salaries
unlock blur

₹0 L/yr - ₹0 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