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

Updated 21 Jun 2024

Axtria Lead Software Engineer Interview Experiences

2 interviews found

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

General Aptitude round with 60 questions

Round 3 - One-on-one 

(1 Question)

  • Q1. GeeksForGeeks puzzles and tricky questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Manual testing, no automation scope

Interview Preparation Tips

Interview preparation tips for other job seekers - Top management creates a lot of issues. Not good

Lead Software Engineer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Square Root with Decimal Precision Problem Statement You are prov ... read more
asked in Freshworks
Q2. Longest Unique Substring Problem Statement Given a string input o ... read more
asked in Freshworks
Q3. Vertical Order Traversal Problem Statement You are given a binary ... read more
asked in Freshworks
Q4. Zig-Zag Conversion Problem Statement You are given a string S and ... read more
asked in Epsilon
Q5. If we have 2 tables with the same schema, one table has indexes a ... read more

Interview questions from similar companies

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

Hacker rank exam, 2 DSA coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Backend questions on spring boot
  • Q2. Angular routing and service
Round 3 - HR 

(2 Questions)

  • Q1. Cultural fit question
  • Q2. And prior job experience and mental ability test

I applied via Referral and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked the questions like scenario based question. Dot net core, web api and angular question. Mainly they concentrate on solid principles and design patterns questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good .
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of oops, .net framework and .net core
  • Q2. Sql query for student department id
  • Ans. 

    SQL query to retrieve student department id.

    • Use SELECT statement to retrieve data

    • Specify the columns to be selected, including the department id column

    • Specify the table where the student data is stored

    • Use WHERE clause to filter the results based on student information

  • Answered by AI
  • Q3. Solid principles and design patterns
Round 2 - Technical 

(2 Questions)

  • Q1. Asked to code palindrome
  • Q2. Code duplicate string from main string and get index of sub string
  • Ans. 

    Code to find index of sub string in main string and duplicate the sub string

    • Use a loop to iterate through the main string and check for the sub string

    • If sub string is found, duplicate it and store the index

    • Return the index of the duplicated sub string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Manager asked me to code the count index of substring and sum of substring
  • Q2. Questions as HR informed, it was worst and all interviews were scheduled at night time.he was more technical than the second round team lead instead of asking manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - worst manager round and salary is also provided less compared to market rate.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Normal online code / frontend test

Round 2 - Technical 

(1 Question)

  • Q1. How would you build book my show
  • Ans. 

    Designing and building a platform similar to BookMyShow involves creating a user-friendly interface for booking tickets for various events.

    • Develop a user-friendly website and mobile app for users to browse and book tickets for movies, concerts, plays, etc.

    • Implement a secure payment gateway for users to make online transactions.

    • Integrate a database to store information about events, venues, tickets, and user bookings.

    • In...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Solid principals, awareness of patterns
Round 4 - Technical 

(1 Question)

  • Q1. How would you build tinyurl like service, systems designs
  • Ans. 

    To build a tinyurl-like service, design a system with a URL shortening algorithm, a database to store mappings, and a redirect service.

    • Use a hashing algorithm to generate short URLs from long URLs (e.g. MD5, SHA-256).

    • Store the mappings of short URLs to long URLs in a database (e.g. MySQL, Redis).

    • Implement a redirect service that takes a short URL, looks up the corresponding long URL in the database, and redirects the u...

  • Answered by AI
Round 5 - One-on-one 

(1 Question)

  • Q1. Non-technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - no reply after giving so many rounds.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. String based questions in java
  • Q2. What are the fundamental concepts of Java?
Round 2 - Coding Test 

Java based questions and few DSA questions

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

(2 Questions)

  • Q1. Easy array problem
  • Q2. Easy tree traversal problem
  • Ans. 

    Implement tree traversal algorithm to visit each node in a tree structure

    • Use depth-first search (DFS) or breadth-first search (BFS) to traverse the tree

    • DFS can be implemented using recursion or a stack data structure

    • BFS can be implemented using a queue data structure

    • Example: Inorder traversal of a binary tree - left, root, right

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Trapping rain water
  • Q2. Path of longest sum
  • Ans. 

    Find the path in a matrix with the longest sum of elements

    • Start from the top-left corner of the matrix

    • Move only right or down in the matrix

    • Keep track of the sum of elements in each path

    • Return the path with the longest sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode medium problem + some LLD + some HLD
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding questions java
  • Q2. Logical program s

Interview Preparation Tips

Interview preparation tips for other job seekers - Cheap people, sp hr department, they will force u to sign bond, after signing u r a toy for them , if u do not work accordingly them, simply they won't give u documents relieving letter, won't Mark exit in ur pf service history n lot off even they filed leagal case on my frd

Axtria Interview FAQs

How many rounds are there in Axtria Lead Software Engineer interview?
Axtria interview process usually has 2 rounds. The most common rounds in the Axtria interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
How to prepare for Axtria Lead 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 Axtria. The most common topics and skills that interviewers at Axtria expect are Big Data, SCALA, Spark, AWS and Devops.
What are the top questions asked in Axtria Lead Software Engineer interview?

Some of the top questions asked at the Axtria Lead Software Engineer interview -

  1. GeeksForGeeks puzzles and tricky questi...read more
  2. Manual testing, no automation sc...read more

Tell us how to improve this page.

Axtria Lead Software Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 228 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Fractal Analytics Interview Questions
4.0
 • 207 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
Chetu Interview Questions
3.3
 • 168 Interviews
AVASOFT Interview Questions
2.9
 • 136 Interviews
ivy Interview Questions
3.6
 • 121 Interviews
DE Shaw Interview Questions
3.8
 • 119 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
View all
Axtria Lead Software Engineer Salary
based on 44 salaries
₹15.5 L/yr - ₹25.2 L/yr
19% less than the average Lead Software Engineer Salary in India
View more details

Axtria Lead Software Engineer Reviews and Ratings

based on 5 reviews

2.9/5

Rating in categories

2.3

Skill development

2.6

Work-life balance

2.8

Salary

2.2

Job security

2.1

Company culture

2.3

Promotions

2.3

Work satisfaction

Explore 5 Reviews and Ratings
Senior Associate
862 salaries
unlock blur

₹9.5 L/yr - ₹22.7 L/yr

Associate
648 salaries
unlock blur

₹7.5 L/yr - ₹18 L/yr

Project Lead
610 salaries
unlock blur

₹14 L/yr - ₹27.6 L/yr

Analyst
469 salaries
unlock blur

₹5 L/yr - ₹17.6 L/yr

Manager
213 salaries
unlock blur

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