Upload Button Icon Add office photos
Engaged Employer

i

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

Amantya Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amantya Technologies Software Engineer Interview Questions and Answers

Updated 23 Aug 2024

Amantya Technologies Software Engineer Interview Experiences

13 interviews 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 in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Question based on array string linkedlist

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 

Duration:30 min
Question from percentage,ratios ,HCF/LCM etc.,
Logical reasoning, English

Round 3 - Coding Test 

(1 Question)

  • Q1. Reverse a string by making groups of given 'm' characters
  • Ans. 

    Reverse a string by grouping 'm' characters together

    • Iterate through the string in groups of 'm' characters

    • Reverse each group of 'm' characters

    • Concatenate the reversed groups to get the final reversed string

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. General HR questions
  • Q2. What is your family background?
  • Q3. Why should we hire you?

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me something about Data Sturcture

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Middleware , dependency injection
Round 3 - Technical 

(1 Question)

  • Q1. Subject and subject behaviour
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic coding questions with some aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Object oriented programming
  • Q2. ArrayList deleting even numbers
  • Ans. 

    Remove even numbers from an ArrayList in Java using various methods.

    • Use an iterator to safely remove elements while iterating: Example: Iterator<Integer> it = list.iterator(); while (it.hasNext()) { if (it.next() % 2 == 0) { it.remove(); } }

    • Use the removeIf method introduced in Java 8: Example: list.removeIf(n -> n % 2 == 0);

    • Create a new list and add only odd numbers: Example: ArrayL...

  • Answered by AI

I applied via Internshala and was interviewed in Sep 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 - Aptitude Test 

Includes basic aptitude question with additional questions based on coding languages fundamentals.....

Round 3 - Technical 

(2 Questions)

  • Q1. Question were based on oops concepts. My next question was write a code of binary search and explain it and lastly I was asked an aptitude question ...
  • Q2. Write a code of binary search and explain it
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array into two halves

    • Compare the target value with the middle element

    • If the target value matches the middle element, return its position

    • If the target value is less than the middle element, search the left half of the array

    • If the target value is greater than the middle element, search the right half of the arra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do work on your aptitude and practise Data structures and algorithms...

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic C++, Multithreading
  • Q2. Be prepared for a linked list question
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Feb 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 - Coding Test 

It consists of two questions one is easy and another have medium level

Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview panel consist of 3 persons and asked about OOPS concepts and implementation in C++
  • Q2. Asked about use of #define.
  • Ans. 

    The #define directive in C/C++ is used to create symbolic constants or macros for code readability and maintainability.

    • Defines constants: #define PI 3.14

    • Creates macros: #define SQUARE(x) ((x) * (x))

    • Improves code readability: #define MAX_BUFFER_SIZE 1024

    • Can lead to code bloat if overused: #define DEBUG_MODE

    • No type checking: #define is a preprocessor directive, not a variable

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amantya Technologies Software Engineer interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - If you are preparing for profile of software Engineer then keep updated yourself and practice more questions on DSA and basic of whatever language you are using .
Practice different questions on array and lsome standard questions of linked list, tree, binary tree, dynamic programming, binary search tree.

Software Engineer Interview Questions & Answers

user image Ashutosh Kumar Verma

posted on 7 Sep 2022

I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

40 question some were output question and many questions on Oops concept.

Round 2 - Technical 

(1 Question)

  • Q1. Basic concept of pointer, automata, operating systems

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with linked list and basic concept of the language that you choose.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

General aptitude and reasoning

Round 3 - Coding Test 

General coding questions

Round 4 - One-on-one 

(1 Question)

  • Q1. 2 medium coding questions, oops concepts and CS fundamentals
Round 5 - One-on-one 

(1 Question)

  • Q1. Linux basics, coding questions

Top trending discussions

View All
Interview Tips & Stories
2w
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 Amantya Technologies?
Ask anonymously on communities.

Amantya Technologies Interview FAQs

How many rounds are there in Amantya Technologies Software Engineer interview?
Amantya Technologies interview process usually has 2-3 rounds. The most common rounds in the Amantya Technologies interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Amantya Technologies 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 Amantya Technologies. The most common topics and skills that interviewers at Amantya Technologies expect are C++, Data Structures, C, 3G and Debugging.
What are the top questions asked in Amantya Technologies Software Engineer interview?

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

  1. Reverse a string by making groups of given 'm' charact...read more
  2. Write a code of binary search and explain...read more
  3. Tell me something about Data Sturct...read more
What are the most common questions asked in Amantya Technologies Software Engineer HR round?

The most common HR questions asked in Amantya Technologies Software Engineer interview are -

  1. What is your family backgrou...read more
  2. Why should we hire y...read more
How long is the Amantya Technologies Software Engineer interview process?

The duration of Amantya Technologies Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 9 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more
Amantya Technologies Software Engineer Salary
based on 300 salaries
₹5 L/yr - ₹11.5 L/yr
14% less than the average Software Engineer Salary in India
View more details

Amantya Technologies Software Engineer Reviews and Ratings

based on 46 reviews

3.4/5

Rating in categories

3.7

Skill development

3.1

Work-life balance

3.3

Salary

3.3

Job security

3.2

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 46 Reviews and Ratings
Software Engineer
300 salaries
unlock blur

₹5 L/yr - ₹11.5 L/yr

Senior Software Engineer
154 salaries
unlock blur

₹12 L/yr - ₹20.2 L/yr

Technical Lead
100 salaries
unlock blur

₹18 L/yr - ₹30 L/yr

Software Developer
53 salaries
unlock blur

₹5 L/yr - ₹17.8 L/yr

Senior Test Engineer
24 salaries
unlock blur

₹7.1 L/yr - ₹20 L/yr

Explore more salaries
Compare Amantya Technologies with

Softenger

4.0
Compare

Capital Numbers Infotech

4.4
Compare

JK Tech

3.6
Compare

DesignTech Systems

3.3
Compare
write
Share an Interview