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
    46
  • Benefits
    42
  • Photos
    6

Filter interviews by

Tekion Interview Questions and Answers

Updated 13 Jun 2025
Popular Designations

44 Interview questions

An Associate Software Engineer was asked 4d ago
Q. Given the head of a singly linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously followin...
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.

View all Associate Software Engineer interview questions
A Senior Development Engineer was asked 2mo ago
Q. Implement Polyfills for Promises
Ans. 

Implementing polyfills for Promises to ensure compatibility in environments lacking native support.

  • Define a Promise constructor that takes an executor function with resolve and reject parameters.

  • Implement the 'then' method to handle chaining of promises.

  • Handle asynchronous operations using 'setTimeout' to mimic the behavior of native promises.

  • Ensure proper error handling by catching exceptions and calling the reje...

View all Senior Development Engineer interview questions
A Senior Development Engineer was asked 2mo ago
Q. Implement Promise.all.
Ans. 

Implementing Promise.all allows multiple promises to run concurrently and resolves when all promises are fulfilled.

  • Promise.all takes an iterable of promises as input.

  • It returns a single promise that resolves when all input promises resolve.

  • If any promise rejects, Promise.all immediately rejects with that reason.

  • Example: Promise.all([promise1, promise2]).then(results => { /* handle results */ });

  • The resolved val...

View all Senior Development Engineer interview questions
A Software Engineer was asked 6mo ago
Q. Path of longest sum
Ans. 

Find the path in a matrix with the longest sum of elements

  • Start from the top-left corner of the matrix

  • Move only right or down in the matrix

  • Keep track of the sum of elements in each path

  • Return the path with the longest sum

View all Software Engineer interview questions
A Software Developer was asked 6mo ago
Q. Sum of Subarray Problem Statement Given an array of integers nums, find the sum of all possible subarrays. A subarray is a contiguous part of an array, and the sum of a subarray can be defined as the sum of...
Ans. 

The problem involves finding the sum of all possible subarrays in an array of integers.

  • Use nested loops to iterate through all possible subarrays

  • Keep track of the sum of each subarray as you iterate

  • Consider edge cases like empty array or negative numbers

View all Software Developer interview questions
A Software Developer was asked 6mo ago
Q. Implement a graph data structure and perform a Depth-First Search (DFS) or Breadth-First Search (BFS) traversal. Explain the time and space complexity of your implementation.
Ans. 

Graph algorithms are essential for solving problems related to networks, paths, and connectivity in data structures.

  • Graphs can be represented using adjacency lists or adjacency matrices.

  • Common algorithms include Depth-First Search (DFS) and Breadth-First Search (BFS).

  • Dijkstra's algorithm finds the shortest path in weighted graphs.

  • Topological sorting is used in directed acyclic graphs (DAGs) to order vertices.

  • Examp...

View all Software Developer interview questions
A Software Engineer was asked 6mo ago
Q. Design an in-memory database.
Ans. 

An in-memory database is a database that primarily relies on main memory for data storage and retrieval.

  • Utilize data structures like hash tables or trees for fast data access

  • Implement caching mechanisms to optimize performance

  • Consider data persistence strategies for durability

  • Support for transactions and concurrency control

  • Example: Redis, Memcached

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 6mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of the pointers between nodes.

  • Iterative approach: Use three pointers (prev, current, next) to reverse links.

  • Example: For list 1 -> 2 -> 3, after reversal it becomes 3 -> 2 -> 1.

  • Recursive approach: Reverse the rest of the list and adjust pointers.

  • Example: Base case is when the list is empty or has one node.

View all Software Engineer interview questions
An Application Support Engineer 2 was asked 7mo ago
Q. What tools do you use for troubleshooting?
Ans. 

Common tools for troubleshooting include log analysis tools, network monitoring tools, and remote desktop tools.

  • Log analysis tools such as Splunk or ELK stack can help identify errors and issues in application logs.

  • Network monitoring tools like Wireshark or Nagios can help pinpoint network-related problems.

  • Remote desktop tools like TeamViewer or AnyDesk can be used to troubleshoot issues on end-user machines remot...

View all Application Support Engineer 2 interview questions
An Application Support Engineer 2 was asked 7mo ago
Q. Tell me about your experience using Splunk.
Ans. 

I have experience using Splunk for log management and analysis.

  • Utilized Splunk to monitor and analyze log data for troubleshooting issues

  • Created custom dashboards and alerts to track system performance

  • Used Splunk queries to identify patterns and trends in log data

  • Integrated Splunk with other tools for seamless data analysis

View all Application Support Engineer 2 interview questions
1 2 3 4 5

Tekion Interview Experiences

97 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

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Easy array problem
  • Add your answer
  • Q2. Easy tree traversal problem
  • Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. Trapping rain water
  • Add your answer
  • Q2. Path of longest sum
  • Ans. 

    Find the path in a matrix with the longest sum of elements

    • Start from the top-left corner of the matrix

    • Move only right or down in the matrix

    • Keep track of the sum of elements in each path

    • Return the path with the longest sum

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode medium problem + some LLD + some HLD

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Computer Engineer Interview Questions & Answers

user image Himanshi Khandwal

posted on 19 Nov 2024

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

IT WAS BIT TOUGH AND WAS BASED UPON LEETCODE AND CONTAINED SOME MCQ AS WELL

Round 2 - Technical 

(3 Questions)

  • Q1. BASED ON RESUME
  • Add your answer
  • Q2. BASED ON DSA AND ASKED LINKED LIST QUESTIONS
  • Add your answer
  • Q3. BASE DON OOPS AS WELL
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - BE MOTIVATED AND DONT LOOSE HOPE IN THE JOURNEY KEEP REVISING BASICS AS WELL

Computer Engineer Interview Questions asked at other Companies

Q1. How many development tools have you used?
View answer (1)
Anonymous

Application Support Engineer 2 Interview Questions & Answers

user image Anonymous

posted on 17 Nov 2024

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

(2 Questions)

  • Q1. Previous experience on Troubleshoting
  • Ans. 

    I have 3 years of experience troubleshooting various software and hardware issues in a corporate IT environment.

    • Experience diagnosing and resolving technical issues for end users

    • Proficient in using troubleshooting tools and techniques

    • Ability to analyze logs and error messages to identify root causes

    • Familiarity with ticketing systems for tracking and documenting issues

    • Collaborated with cross-functional teams to resolve ...

  • Answered by AI
    Add your answer
  • Q2. Experience on REST API's
  • Ans. 

    Experience working with REST API's in previous roles.

    • Developed and maintained RESTful APIs for various applications

    • Used tools like Postman for testing and debugging API endpoints

    • Worked with JSON and XML data formats for API communication

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Tools used for troubleshoting
  • Ans. 

    Common tools for troubleshooting include log analysis tools, network monitoring tools, and remote desktop tools.

    • Log analysis tools such as Splunk or ELK stack can help identify errors and issues in application logs.

    • Network monitoring tools like Wireshark or Nagios can help pinpoint network-related problems.

    • Remote desktop tools like TeamViewer or AnyDesk can be used to troubleshoot issues on end-user machines remotely.

  • Answered by AI
    Add your answer
  • Q2. And experience using splunk
  • Ans. 

    I have experience using Splunk for log management and analysis.

    • Utilized Splunk to monitor and analyze log data for troubleshooting issues

    • Created custom dashboards and alerts to track system performance

    • Used Splunk queries to identify patterns and trends in log data

    • Integrated Splunk with other tools for seamless data analysis

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Application Support Engineer 2 Interview Questions asked at other Companies

Q1. How would you check if a directory exists in a shell script under Unix/Linux Operating Systems?
View answer (1)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Design a in memory database
  • Add your answer
  • Q2. Design notification Service
  • Ans. 

    Design a notification service for sending alerts to users.

    • Use a scalable messaging system like Kafka or RabbitMQ to handle high volume of notifications.

    • Implement a user subscription system to allow users to choose which notifications they want to receive.

    • Include different channels for notifications such as email, SMS, and push notifications.

    • Consider implementing a scheduling system to send notifications at specific tim...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2024

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Closures, hoisting and sliding window problem
  • Add your answer
  • Q2. Simple JS, HTMl and CSS
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Progress bar designing in react
  • Ans. 

    Progress bar in React can be designed using CSS and state management.

    • Use CSS to style the progress bar

    • Use state management to update the progress value dynamically

    • Consider using libraries like react-progress-bar to simplify implementation

  • Answered by AI
    Add your answer
  • Q2. Timer in react Js
  • Ans. 

    In React JS, timers can be implemented using setInterval or setTimeout functions.

    • Use setInterval for recurring timers

    • Use setTimeout for one-time timers

    • Remember to clear the timer using clearInterval or clearTimeout when component unmounts

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
View answer (272)
Anonymous

Front end Developer Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2024

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

I applied via Instahyre and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find top k elements?
  • Ans. 

    Use sorting or heap data structure to find top k elements in an array.

    • Sort the array in descending order and return the first k elements.

    • Use a max heap data structure to efficiently find the top k elements.

    • Time complexity can be O(n log n) for sorting or O(n log k) for heap method.

  • Answered by AI
    Add your answer
  • Q2. Hash map based question
  • Add your answer
Round 2 - Technical 

(4 Questions)

  • Q1. Arraow fun vs normal fun
  • Ans. 

    Arrow functions are concise and have implicit return, while normal functions have more flexibility and can be named.

    • Arrow functions are written with a concise syntax using '=>'

    • Arrow functions do not have their own 'this' keyword

    • Normal functions can be named and have more flexibility in terms of syntax and behavior

  • Answered by AI
    Add your answer
  • Q2. What are es6 updates
  • Ans. 

    ES6 updates refer to the new features and syntax improvements introduced in ECMAScript 6, also known as ES2015.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for object-oriented programming

    • Template literals for easier string interpolation

    • Destructuring assignment for extracting values from arrays and objects

    • Spread and rest operators for easier manipulation of arrays and objects

  • Answered by AI
    Add your answer
  • Q3. Define event loop ?
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop continuously checks the call stack for any functions that need to be executed.

    • If the call stack is empty, the event loop checks the callback queue for any pending tasks.

    • Event loop moves tasks from the callback queue to the call stack for execution.

    • Example: setTimeout function in JavaScript use...

  • Answered by AI
    Add your answer
  • Q4. Questions based on promises
  • Add your answer

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Jul 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Problem Solving 

(1 Question)

  • Q1. 2 Leetcode Medium Tagged Questions
  • Add your answer
Round 2 - LLD Round 

(1 Question)

  • Q1. Design Airplane Booking System
  • Ans. 

    Design a system for booking airplane tickets efficiently and securely.

    • Create a user-friendly interface for customers to search and book flights.

    • Implement a secure payment system for processing transactions.

    • Include features for managing flight schedules, seat availability, and pricing.

    • Integrate with airlines' reservation systems for real-time updates.

    • Provide options for seat selection, meal preferences, and special requ...

  • Answered by AI
    Add your answer
Round 3 - HLD Round 

(2 Questions)

  • Q1. HLD of your current system and discussion around it
  • Ans. 

    High-Level Design (HLD) outlines the architecture and components of our current software system.

    • System Architecture: Microservices architecture with independent services for user management, order processing, and payment.

    • Data Flow: User requests are routed through an API Gateway to respective microservices, ensuring scalability.

    • Database Design: Each microservice has its own database, e.g., PostgreSQL for user data and ...

  • Answered by AI
    Add your answer
  • Q2. Design IRCTC. Discussion scope was Search and Booking Part only
  • Ans. 

    Design a system for searching and booking train tickets on IRCTC, focusing on user experience and backend architecture.

    • User Interface: A clean, intuitive UI for searching trains by source, destination, and date.

    • Search Algorithm: Implement efficient algorithms to fetch available trains based on user input.

    • Database Design: Use a relational database to store train schedules, bookings, and user data.

    • Caching: Implement cach...

  • Answered by AI
    Add your answer
Round 4 - Behavioral 

(2 Questions)

  • Q1. Design your current system
  • Ans. 

    Current system is a web-based application for managing customer data and orders.

    • Frontend built with React for user interface

    • Backend built with Node.js and Express for server-side logic

    • Database using MySQL for storing customer data and orders

    • Authentication using JWT tokens for secure access

  • Answered by AI
    Add your answer
  • Q2. Some behavioural questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Alex Xu system design book helped

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
Anonymous

Reactjs Developer Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

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 Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Polyfill promise.all
  • Ans. 

    A polyfill for Promise.all that resolves multiple promises and returns a single promise with an array of results.

    • Create a function named 'promiseAll' that accepts an array of promises.

    • Use 'Promise.resolve()' to handle non-promise values.

    • Utilize 'Promise.allSettled()' to wait for all promises to settle.

    • Return a single promise that resolves with an array of results.

  • Answered by AI
    Add your answer
  • Q2. De bouncing implementation
  • Ans. 

    Debouncing is a technique to limit the rate at which a function is executed, improving performance in React applications.

    • Debouncing delays the execution of a function until after a specified wait time has elapsed since the last time it was invoked.

    • Commonly used in scenarios like search input fields to prevent excessive API calls while the user is typing.

    • Example: Using lodash's debounce function: const debouncedFunction...

  • Answered by AI
    Add your answer

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement a counter with increment and decrement buttons. Include an input field to set the counter's initial value, and ensure increment/decrement operations are based on this input value.
View answer (2)
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. DSA Graph question in any language
  • Ans. 

    Graph algorithms are essential for solving problems related to networks, paths, and connectivity in data structures.

    • Graphs can be represented using adjacency lists or adjacency matrices.

    • Common algorithms include Depth-First Search (DFS) and Breadth-First Search (BFS).

    • Dijkstra's algorithm finds the shortest path in weighted graphs.

    • Topological sorting is used in directed acyclic graphs (DAGs) to order vertices.

    • Example: U...

  • Answered by AI
    Add your answer
  • Q2. Sum of sub array
  • Ans. 

    The problem involves finding the sum of all possible subarrays in an array of integers.

    • Use nested loops to iterate through all possible subarrays

    • Keep track of the sum of each subarray as you iterate

    • Consider edge cases like empty array or negative numbers

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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 interview?
Tekion interview process usually has 2-3 rounds. The most common rounds in the Tekion interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Tekion 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, Automotive Engineering, Python, Big Data and Automotive.
What are the top questions asked in Tekion interview?

Some of the top questions asked at the Tekion interview -

  1. Can you describe the coding challenge you participated in, including the JavaSc...read more
  2. Connect nodes of a tree that are on the same le...read more
  3. HLD design problem on current project implementat...read more
What are the most common questions asked in Tekion HR round?

The most common HR questions asked in Tekion interview are -

  1. Why are you looking for a chan...read more
  2. What are your strengths and weakness...read more
  3. What are your salary expectatio...read more
How long is the Tekion interview process?

The duration of Tekion 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

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Analyst Interview Questions
  • Business Analyst Interview Questions
  • Senior Associate Interview Questions
  • Sales Executive Interview Questions
  • Show more
  • Java Developer Interview Questions
  • Assistant Manager Interview Questions

Overall Interview Experience Rating

4.1/5

based on 101 interview experiences

Difficulty level

Easy 20%
Moderate 77%
Hard 4%

Duration

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

Interview Questions from Similar Companies

HighRadius
HighRadius Interview Questions
2.8
 • 197 Interviews
Chetu
Chetu Interview Questions
3.3
 • 190 Interviews
AVASOFT
AVASOFT Interview Questions
2.9
 • 173 Interviews
ivy
ivy Interview Questions
3.6
 • 132 Interviews
Axtria
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
DE Shaw
DE Shaw Interview Questions
3.8
 • 122 Interviews
Amadeus
Amadeus Interview Questions
3.8
 • 115 Interviews
IBS Software Services
IBS Software Services Interview Questions
3.6
 • 114 Interviews
UKG
UKG Interview Questions
3.1
 • 111 Interviews
View all

Tekion Reviews and Ratings

based on 337 reviews

3.1/5

Rating in categories

3.1

Skill development

2.7

Work-life balance

3.3

Salary

2.6

Job security

2.8

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 337 Reviews and Ratings
Jobs at Tekion
Tekion
Staff Product Designer - Design System

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Tekion
Design Operation Specialist II

Bangalore / Bengaluru

3-4 Yrs

Not Disclosed

Tekion
Manager, Product Design

Bangalore / Bengaluru

9-14 Yrs

Not Disclosed

Explore more jobs
Tekion Salaries in India
Software Engineer
577 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

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Tekion 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