Upload Button Icon Add office photos
Engaged Employer

i

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

Akra Tech Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 23 Reviews

Filter interviews by

Akra Tech Full Stack Developer Interview Questions, Process, and Tips

Updated 5 Jun 2024

Akra Tech Full Stack Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Please Introduce Yourself
  • Q2. Can you explain the projects you have worked on
  • Q3. Are you comfortable sharing the project
  • Q4. What is your salary expectation
Round 2 - Assignment 

Designing a page with Material UI. It gets data from an API and needs pagination, sorting and other basic things. 2 weeks time.

Round 3 - Technical 

(5 Questions)

  • Q1. What is React Fragment
  • Ans. 

    React Fragment is a feature in React that allows grouping multiple elements without adding extra nodes to the DOM.

    • React Fragment is used to group multiple elements without adding extra nodes to the DOM.

    • It helps in avoiding unnecessary div elements in the rendered output.

    • Fragments can be used with the <> syntax or tag.

    • They are especially useful when returning multiple elements from a component.

  • Answered by AI
  • Q2. What is JWT Token
  • Ans. 

    JWT Token is a JSON Web Token used for securely transmitting information between parties as a compact and self-contained way.

    • JWT Token stands for JSON Web Token

    • It is used for authentication and information exchange between parties

    • Consists of three parts: header, payload, and signature

    • Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2Q

  • Answered by AI
  • Q3. How is JWT Token stored
  • Ans. 

    JWT tokens are typically stored in client-side storage such as cookies or local storage.

    • JWT tokens are usually stored in client-side storage like cookies or local storage.

    • Cookies are a common storage mechanism for JWT tokens as they are automatically sent with every HTTP request.

    • Local storage is another option for storing JWT tokens on the client side.

    • JWT tokens should be stored securely to prevent unauthorized access.

  • Answered by AI
  • Q4. How is API request made in Nodejs
  • Ans. 

    API requests in Node.js are made using the 'http' or 'axios' module to send HTTP requests to a server.

    • Use the 'http' module to create a server and handle incoming requests.

    • Use the 'axios' module to make HTTP requests to external APIs.

    • Include the necessary headers, data, and options when making the request.

    • Handle the response from the server or API accordingly.

  • Answered by AI
  • Q5. Did you use any custom middlewares
  • Ans. 

    Yes, I have used custom middlewares in my projects to handle authentication, logging, error handling, etc.

    • Used custom middleware for authentication to verify user credentials before accessing protected routes

    • Implemented logging middleware to log requests, responses, and errors for debugging purposes

    • Created error handling middleware to catch and handle errors in a centralized way

    • Customized middleware for rate limiting t

  • Answered by AI
Round 4 - Coding Test 

DSA Question to find frequency of letter in a word in ascending order.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good process. Slightly strict and my request to reschedule was denied. Otherwise everything seems to go as normal.

Skills evaluated in this interview

Full Stack Developer Jobs at Akra Tech

View all

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Context api, js related qstns, simple programming qstn,
  • Q2. Remove duplicates without using set.
  • Ans. 

    Remove duplicates from array of strings without using set.

    • Iterate through the array and compare each element with all other elements to find duplicates.

    • Create a new array and add elements only if they are not already present in the new array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on basics of react hooks, node js concepts.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quantitative , figure ,mcq question based on tech stack and 2 coding question which are basic. 90 minute time limit.

Round 2 - Technical 

(2 Questions)

  • Q1. Angular question
  • Q2. .net question and sql question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Duplicate value in a array
  • Ans. 

    Finding duplicate values in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return the duplicate values found

  • Answered by AI
Round 2 - Client Interview 

(2 Questions)

  • Q1. Generators In Javascript
  • Ans. 

    Generators in JavaScript are functions that can be paused and resumed, allowing for asynchronous programming.

    • Generators are defined using function* syntax.

    • They use the yield keyword to pause execution and return a value.

    • Generators can be iterated over using a for...of loop.

    • They are commonly used for asynchronous operations and managing state.

  • Answered by AI
  • Q2. Flatten a array without using inbuild functions
  • Ans. 

    Flatten an array without using inbuilt functions

    • Create a recursive function to iterate through the array elements

    • Check if each element is an array, if so, call the function recursively

    • Concatenate the elements into a new array

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Assignment 

Regarding To My Full Stack

Round 2 - Aptitude Test 

Regarding To My Full Stack

Round 3 - HR 

(2 Questions)

  • Q1. What Is Python And Discuss With Some Questions
  • Q2. In that Case Studies
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between authentication and authorization
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what a user can access.

    • Authentication confirms the user's identity through credentials like passwords or biometrics

    • Authorization controls the user's access to resources or features based on their identity and permissions

    • Example: Logging into a website with a username and password is authentication, while being able to view/edit specific page

  • Answered by AI
  • Q2. What is promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI
  • Q3. What is rxjs and its uses
  • Ans. 

    RxJS is a library for reactive programming using Observables to handle asynchronous data streams.

    • RxJS stands for Reactive Extensions for JavaScript.

    • It allows you to work with asynchronous data streams and handle events.

    • RxJS provides operators to transform, filter, combine, and create observables.

    • Example: Using RxJS to handle user input events in a web application.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain architecture of project
  • Ans. 

    The project architecture follows a microservices design pattern with separate front-end and back-end components.

    • Utilizes microservices architecture for scalability and flexibility

    • Separate front-end and back-end components for modularity

    • May include technologies like Docker for containerization and Kubernetes for orchestration

  • Answered by AI
  • Q2. Async and await difference
  • Ans. 

    Async and await are keywords in JavaScript used for handling asynchronous operations.

    • Async is used to define a function as asynchronous, allowing it to use the await keyword.

    • Await is used to pause the execution of an async function until a Promise is settled.

    • Async functions always return a Promise, which resolves with the value returned by the function.

    • Using async/await makes asynchronous code easier to read and write

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Programming language, c, html, css, javascript, php, angular,

Interview Preparation Tips

Topics to prepare for ITC Infotech Full Stack Developer interview:
  • full stack web develaper
Interview preparation tips for other job seekers - full stock webdevelapre
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Two coding question and some aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts and basic coding programs
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How did you work on your previous project (processes)?
  • Q2. How do you work on complex tasks? Describe your approach
  • Ans. 

    I break down complex tasks into smaller, manageable steps and prioritize them based on dependencies and deadlines.

    • Analyze the requirements and understand the problem thoroughly

    • Break down the task into smaller subtasks

    • Prioritize the subtasks based on dependencies and deadlines

    • Create a plan or roadmap to guide the development process

    • Implement each subtask one by one, ensuring proper testing and quality assurance

    • Regularly...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Use more examples from your daily experiance
Communication is a key

Akra Tech Interview FAQs

How many rounds are there in Akra Tech Full Stack Developer interview?
Akra Tech interview process usually has 4 rounds. The most common rounds in the Akra Tech interview process are Assignment, Technical and Coding Test.
How to prepare for Akra Tech Full Stack Developer 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 Akra Tech. The most common topics and skills that interviewers at Akra Tech expect are Javascript.
What are the top questions asked in Akra Tech Full Stack Developer interview?

Some of the top questions asked at the Akra Tech Full Stack Developer interview -

  1. How is API request made in Nod...read more
  2. Did you use any custom middlewa...read more
  3. What is React Fragm...read more

Tell us how to improve this page.

Akra Tech Full Stack Developer Reviews and Ratings

based on 2 reviews

2.5/5

Rating in categories

2.5

Skill development

3.0

Work-Life balance

2.5

Salary & Benefits

2.0

Job Security

2.5

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 2 Reviews and Ratings
FULL STACK DEVELOPER

Chennai

3-8 Yrs

Not Disclosed

Explore more jobs
Senior Manager
5 salaries
unlock blur

₹12 L/yr - ₹12 L/yr

Software Engineer
3 salaries
unlock blur

₹5 L/yr - ₹5.6 L/yr

Software Tester
3 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Akra Tech with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview