Upload Button Icon Add office photos
Engaged Employer

i

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

Axtria Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Axtria Software Developer Interview Questions and Answers

Updated 26 May 2023

Axtria Software Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Normal apti questions.

Round 3 - Technical 

(1 Question)

  • Q1. About you experience in previous organization.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 basic test. online.

Round 3 - Coding Test 

2 questions on arrays. online.

Round 4 - Group Discussion 

The general topic. Be point to point

Round 5 - Technical 

(1 Question)

  • Q1. SQL and Python questions. online. screen sharing

Interview Questionnaire 

1 Question

  • Q1. As a Asp.net developer I advise to all to have good understanding of c#. Because it is the core concept on which basis you can trackle an Interview.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Arithmetic questions and logical

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude auestions were there

Round 2 - Coding Test 

In this round 14 mcq and 2 sql queries were given

Interview Preparation Tips

Interview preparation tips for other job seekers - keep going...

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

Round 1 - Technical 

(1 Question)

  • Q1. Fundamentals based upon the role
Round 2 - Technical 

(1 Question)

  • Q1. Basic advance question into the technical skills like if you’re applying for backend role and your preferred language is java then how does the stack and queue works

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Software Developer interview:
  • Javascript
  • promises
  • Timing Closure
  • React.Js
  • Router
  • axios
  • crud operations
Interview preparation tips for other job seekers - You can enhance your technical skills while working but what they Check is your logic and approach towards the problem

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Fruits and Baskets Problem Statement

    You are given 'n' fruit trees planted along a road, numbered from 0 to n-1. Each tree bears a fruit type represented by an uppercase English alphabet. A Ninja walking ...

  • Ans. 

    The problem is to find the maximum number of fruits the Ninja can put in both baskets after satisfying given conditions.

    • The Ninja can start at any tree and end at any tree, but cannot skip a tree.

    • He can pick one fruit from each tree until he cannot, i.e., when he has to pick a fruit of the third type.

    • The restriction is that each basket can have only one type of fruit.

    • We need to find the maximum number of fruits that ca

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

Was Shortlisted For this round with in total of 22 students, 7 in my profile.
It was Technical round with 30 mins of time allotted.
The interviewer was friendly, started with basic questions about me followed by project specific and then a puzzle.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    The problem requires sorting an array of 0s, 1s, and 2s in a single scan.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s.

    • Initialize the low pointer at the beginning of the array and the high pointer at the end.

    • Iterate through the array using a current pointer and swap elements based on their values.

    • Move the pointers accordingly until the array is sorted.

    • The time complexity of this solution is O(N) a

  • Answered by AI
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Hard

The interview was scheduled for 15 mins and 12 students were shortlisted for this round. 5 in my profile.
The interviewer didn't on his video whereas mine was, the interviewer was friendly and maintained a poker voice.
Asked Basic HR questions but crossed questioned several times.

Interview Preparation Tips

Eligibility criteria6.5 CGPAQuantiphi interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS Concepts, Machine Learning (Basic Theory), Operating sysytem, Database Management System, Computer NetworksTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 :Practice at least 3-4 coding questions daily. Start from basics of Pointers and Array and progress to Algo and Data structure specific like DP and Graphs. Try to time your sessions into 15-20 mins. 
Tip 2 : Have Patience don't rush into problem solving, understand the Algo/Data structure first and then look for common problems for a particular Algo/Data structure.
Tip 3 : Have Basic Knowledge about all CS subjects, no need for in depth. Just cover Top 100 interview questions for each subject and topics covered in GFG and CodeStudio.

Application resume tips for other job seekers

Tip 1 : Have at least 3-4 Projects in your resume but on diverse bases, like 1 ML based, 1-2 DBMS 1 with Computer vision/ Frontend. Don't obsess over internships so much.
Tip 2 : Be well verse with projects you put in resume, and specify your particular job role if a team project.
Tip 3 : Mention some extra curricular activities or Interests and hobbies (Non Tech) , if you sync with interviewer then it could be beneficial.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 - One-on-one 

(2 Questions)

  • Q1. What is treeset and weakhashmap?
  • Ans. 

    TreeSet is a sorted set implementation in Java. WeakHashMap is a hash table-based Map implementation with weak keys.

    • TreeSet is implemented using a tree structure and maintains elements in sorted order.

    • WeakHashMap is a Map implementation that allows keys to be garbage collected when they are no longer referenced.

    • WeakHashMap is useful for caching or memoization where the keys are not always needed and can be garbage coll

  • Answered by AI
  • Q2. What is comparable and comparator?
  • Ans. 

    Comparable and Comparator are interfaces used for sorting objects in Java.

    • Comparable interface is used to define the natural ordering of objects based on their own class.

    • Comparator interface is used to define the ordering of objects based on a separate class.

    • Comparable interface has compareTo() method while Comparator interface has compare() method.

    • Comparable interface is implemented by the class whose objects need to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they asked questions based on core java springboot

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2022. There were 4 interview rounds.

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

Basic dsa plus aptitude total of 50 ques

Round 3 - Technical 

(1 Question)

  • Q1. Array and array matrix coding question and some logical question
Round 4 - HR 

(1 Question)

  • Q1. Noarmal hr question and then some logical tricky question , situation based question

Interview Preparation Tips

Interview preparation tips for other job seekers - logical question read throughly plus dsa question were not that hard
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Looker developer
  • Q2. Sql server
Round 2 - Technical 

(2 Questions)

  • Q1. Looker developer
  • Q2. Sql server

Axtria Interview FAQs

How many rounds are there in Axtria Software Developer interview?
Axtria interview process usually has 3 rounds. The most common rounds in the Axtria interview process are Technical, Resume Shortlist and Aptitude Test.

Tell us how to improve this page.

Axtria Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Axtria Software Developer Salary
based on 5 salaries
₹11 L/yr - ₹19.6 L/yr
73% more than the average Software Developer Salary in India
View more details

Axtria Software Developer Reviews and Ratings

based on 2 reviews

4.1/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
Senior Associate
874 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
662 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Lead
619 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
469 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
239 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Axtria with

Mu Sigma

2.6
Compare

Fractal Analytics

4.0
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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