Upload Button Icon Add office photos
Engaged Employer

i

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

Absax Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Absax Technologies Software Developer Interview Questions and Answers

Updated 7 Feb 2025

Absax Technologies Software Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Which language is prefer
  • Q2. Javascript React.js
Round 2 - HR 

(1 Question)

  • Q1. Why join this organization
  • Ans. 

    I am passionate about the organization's mission and values, and I believe my skills align well with the work being done here.

    • Strong alignment with organization's mission and values

    • Opportunity for professional growth and development

    • Positive company culture and work environment

  • Answered by AI

Interview questions from similar companies

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

(2 Questions)

  • Q1. Don't remember so I have no
  • Q2. I can't remember it
Round 2 - Technical 

(2 Questions)

  • Q1. I don't know the res
  • Q2. I can't remember it
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude and 2 coding problems- easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Duplicate number code
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Self intro for yourself
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

In first round there were two test
1st is the personality test.
2nd is the aptitude test were they asked about 10 aptitude questions and around 40 coding based questions, some of them were mcq and rest were output based.

Round 2 - Coding Test 

Contains 4 DSA based questions, 1 question was hard, and other 3 questions were of medium level.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be well prepared of the Josh Technology Group, you should be very good in coding and should know DSA very well.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

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 

Moderate difficult challenge in control

Round 3 - One-on-one 

(1 Question)

  • Q1. Describe your project

Interview Preparation Tips

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

I applied via Walk-in

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

Easy level only ...very basic problems are asked to me

Round 3 - Coding Test 

Basic arrays and string questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall easy process. I got my job offer immediately

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Path Queries Problem Statement

    Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered Anonymously
  • Q2. 

    Merge Sort Algorithm Problem Statement

    Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.

    Explanation:

    Merge Sort is a divide-an...

  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
  • Q3. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Coding assessment of distance
  • Ans. 

    Calculate the distance between two points in a 2D plane.

    • Use the distance formula: sqrt((x2 - x1)^2 + (y2 - y1)^2)

    • Ensure input validation for coordinates

    • Consider edge cases like points being the same or on the same axis

  • Answered by AI
  • Q2. Code assess of measure
  • Ans. 

    Code assessment measures the ability of a software developer to write efficient and effective code.

    • Code quality and readability are important factors in code assessment.

    • Efficiency and performance of the code are also key aspects to consider.

    • Ability to solve complex problems and think critically is evaluated through code assessment.

    • Knowledge of programming languages, algorithms, and data structures is tested in code ass...

  • Answered by AI

Skills evaluated in this interview

Absax Technologies Interview FAQs

How many rounds are there in Absax Technologies Software Developer interview?
Absax Technologies interview process usually has 2 rounds. The most common rounds in the Absax Technologies interview process are Technical and HR.
What are the top questions asked in Absax Technologies Software Developer interview?

Some of the top questions asked at the Absax Technologies Software Developer interview -

  1. Which language is pre...read more
  2. Javascript React...read more

Tell us how to improve this page.

Absax Technologies Software Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Absax Technologies Software Developer Reviews and Ratings

based on 17 reviews

4.5/5

Rating in categories

4.4

Skill development

4.4

Work-life balance

4.5

Salary

4.4

Job security

4.5

Company culture

4.5

Promotions

4.4

Work satisfaction

Explore 17 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹5.3 L/yr

Software Developer
3 salaries
unlock blur

₹4.2 L/yr - ₹5.2 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹6.8 L/yr - ₹11 L/yr

Senior Human Resource Business Partner
3 salaries
unlock blur

₹8.5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Absax Technologies with

Reliance Communications

4.0
Compare

Henry Harvin Education

3.9
Compare

GAO Tek

4.5
Compare

Tata Teleservices

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