Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare
3.0

based on 298 Reviews

Filter interviews by

Tekion Front end Developer Interview Questions, Process, and Tips

Updated 13 Jun 2024

Top Tekion Front end Developer Interview Questions and Answers

Tekion Front end Developer Interview Experiences

2 interviews found

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
  • Q2. Hash map based question
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
  • 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
  • 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
  • Q4. Questions based on promises

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Almost all on class based components in react js & polyfills prototypes for array methods

Interview Preparation Tips

Interview preparation tips for other job seekers - they mostly ask about class base components

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
asked in Siemens
Q5. Sort Array Problem Statement Given an array consisting of 'N' pos ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Maintain a good communication to the hr

Round 2 - Technical 

(5 Questions)

  • Q1. Questions from your resume and projects
  • Q2. Difference between elements and tags
  • Ans. 

    Elements are individual components of a web page, while tags are used to define the structure of elements in HTML.

    • Elements are the actual components on a web page, such as headings, paragraphs, images, etc.

    • Tags are used to define the structure of elements in HTML, such as

      for a heading or

      for a paragraph.

    • Elements can have attributes that provide additional information or functionality, while tags do not.

Answered by AI
  • Q3. Uses of functions in js
  • Ans. 

    Functions in JavaScript are used to define reusable blocks of code that can be called multiple times.

    • Functions can be used to perform specific tasks or calculations.

    • Functions can be passed as arguments to other functions.

    • Functions can be assigned to variables or properties of objects.

    • Functions can be used to create closures for encapsulating data.

    • Functions can be used to create custom methods for objects.

  • Answered by AI
  • Q4. Uses of get elementbyId in js
  • Ans. 

    getElementById is used in JavaScript to access and manipulate an element in the DOM by its unique ID.

    • Used to retrieve a specific element from the DOM by its ID

    • Allows for manipulation of the element's properties, styles, and content

    • Commonly used in event handling and dynamic content updates

  • Answered by AI
  • Q5. Typesof cssess ?
  • Ans. 

    There are three types of CSS: inline, internal, and external.

    • Inline CSS is applied directly to an HTML element using the style attribute.

    • Internal CSS is defined within the head section of an HTML document using the style tag.

    • External CSS is stored in a separate file and linked to the HTML document using the link tag.

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident at what you have

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Jul 2023. There were 2 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 

    (2 Questions)

    • Q1. What is javascript?
    • Ans. 

      JavaScript is a high-level, interpreted programming language that is used to make web pages interactive and dynamic.

      • JavaScript is commonly used for client-side web development.

      • It can be used to create interactive features like forms, animations, and dynamic content.

      • JavaScript can also be used for server-side development with Node.js.

    • Answered by AI
    • Q2. Types of variable in JavaScript
    • Ans. 

      Types of variables in JavaScript include var, let, and const.

      • var: globally scoped or function scoped

      • let: block scoped, can be reassigned

      • const: block scoped, cannot be reassigned

    • Answered by AI

    Skills evaluated in this interview

    I applied via Company Website and was interviewed in Mar 2022. There were 2 interview rounds.

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Implement a calculator class which does this cal.add(2).sub(3).mul(4).delay(2000).add(4) etc
    • Ans. 

      Implement a calculator class with chaining methods and delay function.

      • Create a Calculator class with add, sub, mul methods that return the instance of the class.

      • Implement a delay method that uses setTimeout and returns the instance of the class.

      • Use a queue to store the operations and execute them in order after the delay.

      • Return the result of the operations when the equals method is called.

    • Answered by AI
    • Q2. Problems on Array and bit manipulation. Questions on setTimeout() and bind functions. Polyfill for Promise function currying add(1)(2)(3)(4) etc
    Round 2 - One-on-one 

    (1 Question)

    • Q1. Given a nested checkboxes like parents > children > childre etc write javascript code such that on click of any checkbox all its children should get updated to same value as that parent.

    Interview Preparation Tips

    Topics to prepare for Nutanix Front end Developer interview:
    • DSA
    • Javascript
    • React.Js
    Interview preparation tips for other job seekers - Brush up well with javascript. Polyfills for all the methods, DSA, setTimeout() call, bind, apply method.

    Skills evaluated in this interview

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

    I applied via Approached by Company and was interviewed before Dec 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 - Technical 

    (3 Questions)

    • Q1. Basic JS concepts and programming related to them
    • Q2. HTML, CSS questions
    • Q3. Framework knowledge
    Round 3 - Technical 

    (1 Question)

    • Q1. Problem solving related to algorithms and data structures

    I applied via LinkedIn and was interviewed in Nov 2021. There were 5 interview rounds.

    Interview Questionnaire 

    6 Questions

    • Q1. Basics of javascript
    • Q2. Concepts of DOM
    • Q3. React based questions. ES6 features
    • Q4. Advanced concepts like redux
    • Q5. Describe your past projects
    • Q6. How will you develop an application which shows all airports in the country in a map. User needs to login and report any incidents happened in a particular airport
    • Ans. 

      Develop an app to show all airports in a country on a map and allow users to report incidents after logging in.

      • Use a map API like Google Maps or Mapbox to display all airports in the country

      • Implement a login system for users to report incidents

      • Create a form for users to report incidents with fields like airport name, incident type, and description

      • Store incident reports in a database for future reference and analysis

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be well prepared. Search Google for react and javascript interview questions

    Skills evaluated in this interview

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

    I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    CBT-based assessments in aptitude and pseudocode for the MCA program.

    Round 2 - Technical 

    (5 Questions)

    • Q1. React development basic questions
    • Q2. Basic html, css, js
    • Q3. Basic JSX and introduction of react
    • Q4. Basic state management like useState, useeffect, usecontext
    • Q5. Redux for global state management

    Interview Preparation Tips

    Interview preparation tips for other job seekers - As a newcomer, always rely on the fundamentals of various technologies such as Java, HTML, CSS, and JavaScript.
    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    Not Selected

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. Multiple interviews were cancelled and the final inter was just for 20 mins in which the interviewer was unavailable for 6-7 mins
    • Q2. Interviewer just wanted reasons to reject the profile
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

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

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Create a tic tac toe game taking number of boards as a parameter
    • Ans. 

      Create a tic tac toe game with customizable number of boards.

      • Accept number of boards as a parameter

      • Create a 3x3 grid for each board

      • Implement logic to check for winning combinations on each board

    • Answered by AI
    • Q2. Create a feature flag component
    • Ans. 

      Feature flag component to control feature toggling in the application

      • Create a component that accepts a feature flag name as prop

      • Check if the feature flag is enabled or disabled

      • Render the component content based on the feature flag status

    • Answered by AI

    Skills evaluated in this interview

    Tekion Interview FAQs

    How many rounds are there in Tekion Front end Developer interview?
    Tekion interview process usually has 1-2 rounds. The most common rounds in the Tekion interview process are Technical and Coding Test.
    What are the top questions asked in Tekion Front end Developer interview?

    Some of the top questions asked at the Tekion Front end Developer interview -

    1. what are es6 upda...read more
    2. arraow fun vs normal ...read more
    3. find top k elemen...read more

    Tell us how to improve this page.

    Tekion Front end Developer Interview Process

    based on 2 interviews

    Interview experience

    3.5
      
    Good
    View more
    Tekion Front end Developer Salary
    based on 15 salaries
    ₹4.5 L/yr - ₹17 L/yr
    82% more than the average Front end Developer Salary in India
    View more details

    Tekion Front end Developer Reviews and Ratings

    based on 2 reviews

    3.9/5

    Rating in categories

    3.9

    Skill development

    4.7

    Work-life balance

    4.0

    Salary

    1.2

    Job security

    4.7

    Company culture

    3.0

    Promotions

    3.9

    Work satisfaction

    Explore 2 Reviews and Ratings
    Software Engineer
    375 salaries
    unlock blur

    ₹8.4 L/yr - ₹33 L/yr

    Associate Software Engineer
    323 salaries
    unlock blur

    ₹6 L/yr - ₹23.5 L/yr

    Senior Software Engineer
    141 salaries
    unlock blur

    ₹16 L/yr - ₹51 L/yr

    Product Manager
    81 salaries
    unlock blur

    ₹12.3 L/yr - ₹44 L/yr

    QA Engineer
    65 salaries
    unlock blur

    ₹6 L/yr - ₹17.5 L/yr

    Explore more salaries
    Compare Tekion with

    CarDekho

    3.7
    Compare

    Cartrade.com

    3.9
    Compare

    CARS24

    3.6
    Compare

    Razorpay

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