Premium Employer

i

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

Accion Labs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Accion Labs Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top Accion Labs Interview Questions and Answers

View all 48 questions

Accion Labs Interview Experiences

Popular Designations

70 interviews found

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical discussion with general javascript concept and react basics
  • Q2. Closures in js React class vs function react and js basics
  • Ans. 

    Questions on JavaScript and React basics including closures, class vs function components, and general concepts.

    • Closures are functions that have access to variables in their outer scope.

    • Class components are ES6 classes that extend React.Component and have state and lifecycle methods.

    • Function components are simpler and don't have state or lifecycle methods.

    • React is a JavaScript library for building user interfaces.

    • JS ba...

  • Answered by AI
Round 2 - Coding Test 

React todo app and linked list

Round 3 - HR 

(1 Question)

  • Q1. Net pay discussion and date of joining

Interview Preparation Tips

Topics to prepare for Accion Labs Software Developer interview:
  • React.Js
  • Javascript
Interview preparation tips for other job seekers - Be strong on basics and prepare js core topics as well

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 (42)
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 Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic js questions related to hoisting closure and promises concept.
  • Q2. React hooks and state management with the proper dom understating.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic of coding realted to Object and reference based.
  • Q2. Create table to populate the data.
  • Ans. 

    Creating a table to populate data for a software engineer interview question.

    • Define the table structure with appropriate columns and data types

    • Specify any constraints or indexes needed

    • Insert sample data to demonstrate how the table will be populated

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - client round was bit hard to crack

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (199)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Depends on you skills and position they are hiring
  • Q2. Some logical questions
Round 2 - Technical 

(2 Questions)

  • Q1. Some logical question and technical questions
  • Q2. Related to you experience and some questions on your projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don’t take interview here, they just taking the interview to show the client that they are hiring that’s it they will not release the offer. I have taken the 5 technical interviews here but still didn’t get the offer from them.. they took first 2 round of interviews and said client is put on hold can you take it for other project, then they will take you again 2 rounds and they will say come to office for other round of interview. I have went to office also for other round they clearing that they will say project delivered head want to take interview with you again I have taken that. I clear that also then they said they will no offer you how much you expecting before taking the interview. They will say will release offer with same package what you have if say yes also they won’t release offe… please don’t take interviews here and don’t waste your time.

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the features of HFM
  • Ans. 

    HFM (Hyperion Financial Management) is a financial consolidation and reporting application.

    • Financial consolidation

    • Financial reporting

    • Intercompany eliminations

    • Currency translation

    • Data validation and auditing

  • Answered by AI

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (199)

Accion Labs interview questions for popular designations

 Senior Software Engineer

 (10)

 Software Engineer

 (7)

 Software Developer

 (3)

 Principal Software Engineer

 (3)

 Technical Lead

 (2)

 Test Engineer

 (2)

 Associate Software Engineer

 (2)

 Senior Engineer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Diff between Interface and Abstract Class ?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and constants, while abstract class can have abstract and non-abstract methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while abstrac...

  • Answered by AI
  • Q2. Can we have static methos in Interface and Abstract clss
  • Ans. 

    Yes, static methods can be defined in interfaces but not in abstract classes.

    • Static methods in interfaces are used for providing utility methods that can be accessed without creating an instance of the interface.

    • Static methods in abstract classes are not allowed as abstract classes are meant to be extended and implemented by subclasses.

    • Example: interface MyInterface { static void myMethod() { System.out.println("Static

  • Answered by AI
  • Q3. Difference between Hashmap and LinkedHashmap
  • Ans. 

    HashMap is unordered and unsorted, while LinkedHashMap maintains insertion order.

    • HashMap does not maintain insertion order, while LinkedHashMap maintains insertion order.

    • HashMap allows one null key and multiple null values, while LinkedHashMap allows one null key and multiple null values.

    • HashMap is faster for iteration, while LinkedHashMap is slower due to maintaining order.

  • Answered by AI
  • Q4. Apply OOPS concept in your framework and explain
  • Ans. 

    OOPS concepts like inheritance, encapsulation, and polymorphism can be applied in the framework design to improve code reusability and maintainability.

    • Use inheritance to create a base class with common methods and properties that can be inherited by other classes.

    • Encapsulate data and behavior within classes to protect data from being accessed directly.

    • Implement polymorphism to allow objects of different classes to be t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I yet to get my 2nd level of Interview scheduled. But this takes long time to schedule the interview? I have to follow up with them for multiple times. Still it is not scheduled.

Skills evaluated in this interview

Senior QA Analyst Interview Questions asked at other Companies

Q1. Can you convert lead if all required fields of contact or opportunity are not available on lead
View answer (1)

Get interview-ready with Top Accion Labs Interview Questions

Product Owner Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is your process for writing user stories?
  • Ans. 

    I follow a collaborative approach involving stakeholders to write user stories.

    • I conduct workshops with stakeholders to gather requirements and prioritize features.

    • I use the INVEST criteria to ensure user stories are Independent, Negotiable, Valuable, Estimable, Small, and Testable.

    • I include acceptance criteria to define the scope of each user story.

    • I continuously refine and update user stories based on feedback and ch

  • Answered by AI
  • Q2. What is the flow of your current project?
  • Ans. 

    The flow of the current project involves gathering requirements, prioritizing features, sprint planning, development, testing, and deployment.

    • Gathering requirements from stakeholders

    • Prioritizing features based on business value

    • Sprint planning with development team

    • Development of features

    • Testing of features

    • Deployment of completed features

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What steps would you take to design a warehouse as a product manager?
  • Ans. 

    To design a warehouse as a product manager, I would first analyze the requirements, create a detailed plan, collaborate with stakeholders, and continuously iterate on the design.

    • Analyze the requirements of the warehouse such as storage capacity, layout, automation needs, and safety regulations.

    • Create a detailed plan outlining the design specifications, budget, timeline, and resources required.

    • Collaborate with stakehold...

  • Answered by AI

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)

Jobs at Accion Labs

View all

Php Lead Interview Questions & Answers

user image Subhendu Panda

posted on 12 Jun 2024

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

(2 Questions)

  • Q1. What is MVC? Explain in detail.
  • Ans. 

    MVC is a software design pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the data to the user.

    • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly.

    • MVC helps in organizing code, improving maintainability, and promotin...

  • Answered by AI
  • Q2. What is difference between InnoDB and MyIsam?
  • Ans. 

    InnoDB is a transaction-safe storage engine for MySQL, while MyISAM is not transaction-safe.

    • InnoDB supports transactions with ACID properties, while MyISAM does not.

    • InnoDB supports foreign keys, while MyISAM does not.

    • InnoDB is more reliable and crash-safe compared to MyISAM.

    • InnoDB is the default storage engine for MySQL 5.5 and higher versions.

    • MyISAM is faster for read-heavy operations, while InnoDB is better for write

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What is difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • Interface cannot have method implementations, only method signatures.

    • Abstract class can have both method signatures and implementations.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to define a contract for classes to implement, while abstract cla...

  • Answered by AI
  • Q2. What is a static method?
  • Ans. 

    A static method is a method that belongs to the class itself, rather than to instances of the class.

    • Static methods can be called directly on the class without needing to create an instance of the class.

    • Static methods are commonly used for utility functions that do not require access to instance-specific data.

    • Static methods are declared using the 'static' keyword in PHP.

  • Answered by AI
  • Q3. Explain the steps to optimize SQL query
  • Ans. 

    Optimizing SQL queries involves analyzing query performance, indexing, minimizing data retrieval, and using appropriate joins.

    • Analyze query performance using tools like EXPLAIN to identify bottlenecks

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize data retrieval by selecting only necessary columns

    • Avoid using SELECT * and instead specify required columns

    • Use appropriate joins like INNER JOIN, LEFT JOIN, e

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. What does the array_map in PHP used for?
  • Ans. 

    array_map in PHP is used to apply a callback function to each element of an array.

    • array_map() returns an array containing all the elements of the input array after applying the callback function to each one.

    • It is useful for applying a function to all elements of an array without using a loop.

    • Example: array_map('strtoupper', ['apple', 'banana', 'cherry']) will return ['APPLE', 'BANANA', 'CHERRY'].

  • Answered by AI
  • Q2. What is callback function in PHP?
  • Ans. 

    A callback function in PHP is a function that is passed as an argument to another function and is executed at a later time.

    • Callback functions are commonly used in PHP for event handling, asynchronous processing, and custom sorting.

    • Example: array_map() function in PHP takes a callback function as an argument to apply a user-defined function to each element of an array.

    • Another example: usort() function in PHP uses a call...

  • Answered by AI
  • Q3. Explain the workflow of PHPUnit
  • Ans. 

    PHPUnit workflow involves writing test cases, running tests, and analyzing results.

    • Write test cases using PHPUnit framework

    • Run tests using PHPUnit command line interface or IDE integration

    • Analyze test results to identify failures and errors

    • Make necessary code changes to fix failing tests

    • Repeat the process until all tests pass successfully

  • Answered by AI

Skills evaluated in this interview

Top Accion Labs Php Lead Interview Questions and Answers

Q1. What is difference between interface and abstract class
View answer (1)

Php Lead Interview Questions asked at other Companies

Q1. What is difference between interface and abstract class
View answer (1)

ETL Developer Interview Questions & Answers

user image Kalaivani J

posted on 4 Sep 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Remove duplicates in SQL
  • Ans. 

    Use DISTINCT keyword or GROUP BY clause to remove duplicates in SQL

    • Use SELECT DISTINCT column_name FROM table_name to retrieve unique values

    • Use GROUP BY column_name HAVING COUNT(*) = 1 to remove duplicates based on a specific column

    • Consider using ROW_NUMBER() function with PARTITION BY clause to remove duplicates based on a specific order

  • Answered by AI
  • Q2. SCD type2 and filter

Skills evaluated in this interview

ETL Developer Interview Questions asked at other Companies

Q1. What are the content of APT_CONFIG_FILE? Can you brief on the relationship between APT_CONFIG_FILE and Partition.
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. AEM Architeture and Sling models
  • Q2. AEM Templates static and editables

Adobe AEM Developer Interview Questions asked at other Companies

Q1. Sightly Implicity objects?? Diff b/n Sling Resource Type And Sling Resource Super Type?? Sling Models?? Diff between Sling models and wcm use pojos?? Custom work flows?? Edit configs?? How do u create cf;ef;et?? Diff between cf and ef
View answer (1)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Coding Test 

SQL queries and Coding to write code of booking a ticket for train

Round 2 - Technical 

(1 Question)

  • Q1. Dot net core questions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't someone's time after all round you simply say position is on hold or the person who you will be replacing is retained.
You don't understand someone is looking for job desperately. Worst experience ever

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

RPA Developer Interview Questions & Answers

user image Swagasmini Jena

posted on 25 Aug 2024

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

(1 Question)

  • Q1. What is your experience in tool
  • Ans. 

    I have 3 years of experience working with UiPath and Automation Anywhere tools in developing RPA solutions.

    • 3 years of experience with UiPath and Automation Anywhere tools

    • Developed RPA solutions for automating repetitive tasks

    • Experience in designing and implementing automation workflows

    • Familiarity with debugging and troubleshooting RPA scripts

  • Answered by AI

RPA Developer Interview Questions asked at other Companies

Q1. What is procedural language and object oriented language? Which one is better? What are the examples of both?
View answer (1)

Accion Labs Interview FAQs

How many rounds are there in Accion Labs interview?
Accion Labs interview process usually has 1-2 rounds. The most common rounds in the Accion Labs interview process are Technical, HR and One-on-one Round.
How to prepare for Accion Labs 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 Accion Labs. The most common topics and skills that interviewers at Accion Labs expect are Java, Javascript, SQL, Python and Microservices.
What are the top questions asked in Accion Labs interview?

Some of the top questions asked at the Accion Labs interview -

  1. How do you deal with an under performer despite multiple warnin...read more
  2. Are you familiar with management reporting tools and how do you repo...read more
  3. Program Increment and how long it will be conducted with respect to S...read more
How long is the Accion Labs interview process?

The duration of Accion Labs interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Accion Labs Interview Process

based on 63 interviews

Interview experience

3.7
  
Good
View more
Join Accion Labs Helping transform businesses through emerging technologies

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all

Accion Labs Reviews and Ratings

based on 454 reviews

3.5/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.3

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 454 Reviews and Ratings
Informatica Developer (powercenter with Snowflake)

Noida,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

SharePoint / Power Platform Developer

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

₹ 20-35 LPA

Senior Oracle PL/SQL Database Developer

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
710 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
418 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
306 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
165 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Principal Software Engineer
145 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Accion Labs with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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