Upload Button Icon Add office photos

Filter interviews by

Aaseya IT Services Interview Questions and Answers for Experienced

Updated 13 Jan 2024

Aaseya IT Services Interview Experiences for Experienced

Popular Designations

3 interviews found

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

I applied via Job Portal and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. About BPT In Outsystems
Round 2 - Technical 

(1 Question)

  • Q1. Integration Tool In Outsystems
  • Ans. 

    Outsystems provides an Integration Tool for seamless integration with external systems.

    • Outsystems Integration Tool allows easy integration with various external systems

    • It supports both inbound and outbound integrations

    • The tool provides connectors for popular systems like Salesforce, SAP, and Microsoft Dynamics

    • Integration can be done through REST APIs, SOAP web services, or database connections

    • Outsystems Integration Too...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Your Expected Salary

Skills evaluated in this interview

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

QA Test Lead Interview Questions & Answers

user image kiran kumar

posted on 18 Feb 2023

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

I applied via LinkedIn and was interviewed in Jan 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. What is bug life cycle?
  • Ans. 

    Bug life cycle is the process of identifying, reporting, tracking, and resolving software defects.

    • Bug is identified by testers during testing phase

    • Bug is reported to development team

    • Bug is assigned to a developer for fixing

    • Bug is retested by testers after fixing

    • Bug is closed if it passes retesting or reopened if it fails

    • Bug is verified in subsequent releases to ensure it does not reoccur

  • Answered by AI
  • Q2. What is defect triage call?
  • Ans. 

    Defect triage call is a meeting where the team discusses and prioritizes the defects found during testing.

    • Defect triage call is a collaborative effort to prioritize defects based on their severity and impact on the system.

    • The team discusses each defect and decides whether it needs to be fixed immediately or can be deferred to a later release.

    • The call is usually attended by the QA lead, developers, project manager, and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about the hole testing process... Question may come any way

Skills evaluated in this interview

QA Test Lead Interview Questions asked at other Companies

Q1. How to get non repeating substring from a string
View answer (1)

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Pega questions from case managment like locking, parent child case, data propagation, integration, reports, agent

Interview Preparation Tips

Interview preparation tips for other job seekers - Give direct answers to the point.

Associate Architect Interview Questions asked at other Companies

Q1. What is your understanding of Continuous Integration (CI) and Continuous Deployment (CD)?
View answer (1)

Jobs at Aaseya IT Services

View all

Interview questions from similar companies

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

(2 Questions)

  • Q1. About your self and everything
  • Q2. E

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Interview Questionnaire 

1 Question

  • Q1. Oops concept,Versioning in javascipt,CTE in sql server,Cursor in sql server,scenario based questions like if duplicate data is stored in email then what is your approach to resolve.

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

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

Aaseya IT Services Interview FAQs

How many rounds are there in Aaseya IT Services interview for experienced candidates?
Aaseya IT Services interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Aaseya IT Services interview process for experienced candidates are Technical, Resume Shortlist and HR.
How to prepare for Aaseya IT Services interview for experienced candidates?
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 Aaseya IT Services. The most common topics and skills that interviewers at Aaseya IT Services expect are Pega, Pega PRPC, Agile, Pega Rules Process Commander and PRPC.
What are the top questions asked in Aaseya IT Services interview for experienced candidates?

Some of the top questions asked at the Aaseya IT Services interview for experienced candidates -

  1. What is defect triage ca...read more
  2. What is bug life cyc...read more
  3. Integration Tool In Outsyst...read more

Tell us how to improve this page.

Aaseya IT Services Interview Process for Experienced

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
DotPe Interview Questions
3.2
 • 38 Interviews
Stefanini Interview Questions
2.9
 • 35 Interviews
Equifax Interview Questions
3.3
 • 32 Interviews
Hike Interview Questions
3.6
 • 32 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
Black Knight Interview Questions
3.6
 • 28 Interviews
View all

Aaseya IT Services Reviews and Ratings

based on 73 reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.5

Salary

3.6

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 73 Reviews and Ratings
Pega Lead System Architect

Nagpur,

Pune

7-12 Yrs

Not Disclosed

Pega Senior System Architect

Chennai,

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
127 salaries
unlock blur

₹7 L/yr - ₹21.5 L/yr

Consultant
101 salaries
unlock blur

₹4.4 L/yr - ₹13.6 L/yr

Associate Consultant
71 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

Principal Consultant
51 salaries
unlock blur

₹15 L/yr - ₹26 L/yr

Pega Developer
16 salaries
unlock blur

₹5.5 L/yr - ₹17 L/yr

Explore more salaries
Compare Aaseya IT Services with

HCL Infosystems

3.9
Compare

Kellogg Brown and Root

4.2
Compare

JoulestoWatts Business Solutions

2.9
Compare

Black Knight

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