Upload Button Icon Add office photos
Premium Employer

i

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

Aptean

Compare button icon Compare button icon Compare

Filter interviews by

Aptean Senior Software Engineer Interview Questions and Answers

Updated 16 Jan 2025

Aptean Senior 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 Approached by Company and was interviewed before Jan 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

No negative answers ,attempt all questions look at ur watch

Round 2 - One-on-one 

(3 Questions)

  • Q1. C/c++ basic question
  • Q2. Program execution from compile time to run time dynamic libraries, loading of them
  • Q3. How many modules in ur project how they communicated among themselves
Round 3 - Behavioral 

(1 Question)

  • Q1. Just a formality with a welcome message
Round 4 - HR 

(1 Question)

  • Q1. Basic questions Salary fixation collection of photo copies
Round 5 - Big boss round 

(1 Question)

  • Q1. Regional Manger just will have a casual conversation with you

Interview Preparation Tips

Interview preparation tips for other job seekers - for me it was easy just about the projects u have done & ur understanding of them

Interview questions from similar companies

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
2-4 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

DSA round leetcode style question

Round 2 - Technical 

(1 Question)

  • Q1. Design + Coding round for rate limiter

Interview Preparation Tips

Interview preparation tips for other job seekers - Final round - System Design
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Problem solving question
  • Q2. Java , stream , Spring fundamentals
Round 2 - Technical 

(2 Questions)

  • Q1. Some basic String array problem solving question
  • Q2. Java questions like junit , Spring boot
Round 3 - Technical 

(2 Questions)

  • Q1. String questions , DSA problem
  • Q2. Java questions in brief

Interview Preparation Tips

Interview preparation tips for other job seekers - Didnt get offer as opening got closed
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between abstract class and interface?
  • Q2. Explain OOP in C#?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA questions
Round 2 - Technical 

(1 Question)

  • Q1. Half an hour of behavioral questions and 1 DSA question
Round 3 - Behavioral 

(1 Question)

  • Q1. One hour discussion of the work that I have done till now
Round 4 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 5 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question
Round 6 - Technical 

(1 Question)

  • Q1. Design round for HLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for high level DSA questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SOLID Principles
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not 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 - Technical 

(1 Question)

  • Q1. Complete java questions followed by hibernate and spring boot
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multithreading, hibernate, spring boot, rest api and roles and responsibility in current company.
Round 4 - Group Discussion 

Current company roles and responsibilities.
Ability to learn new technologies.
How to build and deploy software.
What they offer in Amadeus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cleared 4 rounds of interview.
Screening, 2 technical rounds, last managerial+V.P round.
Last HR sent mail saying my profile doesn't match with theirs. I guess screening process is enough to check requirements match. Atleast 2 technical rounds are enough to check requirements match.

Felt unprofessional response after 4 rounds.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core concepts of .Net Core, Entity Framenwork and OOPS

Aptean Interview FAQs

How many rounds are there in Aptean Senior Software Engineer interview?
Aptean interview process usually has 5 rounds. The most common rounds in the Aptean interview process are One-on-one Round, Behavioral and HR.
How to prepare for Aptean Senior 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 Aptean. The most common topics and skills that interviewers at Aptean expect are .Net, ADO.Net, ASP.Net, C# and VB.
What are the top questions asked in Aptean Senior Software Engineer interview?

Some of the top questions asked at the Aptean Senior Software Engineer interview -

  1. how many modules in ur project how they communicated among themsel...read more
  2. program execution from compile time to run time dynamic libraries, loading of t...read more
  3. basic questions Salary fixation collection of photo cop...read more

Tell us how to improve this page.

Aptean Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Aptean Senior Software Engineer Salary
based on 42 salaries
₹8.5 L/yr - ₹19.5 L/yr
14% less than the average Senior Software Engineer Salary in India
View more details

Aptean Senior Software Engineer Reviews and Ratings

based on 4 reviews

3.5/5

Rating in categories

3.5

Skill development

4.5

Work-life balance

3.7

Salary

3.4

Job security

3.7

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 4 Reviews and Ratings
QA Engineer
97 salaries
unlock blur

₹6 L/yr - ₹11.1 L/yr

Software Engineer
72 salaries
unlock blur

₹3.2 L/yr - ₹12 L/yr

Associate Software Engineer
51 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Development Engineer
48 salaries
unlock blur

₹5.3 L/yr - ₹13 L/yr

Associate Engineer
47 salaries
unlock blur

₹5.3 L/yr - ₹9 L/yr

Explore more salaries
Compare Aptean with

Ramco Systems

3.9
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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