Upload Button Icon Add office photos
Engaged Employer

i

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

AH INFOTECH Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 26 Reviews

Filter interviews by

AH INFOTECH Software Engineer Interview Questions and Answers

Updated 9 Jun 2024

AH INFOTECH Software Engineer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Core Java Full concept
  • Q2. Collection And Basic Array & Sting Question
Round 2 - HR 

(2 Questions)

  • Q1. Basic Discussion
  • Q2. Salary Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - As a fresher you can join this company then you will get the knowledge you will get a good environment as well as you will growth your technical skills...

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS in Java.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. What is a constructor in Java?
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects.

    • Constructors have the same name as the class they are in.

    • They do not have a return type, not even void.

    • Constructors are called when an object of a class is created.

    • Example: public class Car { public Car() { // constructor code } }

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions, medium hard

Round 2 - Technical 

(2 Questions)

  • Q1. Greedy Algorithm, simple jumps question, easily approachable by greedy algorithm
  • Q2. Binary Search, simple array based
Round 3 - Technical 

(2 Questions)

  • Q1. DBMS, Projects, SQL Queries
  • Q2. 2 coding questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the modules worked on Facets?
  • Q2. What is Dental claim processing?
Round 2 - HR 

(2 Questions)

  • Q1. What is your work experience
  • Q2. Is working timing flexible

Interview Preparation Tips

Topics to prepare for Programmers.io Software Engineer interview:
  • Facets
  • Oracle SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Group Discussion 

Initially, they shortlist the candidates and group them into batches of 15 students. During this process, they conduct a group discussion (GD) in which each student has 3 minutes to think, followed by an opportunity to describe their points in 2 to 3 minutes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and express your point clearly.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of Triggers in ADF
  • Ans. 

    Types of triggers in Azure Data Factory include schedule, tumbling window, event-based, and manual.

    • Schedule trigger allows you to run pipelines on a specified schedule

    • Tumbling window trigger runs pipelines at specified time intervals

    • Event-based trigger runs pipelines based on events like file arrival or HTTP request

    • Manual trigger allows you to manually trigger pipeline runs

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding questions on Javascript

Round 2 - One-on-one 

(1 Question)

  • Q1. Coding questions were asked
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. IAM & PAM Operations
  • Q2. Related to Sailpoint

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

45 questions were asked

Round 2 - Coding Test 

3 questions were asked one from SQL and 2 from java

Round 3 - One-on-one 

(1 Question)

  • Q1. Oops concepts and java basics
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Thapar Institute of Engineering and Technology (TIET) and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There were 13 MCQ questions on DSA, 17 MCQ aptitude questions, and 2 coding questions.

Round 2 - Technical 

(6 Questions)

  • Q1. There's a string s1,s2 and s3. s1 and s2 are divided into n and m parts respectively. check if, after interleaving strings s1 and s2, we get s3 as one of the answers.
  • Ans. 

    Check if after interleaving strings s1 and s2, we get s3 as one of the answers.

    • Create a recursive function to check all possible interleavings of s1 and s2

    • Check if the current interleaving matches s3

    • Return true if a valid interleaving is found, false otherwise

  • Answered by AI
  • Q2. Difference between cluster and non-cluster indexing. Do you know about database indexing?
  • Ans. 

    Cluster indexing physically reorders the data on disk to match the index, while non-cluster indexing does not.

    • Cluster indexing physically reorders the data on disk to match the index structure, leading to faster retrieval of data.

    • Non-cluster indexing creates a separate data structure that points to the actual data, which may result in slower retrieval times.

    • Cluster indexing is typically used in primary keys, while non-...

  • Answered by AI
  • Q3. Difference between stack and heap memory.
  • Ans. 

    Stack memory is used for static memory allocation and follows a Last In First Out (LIFO) structure, while heap memory is used for dynamic memory allocation and has a more flexible structure.

    • Stack memory is limited in size and is typically faster to access compared to heap memory.

    • Variables stored in stack memory have a fixed size determined at compile time, while variables in heap memory can have a size determined at ru...

  • Answered by AI
  • Q4. What is a stable sort?
  • Ans. 

    A stable sort is a sorting algorithm that preserves the relative order of equal elements in the sorted output.

    • Stable sorts are useful when the original order of equal elements needs to be maintained.

    • Examples of stable sorting algorithms include Merge Sort, Bubble Sort, and Insertion Sort.

    • In a stable sort, if two elements have the same key value, their relative order in the original array is preserved in the sorted arra

  • Answered by AI
  • Q5. What's the time complexity of insertion in a hashmap?
  • Ans. 

    Time complexity of insertion in a hashmap is O(1).

    • Insertion in a hashmap has a constant time complexity of O(1) on average.

    • This is because hashmaps use a hashing function to determine the index where the key-value pair should be stored.

    • Even in the worst-case scenario, where there are collisions, the time complexity is still O(1) due to techniques like chaining or open addressing.

    • Example: Inserting a key-value pair into...

  • Answered by AI
  • Q6. What is hashing?
  • Ans. 

    Hashing is a process of converting input data into a fixed-size string of bytes using a hash function.

    • Hashing is used to securely store passwords by converting them into a hash value.

    • Hashing is used in data structures like hash tables to quickly retrieve data based on a key.

    • Common hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and take you time gathering your thoughts before answering.

Skills evaluated in this interview

AH INFOTECH Interview FAQs

How many rounds are there in AH INFOTECH Software Engineer interview?
AH INFOTECH interview process usually has 2 rounds. The most common rounds in the AH INFOTECH interview process are Technical and HR.
How to prepare for AH INFOTECH Software 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 AH INFOTECH. The most common topics and skills that interviewers at AH INFOTECH expect are .Net, Azure, Java, Microsoft Technologies and Programming.
What are the top questions asked in AH INFOTECH Software Engineer interview?

Some of the top questions asked at the AH INFOTECH Software Engineer interview -

  1. Collection And Basic Array & Sting Quest...read more
  2. Core Java Full conc...read more
  3. Basic Discuss...read more

Tell us how to improve this page.

AH INFOTECH Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
AH INFOTECH Software Engineer Salary
based on 10 salaries
₹4.5 L/yr - ₹9 L/yr
25% less than the average Software Engineer Salary in India
View more details

AH INFOTECH Software Engineer Reviews and Ratings

based on 3 reviews

4.3/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

3.8

Salary

5.0

Job security

4.3

Company culture

4.3

Promotions

4.8

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
10 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Software Engineer
10 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Devops Engineer
7 salaries
unlock blur

₹4.4 L/yr - ₹9 L/yr

Senior Test Engineer
7 salaries
unlock blur

₹4.2 L/yr - ₹7.2 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Explore more salaries
Compare AH INFOTECH with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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