Upload Button Icon Add office photos
Engaged Employer

i

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

AeonX Digital Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AeonX Digital SAP Abap Consultant Interview Questions, Process, and Tips

Updated 17 Oct 2024

Top AeonX Digital SAP Abap Consultant Interview Questions and Answers

  • Q1. What is CDS view how it can be utilized? Diff between Association and Joins.
  • Q2. What is BAPI how it can be utilized? What are pre-requisite for using BAPI?
  • Q3. What is TMG? on which TMG events you have worked on name them?
View all 11 questions

AeonX Digital SAP Abap Consultant Interview Experiences

3 interviews found

SAP Abap Consultant Interview Questions & Answers

user image Hirendra Pratap Singh

posted on 4 Jul 2024

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

(8 Questions)

  • Q1. How we can Enhance Tables? Difference between Append vs Include?
  • Ans. 

    Enhancing tables in SAP ABAP involves adding custom fields or structures. Append adds fields at the end, while Include adds fields at a specific position.

    • Enhancing tables involves adding custom fields or structures to existing tables.

    • Append statement adds fields at the end of the table structure.

    • Include statement adds fields at a specific position within the table structure.

    • Append is used when adding fields to standard...

  • Answered by AI
  • Q2. What is TMG? on which TMG events you have worked on name them?
  • Ans. 

    TMG stands for Table Maintenance Generator. It is a tool used in SAP ABAP to create table maintenance dialog programs.

    • TMG is used to create table maintenance dialog programs for maintaining table entries.

    • TMG events include START-OF-SELECTION, END-OF-SELECTION, TOP-OF-PAGE, END-OF-PAGE, etc.

    • I have worked on TMG events such as START-OF-SELECTION and END-OF-SELECTION in my previous projects.

  • Answered by AI
  • Q3. Steps to create OData service? Expecting via CDS views and SEGW.
  • Ans. 

    Creating OData service using CDS views and SEGW

    • Create a CDS view with @OData.publish: true annotation

    • Activate the CDS view in SAP system

    • Create a project in SEGW transaction

    • Import the CDS view into the project

    • Define the entity set and entity type in SEGW

    • Map the CDS view fields to the entity type properties

    • Generate and implement the service

  • Answered by AI
  • Q4. Difference between ECC vs HANA? Why oops ABAP was introduced?
  • Ans. 

    ECC is a traditional ERP system while HANA is an in-memory database platform. OOPs ABAP was introduced for better code reusability and maintainability.

    • ECC is a traditional ERP system with separate application and database layers, while HANA combines both in-memory.

    • HANA allows real-time data processing and analytics, while ECC relies on disk-based storage.

    • OOPs ABAP was introduced to enhance code reusability, maintainabi...

  • Answered by AI
  • Q5. How will you optimize code? Explain parallel cursor with example.
  • Ans. 

    Optimizing code involves improving performance and efficiency. Parallel cursor in SAP ABAP allows for processing multiple records simultaneously.

    • Use SELECT statements with appropriate WHERE conditions to fetch only necessary data

    • Avoid nested loops and use optimized loop constructs like LOOP AT, LOOP AT ... WHERE, etc.

    • Use field symbols to avoid unnecessary data copying

    • Leverage parallel cursor processing to improve perfo...

  • Answered by AI
  • Q6. What is CDS view how it can be utilized? Diff between Association and Joins.
  • Ans. 

    CDS view is a virtual database table in SAP used for defining complex views. Associations are used for defining relationships, while joins are used for combining data from multiple tables.

    • CDS view is a virtual database table in SAP used for defining complex views

    • Associations in CDS views are used to define relationships between entities

    • Joins in CDS views are used to combine data from multiple tables based on a common f...

  • Answered by AI
  • Q7. What is BAPI how it can be utilized? What are pre-requisite for using BAPI?
  • Ans. 

    BAPI stands for Business Application Programming Interface. It is a standard interface to SAP business objects.

    • BAPIs are used to integrate SAP systems with external applications or other SAP systems.

    • They provide a way to access and manipulate data in SAP systems.

    • Pre-requisites for using BAPI include proper authorization, knowledge of the specific BAPIs available, and understanding of the data structures involved.

    • Exampl...

  • Answered by AI
  • Q8. What is BADI, Steps to implement and Difference b/w Classical and Kernel BADI.
  • Ans. 

    BADI stands for Business Add-In. It is an enhancement technique in SAP ABAP.

    • BADI allows you to add additional functionality to standard SAP applications without modifying the original code.

    • Steps to implement BADI: Define BADI interface -> Implement BADI interface -> Activate BADI implementation.

    • Classical BADI is implemented using SE18 transaction while Kernel BADI is implemented using SE19 transaction.

    • Difference betwee...

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

(2 Questions)

  • Q1. What kind of projects you worked on?
  • Ans. 

    I have worked on various SAP ABAP projects including implementation, customization, and support.

    • Implemented custom reports and interfaces to improve data visibility

    • Customized standard SAP modules to meet specific business requirements

    • Provided support for system upgrades and enhancements

    • Worked on performance tuning and optimization projects

    • Collaborated with functional consultants to understand business processes and tra

  • Answered by AI
  • Q2. Are you comfortable in switching from ABAP core to Integration?
  • Ans. 

    Yes, I am comfortable switching from ABAP core to Integration.

    • I have experience working with both ABAP core and Integration technologies.

    • I am adaptable and quick to learn new technologies and processes.

    • I believe that integrating different systems can enhance the overall functionality and efficiency of a project.

    • For example, I have successfully integrated SAP systems with third-party applications to streamline processes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared their size in around 200, looking for quality consultant. Be ready

Skills evaluated in this interview

SAP Abap Consultant Interview Questions & Answers

user image Kapil Beesayite

posted on 17 Oct 2024

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

(2 Questions)

  • Q1. What are lock objects
  • Ans. 

    Lock objects are used in SAP to control access to shared data and prevent simultaneous changes by multiple users.

    • Lock objects are used to prevent data inconsistency in SAP systems.

    • They ensure that only one user can change a specific piece of data at a time.

    • Lock objects can be set at different levels such as table level, program level, or even field level.

    • Examples of lock objects in SAP include ENQUEUE and DEQUEUE funct

  • Answered by AI
  • Q2. What is the difference between Bapi and RFC
  • Ans. 

    BAPI is a standard interface provided by SAP for business objects, while RFC is a remote function call used for communication between systems.

    • BAPI is a predefined method provided by SAP for specific business objects

    • RFC is a generic protocol used for communication between systems

    • BAPIs are implemented as RFCs, but not all RFCs are BAPIs

    • BAPIs are used for specific business processes, while RFCs can be used for various pur

  • Answered by AI

Skills evaluated in this interview

SAP Abap Consultant Interview Questions Asked at Other Companies

Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se ... read more
Q2. 10. Why we write IF GT_VBAK IS INITIAL statement in for all entri ... read more
Q3. 3.what is difference between include & append structure
Q4. 16. What if we don't write start of selection event
Q5. 22. How many pages can be added within Interactive report
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions on RICEF

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on DSA were discussed.

  • Q1. 

    Ninja and Sorted Array Merging Problem

    Ninja is tasked with merging two given sorted integer arrays ARR1 and ARR2 of sizes 'M' and 'N', respectively, such that the merged result is a single sorted array w...

  • Ans. 

    Merge two sorted arrays into one sorted array within the first array.

    • Create a pointer for the last index of ARR1 and ARR2 to start merging from the end.

    • Compare elements from both arrays and place the larger element at the end of ARR1.

    • Continue this process until all elements are merged in sorted order within ARR1.

  • Answered by AI
  • Q2. 

    Reverse Alternate Levels of a Perfect Binary Tree Problem Statement

    Given a perfect binary tree consisting of 'N' nodes, reverse the nodes at alternate levels in the tree (i.e., reverse level 2, level 4, ...

  • Ans. 

    Reverse alternate levels of a perfect binary tree by reversing nodes at even levels starting from level 2.

    • Traverse the tree in level order and store nodes at even levels in a separate list.

    • Reverse the list of nodes at even levels.

    • Update the tree with the reversed nodes at even levels.

    • Repeat the process for alternate levels starting from level 2.

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on OS, Java were discussed.

  • Q1. What are the characteristics of distributed file systems?
  • Ans. 

    Characteristics of distributed file systems include scalability, fault tolerance, and data replication.

    • Scalability: Distributed file systems can easily scale to accommodate a large amount of data and users.

    • Fault tolerance: They are designed to continue functioning even if some components fail, ensuring high availability.

    • Data replication: Data is often replicated across multiple nodes to ensure reliability and performan...

  • Answered by AI
  • Q2. Design a file sharing mechanism between two users.
  • Ans. 

    Design a file sharing mechanism between two users.

    • Implement a secure login system for both users.

    • Allow users to upload files to a shared server.

    • Provide a way for users to view and download files shared by the other user.

    • Implement access control to ensure only authorized users can access the shared files.

  • Answered by AI
  • Q3. What is ConcurrentHashMap in Java?
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

    • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without causing any issues like deadlocks or data corruption.

    • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

    • ConcurrentHashMap is more efficient than using synchronized maps for concurrent access.

    • Example:...

  • Answered by AI
  • Q4. How do you analyze the usage history of an application?
  • Ans. 

    Analyzing usage history involves tracking user interactions, patterns, and trends to improve application performance.

    • Collect and store user interaction data such as clicks, page views, and time spent on each feature.

    • Use analytics tools to generate reports and visualize usage patterns.

    • Identify popular features, user preferences, and areas for improvement based on usage data.

    • Implement A/B testing to compare different ver...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPS, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round with questions based on DSA.

  • Q1. 

    Binary Tree Traversals

    Your task is to compute the In-Order, Pre-Order, and Post-Order traversals for a given Binary Tree with 'N' nodes, where each node has an integer value.

    Input:
    T
    For each test cas...
  • Ans. 

    Compute In-Order, Pre-Order, and Post-Order traversals for a given Binary Tree with 'N' nodes.

    • Implement tree traversal algorithms: In-Order, Pre-Order, and Post-Order.

    • Use recursion to traverse the binary tree efficiently.

    • Handle null nodes represented by -1 in the input.

    • Follow the order of nodes as they appear in the level order traversal.

    • Ensure the output is space-separated lists for each traversal type.

  • Answered by AI
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Use a combination of hashmap and doubly linked list to implement the LRU cache.

    • Keep track of the least recently used item and update it accordingly.

    • Ensure to handle cache capacity by evicting the least recently used item when the cache is full.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA, OS etc.

  • Q1. 

    Number of Islands II Problem Statement

    You have a 2D grid of dimensions 'N' rows by 'M' columns, initially filled with water. You are given 'Q' queries, where each query contains two integers 'X' and 'Y'....

  • Ans. 

    The task is to determine the number of islands present on a 2D grid after each query of converting water to land.

    • Create a function that takes the grid dimensions, queries, and coordinates as input.

    • For each query, convert the water at the given coordinates to land and update the grid.

    • Use depth-first search (DFS) to find connected lands and count the number of islands.

    • Return the number of islands after each query.

  • Answered by AI
  • Q2. Why are synchronized blocks needed in Java?
  • Ans. 

    Synchronized blocks are needed in Java to ensure thread safety by allowing only one thread to access a block of code at a time.

    • Prevents multiple threads from accessing critical sections of code simultaneously

    • Ensures data consistency and prevents race conditions

    • Improves performance by reducing contention for shared resources

    • Example: synchronized block in a method that updates a shared variable

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, OS, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This test has 2 sections :
Section 1 ( Technical objective questions) 
– 25 mcq’s mainly focusing on c , c++ , os , data structures , algorithms
Section 2 ( 2 Coding questions )
– Code was supposed to be written on paper.

  • Q1. 

    Next Greater Number Problem Statement

    Given a string S which represents a number, determine the smallest number strictly greater than the original number composed of the same digits. Each digit's frequenc...

  • Ans. 

    Given a number represented as a string, find the smallest number greater than the original with the same set of digits.

    • Sort the digits in non-increasing order to find the next greater number.

    • Swap the last two digits to get the smallest greater number.

    • If no greater number exists, return -1.

  • Answered by AI
  • Q2. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string by reversing the order of words while maintaining spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

First round of interview was based on basic data structures. Concepts related to binary search tree , uses and comparing complexity were asked. He also asked about Hashing , Collisions.

  • Q1. 

    K Largest Elements Problem Statement

    Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.

    Input:

    The fir...
  • Ans. 

    Find K largest elements in an unsorted array and return them in non-decreasing order.

    • Sort the array in non-decreasing order

    • Return the last K elements of the sorted array

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interview started with a programming question. Then he asked me a puzzle. There was a small discussion about my projects then .Then he started asking questions about operating system. The interviewer wanted to test my understanding about semaphores and asked some tricky and confusing questions .

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. 

    Return the level order traversal of a binary tree given in level order with null nodes represented by -1.

    • Parse the input to create the binary tree using level order traversal

    • Use a queue to perform level order traversal and print the nodes in the order visited

    • Handle null nodes represented by -1 appropriately

  • Answered by AI
  • Q2. Explain the Producer-Consumer problem and how it can be solved using semaphores.
  • Ans. 

    Producer-Consumer problem involves multiple threads sharing a common buffer. Producers add items to the buffer while consumers remove them.

    • Producers and consumers need to synchronize their access to the shared buffer to avoid race conditions.

    • Semaphores can be used to control access to the buffer. Two semaphores are used - one to track the empty slots in the buffer and one to track the filled slots.

    • Producers increment t...

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions based on DSA.

  • Q1. 

    Peak Element Finder

    For a given array of integers arr, identify the peak element. A peak element is an element that is greater than its neighboring elements. Specifically, if arr[i] is the peak, then both...

  • Ans. 

    Find the peak element in an array of integers.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • Handle edge cases for the first and last elements of the array.

    • Return the peak element found.

  • Answered by AI
Round 5 - Telephonic Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This round was a telephonic interview with the CTO of the company. The he started with a small discussion about my projects and research paper .He then moved on to data structures and asked me how to choose a relevant data structure for a given problem. I gave him advantages of every data structure and certain problems where specific data structures could be useful .Then he gave a question and asked me for what data structure should be used keeping time complexity in mind. He asked me a few HR questions in the end .

  • Q1. 

    Average Marks Problem Statement

    Given the initial letter of a student's name and three integer marks for that student, calculate and display the student's initial letter followed by the integer part of th...

  • Ans. 

    Calculate and display the student's initial letter followed by the integer part of their average marks.

    • Calculate the average of the three marks provided for each student.

    • Display the initial letter of the student's name followed by the integer part of the average marks.

    • Round down the average to the nearest integer to get the integer part.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Running Median Problem

    Given a stream of integers, calculate and print the median after each new integer is added to the stream.

    Output only the integer part of the median.

    Example:

    Input:
    N = 5  
    Stre...
  • Ans. 

    Calculate and print the median after each new integer is added to the stream.

    • Use two heaps - a max heap to store the smaller half of the numbers and a min heap to store the larger half.

    • Keep the sizes of the two heaps balanced to efficiently calculate the median.

    • If the total number of elements is odd, the median will be the top element of the max heap.

    • If the total number of elements is even, the median will be the avera

  • Answered by AI
  • Q2. 

    Pair Sum in Binary Search Tree

    Given a Binary Search Tree (BST) and a target value 'K', determine if there exist two unique elements in the BST such that their sum equals the target 'K'.

    Explanation:

    A ...

  • Ans. 

    Given a BST and a target value, determine if there exist two unique elements in the BST such that their sum equals the target.

    • Traverse the BST in-order to get a sorted array of elements.

    • Use two pointers approach to find the pair sum in the sorted array.

    • Keep track of visited elements to ensure uniqueness.

    • Handle edge cases like null nodes and empty tree.

    • Example: For input BST [20, 10, 35, 5, 15, 30, 42, -1, 13, -1, -1, -

  • Answered by AI
  • Q3. 

    Statistics From A Large Sample Task

    Calculate various statistical measures given a large sample of integers in the range [0, 255]. For efficiency, you are provided with an array 'count' where the i-th ele...

  • Ans. 

    Calculate various statistical measures given a large sample of integers in the range [0, 255] using the provided frequency array.

    • Iterate through the 'count' array to calculate minimum and maximum values.

    • Calculate the mean by summing up all values and dividing by the total count.

    • Find the median by sorting the sample and determining the middle element(s).

    • Identify the mode by finding the element with the highest frequency...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA. A puzzle was also asked.

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Use a combination of hashmap and doubly linked list to efficiently implement the LRU cache.

    • Keep track of the least recently used item and update it accordingly when inserting new items.

    • Ensure to handle the capacity constraint by evicting the least recently used item when the cache is full.

  • Answered by AI
  • Q2. 

    Sorting of a Rotated Sorted Array Problem Statement

    You are provided with a rotated sorted array of size N. Your task is to sort the given array in increasing order.

    Example:

    Input:
    N = 4
    Array = [2, 3,...
  • Ans. 

    Implement a function to sort a rotated sorted array in increasing order without using the sort() function.

    • Find the pivot element in the rotated sorted array.

    • Split the array into two subarrays based on the pivot element.

    • Sort each subarray separately.

    • Merge the sorted subarrays to get the final sorted array.

  • Answered by AI
  • Q3. You have 5 pirates and 100 gold coins. The challenge is to determine how the pirates will divide the coins among themselves based on their ranking and the rules they follow.
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAHike interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 5 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 

5 DSA Questions 2 Easy, 2Medium, 1 Hard, hackerrank

Round 3 - Technical 

(2 Questions)

  • Q1. 3 DSA question were asked of medium level
  • Q2. Largest vertical rectangle in array
  • Ans. 

    Find the largest vertical rectangle in an array of strings

    • Iterate through each column in the array

    • For each column, find the consecutive vertical rectangles of '1's

    • Calculate the area of each rectangle and keep track of the largest one

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. 1 DSA and around OS, DBMS, Resume
Round 5 - Technical 

(1 Question)

  • Q1. Around projects, Multithreading, LLD, HLD

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Few questions that would involve problem solving. Basic 10th std math would suffice

Round 2 - Coding Test 

Had few DSA questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview
Round 4 - HR 

(1 Question)

  • Q1. About job, expection etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and inspire trust. Be curious.
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 Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions

AeonX Digital Interview FAQs

How many rounds are there in AeonX Digital SAP Abap Consultant interview?
AeonX Digital interview process usually has 1-2 rounds. The most common rounds in the AeonX Digital interview process are Technical and One-on-one Round.
How to prepare for AeonX Digital SAP Abap Consultant 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 AeonX Digital. The most common topics and skills that interviewers at AeonX Digital expect are SAP ABAP, SAP Scripts and Smartforms.
What are the top questions asked in AeonX Digital SAP Abap Consultant interview?

Some of the top questions asked at the AeonX Digital SAP Abap Consultant interview -

  1. What is CDS view how it can be utilized? Diff between Association and Joi...read more
  2. What is BAPI how it can be utilized? What are pre-requisite for using BA...read more
  3. What is TMG? on which TMG events you have worked on name th...read more

Tell us how to improve this page.

AeonX Digital SAP Abap Consultant Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

DotPe Interview Questions
3.2
 • 38 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
Hike Interview Questions
3.6
 • 32 Interviews
MindTickle Interview Questions
2.8
 • 21 Interviews
Ganit Inc Interview Questions
3.7
 • 20 Interviews
View all
AeonX Digital SAP Abap Consultant Salary
based on 25 salaries
₹3.5 L/yr - ₹11 L/yr
16% less than the average SAP Abap Consultant Salary in India
View more details

AeonX Digital SAP Abap Consultant Reviews and Ratings

based on 2 reviews

4.3/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
SAP Abap Consultant
25 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

SAP MM Consultant
10 salaries
unlock blur

₹3.4 L/yr - ₹5.3 L/yr

AWS Cloud Engineer
6 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

SAP PP Consultant
6 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

SAP Basis Consultant
6 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Explore more salaries
Compare AeonX Digital with

JoulestoWatts Business Solutions

2.9
Compare

DotPe

3.2
Compare

Thoughtsol Infotech

4.6
Compare

Innoplexus

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