Upload Button Icon Add office photos
Engaged Employer

i

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

Ascendion Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ascendion Intern Interview Questions and Answers

Updated 16 Nov 2024

Ascendion Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2024

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Asked for Self Introduction
  • Q2. Asked about projects
  • Q3. Asked about my experience

Intern Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Gd was good asked on current affair topic

Round 2 - One-on-one 

(2 Questions)

  • Q1. Hr round ask about myself
  • Q2. Technical round asked one dsa question

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. There is a housing society “The wasteful society”. You collect al ... read more
Q2. Which programming language are you comfortable with?
asked in Accenture
Q3. A marketing strategy case: A perfume seller in Jaipur has unique ... read more
asked in Deloitte
Q4. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q5. Huffman Coding Challenge Given an array ARR of integers containin ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your Qualification

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , have communication skills, have a good concept of grammar
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2022. There were 3 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 - Aptitude Test 

Aptitude, coding, english, reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Self introduction, basic coding questions
  • Q2. Reverse the string, even number
  • Ans. 

    Reverse the characters of each string in the array if the length of the string is even.

    • Iterate through each string in the array

    • Check if the length of the string is even

    • If even, reverse the characters of the string

  • Answered by AI

Skills evaluated in this interview

What people are saying about Ascendion

View All
wealthychamomile
Verified Icon
1w
works at
Ascendion
Expected CTC
Hello guys, I'm currently working in Ascendion and my CTC is 7.4Lpa so what should be the ideal CTC if i switch Total Experience - 6.3 years Tech Stack - React Js,Node Js,Mongo DB I feel like I'm underpaid Please make your suggestions its very necessary and would be helpful Thank you all🙏🏻
Got a question about Ascendion?
Ask anonymously on communities.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There are a total of 30 questions to answer within 60 minutes, which includes 15 math questions and 15 reasoning questions. The questions are challenging.

Round 2 - Aptitude Test 

A challenging test consisting of five scenario-based questions and ten logical puzzles, with a duration of 30 minutes.

Round 3 - Coding Test 

I did not attend this round; I was rejected in the second round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Become proficient in mathematics, reasoning, and a programming language.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Group Discussion 

Group discussion on technical and non technical topics for around 12min

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic questions regarding your branch and project
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Two questions were asked and answered both

Round 2 - Coding Test 

Two programs on Java was asked on loops and collections

Are these interview questions helpful?

Intern Interview Questions & Answers

INDIUM user image Preethi Sathyamoorthi

posted on 16 Jun 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. What is regression testing?
  • Ans. 

    Regression testing ensures that new code changes do not adversely affect existing functionalities.

    • Regression testing is performed after code changes, such as bug fixes or new features.

    • It helps identify any unintended side effects caused by the changes.

    • Example: After fixing a bug in a login feature, regression tests ensure that the login still works correctly.

    • Automated regression tests can save time and improve accuracy...

  • Answered by AI
  • Q2. What is Unit and system testing?
  • Ans. 

    Unit testing focuses on individual components, while system testing evaluates the entire application as a whole.

    • Unit Testing: Tests individual components or functions in isolation.

    • Example: Testing a single function that calculates the sum of two numbers.

    • System Testing: Tests the complete and integrated software system.

    • Example: Testing the entire application to ensure all components work together.

    • Unit tests are usually ...

  • Answered by AI
  • Q3. What is testing and their types
  • Ans. 

    Testing is the process of evaluating a system or its components to ensure they meet specified requirements and function correctly.

    • Unit Testing: Tests individual components for correctness (e.g., testing a function in isolation).

    • Integration Testing: Tests the interaction between integrated components (e.g., testing how a database interacts with an application).

    • System Testing: Tests the complete and integrated software t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Join As an intern, work growth is very well
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was not good, it contain mostly question of java programming.

Round 2 - Technical 

(1 Question)

  • Q1. Print factorial of n through recursion Sum of all n numbers
  • Ans. 

    Factorial of n and sum of n numbers using recursion

    • Create a recursive function to calculate factorial of n

    • Use a recursive function to calculate the sum of all n numbers

    • Handle base cases for both factorial and sum calculations

    • Example: Factorial of 5 = 5 * 4 * 3 * 2 * 1 = 120, Sum of first 5 numbers = 1 + 2 + 3 + 4 + 5 = 15

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please smile and be confident

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and data structures
  • Q2. Dbms questions where based on normalization

Ascendion Interview FAQs

How many rounds are there in Ascendion Intern interview?
Ascendion interview process usually has 1-2 rounds. The most common rounds in the Ascendion interview process are One-on-one Round and Group Discussion.

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Senior Software Engineer
122 salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Lead Engineer
70 salaries
unlock blur

₹18 L/yr - ₹33.6 L/yr

Software Engineer
68 salaries
unlock blur

₹4.4 L/yr - ₹17.8 L/yr

Senior Engineer
66 salaries
unlock blur

₹6.5 L/yr - ₹21 L/yr

Software Developer
53 salaries
unlock blur

₹4 L/yr - ₹12.3 L/yr

Explore more salaries
Compare Ascendion with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview