AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
logo
Premium Employer

i

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

Tekion Verified Tick Work with us arrow

Compare button icon Compare button icon Compare
3.1

based on 337 Reviews

  • Why join us
  • Reviews
    337
  • Salaries
    3.7k
  • Interviews
    97
  • Jobs
    47
  • Benefits
    42
  • Photos
    6

Filter interviews by

Tekion Associate Software Engineer Interview Questions and Answers

Updated 13 Jun 2025

6 Interview questions

An Associate Software Engineer was asked
Q. Design a parking lot.
Ans. 

Parking lot design involves layout, size, capacity, and efficiency considerations.

  • Consider the layout to maximize space and ease of access for vehicles.

  • Include designated spots for different types of vehicles (e.g. compact, electric, disabled).

  • Implement efficient traffic flow patterns to reduce congestion and improve safety.

  • Incorporate technology like sensors and automated payment systems for convenience.

  • Ensure pr...

An Associate Software Engineer was asked
Q. Given a number, find the number of occurrences of the digit 2 in it.
Ans. 

Count the number of 2s in a given number

  • Iterate through each digit of the number and count the occurrences of 2

  • Convert the number to a string for easier manipulation

  • Handle edge cases like negative numbers or zero

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
View answers (2)
asked in Hexaware Technologies
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
View answer (1)
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
View answers (2)
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
View answer (1)
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
View answer (1)
View All
An Associate Software Engineer was asked
Q. Given the root of a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.
Ans. 

The right view of a binary tree shows the rightmost node at each level.

  • Traverse the tree in a depth-first manner, starting from the right child of each node.

  • Keep track of the current level and only add the rightmost node of each level to the result.

  • Example: For the tree [1,2,3,null,5,null,4], the right view is [1,3,4].

An Associate Software Engineer was asked
Q. Given a binary tree, imagine yourself standing on the left side of it, return the values of the nodes you can see ordered from top to bottom.
Ans. 

Left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

  • The leftmost node at each level is included in the left view.

  • Use depth-first search to traverse the tree and keep track of the maximum level seen so far.

  • If the current node is at a level greater than the maximum level seen so far, add it to the left view and update the maximum level seen.

An Associate Software Engineer was asked
Q. Given a tree, connect the nodes that are on the same level.
Ans. 

Connect nodes of a tree on the same level

  • Use a queue to traverse the tree level by level

  • For each level, connect the nodes using their next pointer

  • If a node has no next node, set its next pointer to null

An Associate Software Engineer was asked
Q. You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the s...
Ans. 

Add two numbers represented as a linked list

  • Traverse both linked lists and add corresponding nodes

  • Handle carry over to next node

  • Create a new linked list to store the result

Tekion Associate Software Engineer Interview Experiences

14 interviews found

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Finding cycle in Linked list
  • Ans. 

    Detecting cycles in a linked list can be efficiently done using Floyd's Tortoise and Hare algorithm.

    • Use two pointers: slow and fast. Slow moves one step, fast moves two steps.

    • If there's a cycle, the fast pointer will eventually meet the slow pointer.

    • If the fast pointer reaches the end (null), there is no cycle.

    • Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (cycle back to 2), slow and fast will meet at 2.

  • Answered by AI
    Add your answer
  • Q2. DFS and tree questions
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude test for college students

Round 2 - Coding Test 

Dsa question was good means easy to medium

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

Coding Test on javascript on hackerrank

Round 2 - Coding Test 

Dsa + js + react js ques

Round 3 - HR 

(1 Question)

  • Q1. Salary expectations
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 15 May 2024

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

(1 Question)

  • Q1. 1 JS round Medium JS concepts (Debouncing, Throttling kind of) 2 DSA round 1 HR round
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2024

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

(1 Question)

  • Q1. Mostly asked javascript array, string, problem solving round
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Nov 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2023. There were 3 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 - Technical 

(1 Question)

  • Q1. Basic knowledge about flutter
  • Add your answer
Round 3 - Coding Test 

Write a flutter code to display the values as a list for the given JSON

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Meghal Bisht

posted on 9 Oct 2024

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

I applied via Referral and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Frontend and js basics
  • Add your answer
  • Q2. DSA MEDIUM LEVEL
  • Add your answer
Round 2 - Coding Test 

Machine coding round

Interview Preparation Tips

Topics to prepare for Tekion Associate Software Engineer interview:
  • Javascript
  • DSA
Interview preparation tips for other job seekers - prep good frontend and medium level dsa
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Deborshi Bhattacharjee

posted on 20 May 2024

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

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Find number of 2s in a given number
  • Ans. 

    Count the number of 2s in a given number

    • Iterate through each digit of the number and count the occurrences of 2

    • Convert the number to a string for easier manipulation

    • Handle edge cases like negative numbers or zero

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Parking lot design
  • Ans. 

    Parking lot design involves layout, size, capacity, and efficiency considerations.

    • Consider the layout to maximize space and ease of access for vehicles.

    • Include designated spots for different types of vehicles (e.g. compact, electric, disabled).

    • Implement efficient traffic flow patterns to reduce congestion and improve safety.

    • Incorporate technology like sensors and automated payment systems for convenience.

    • Ensure proper ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and low level design questions.

Skills evaluated in this interview

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Prabhu Jerry

posted on 5 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Written coding
1. tree related
2. linked list related
3. priority queue related

Round 2 - Technical 

(2 Questions)

  • Q1. 1. coding question on convex
  • Add your answer
  • Q2. 2. DB related questions
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 questions.
One was a medium DP
and second was an easy linked list

Round 2 - Coding Test 

System Design interview.
Design teacher scheduling

Round 3 - HR 

(2 Questions)

  • Q1. Basic java oops questions
  • Add your answer
  • Q2. Previous work ex
  • Ans. 

    I have experience in software development, focusing on web applications and collaborating in agile teams to deliver quality solutions.

    • Developed a web application using React and Node.js, improving user engagement by 30%.

    • Collaborated with a team of 5 in an agile environment, participating in daily stand-ups and sprint planning.

    • Implemented RESTful APIs for data retrieval, enhancing application performance and scalability...

  • Answered by AI
    Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Tekion?
Ask anonymously on communities.
More about working at Tekion
  • HQ - Pleasanton, California, United States
  • Software Product
  • 1k-5k Employees (India)

Tekion Interview FAQs

How many rounds are there in Tekion Associate Software Engineer interview?
Tekion interview process usually has 2-3 rounds. The most common rounds in the Tekion interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for Tekion Associate 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 Tekion. The most common topics and skills that interviewers at Tekion expect are Machine Learning, Computer science, MySQL, Automotive and Debugging.
What are the top questions asked in Tekion Associate Software Engineer interview?

Some of the top questions asked at the Tekion Associate Software Engineer interview -

  1. Connect nodes of a tree that are on the same le...read more
  2. Add two numbers represented as a linked l...read more
  3. Left View of a binary t...read more
How long is the Tekion Associate Software Engineer interview process?

The duration of Tekion Associate Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Tekion Interviews By Designations

  • Tekion Software Engineer Interview Questions
  • Tekion Associate Software Engineer Interview Questions
  • Tekion Senior Software Engineer Interview Questions
  • Tekion Software Developer Interview Questions
  • Tekion ASE Interview Questions
  • Tekion Application Support Engineer Interview Questions
  • Tekion QA Engineer Interview Questions
  • Tekion Associate Product Manager Interview Questions
  • Show more
  • Tekion Senior Software Developer Interview Questions
  • Tekion Senior QA Engineer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 14 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more
logo
Join Tekion Building the world's best business applications on the cloud. 

Associate Software Engineer Interview Questions from Similar Companies

Infor Global Solution
Infor Global Solution Associate Software Engineer Interview Questions
4.0
 • 13 Interviews
HighRadius
HighRadius Associate Software Engineer Interview Questions
2.8
 • 7 Interviews
Temenos
Temenos Associate Software Engineer Interview Questions
3.1
 • 4 Interviews
Blue Yonder
Blue Yonder Associate Software Engineer Interview Questions
3.9
 • 3 Interviews
Thomson Reuters
Thomson Reuters Associate Software Engineer Interview Questions
4.1
 • 2 Interviews
Innovaccer
Innovaccer Associate Software Engineer Interview Questions
3.4
 • 2 Interviews
Novac Technology Solutions
Novac Technology Solutions Associate Software Engineer Interview Questions
3.8
 • 2 Interviews
Zycus Infotech
Zycus Infotech Associate Software Engineer Interview Questions
2.9
 • 2 Interviews
AVASOFT
AVASOFT Associate Software Engineer Interview Questions
2.9
 • 1 Interview
Yardi Systems
Yardi Systems Associate Software Engineer Interview Questions
3.6
 • 1 Interview
View all
Tekion Associate Software Engineer Salary
based on 277 salaries
₹6 L/yr - ₹23.5 L/yr
141% more than the average Associate Software Engineer Salary in India
View more details

Tekion Associate Software Engineer Reviews and Ratings

based on 52 reviews

2.9/5

Rating in categories

3.3

Skill development

2.8

Work-life balance

3.2

Salary

2.3

Job security

2.8

Company culture

2.4

Promotions

2.9

Work satisfaction

Explore 52 Reviews and Ratings
Tekion Salaries in India
Software Engineer
580 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Associate Software Engineer
277 salaries
unlock blur

₹6 L/yr - ₹23.5 L/yr

Senior Software Engineer
208 salaries
unlock blur

₹15 L/yr - ₹55 L/yr

Software Developer
145 salaries
unlock blur

₹12.4 L/yr - ₹50 L/yr

Product Manager
111 salaries
unlock blur

₹13.9 L/yr - ₹45.7 L/yr

Explore more salaries
Compare Tekion with
Thomson Reuters

Thomson Reuters

4.1
Compare
HighRadius

HighRadius

2.8
Compare
Chetu

Chetu

3.3
Compare
EbixCash Limited

EbixCash Limited

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Tekion Interview Questions >
  • Tekion Associate Software Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter