Upload Button Icon Add office photos

Filter interviews by

Able Jobs Interview Questions and Answers

Updated 7 Aug 2024

Able Jobs Interview Experiences

Popular Designations

6 interviews found

I applied via Company Website and was interviewed in Jul 2022. There were 4 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 - Aptitude Test 

Basics question of numerical ability and reasoning.

Round 3 - Technical 

(1 Question)

  • Q1. Questions asked on technical knowledge of excel, sql, python.
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Able job provide training for data or business analyst. They tech us advance excel, sql, and python. They also help us how to prepare for stress interview questions.

Trainee Analyst Interview Questions asked at other Companies

Q1. Minimum Stops for Ninja's Journey Problem Statement Ninja wishes to travel from his house to a destination X miles away. He knows there are Y gas stations along the way, each station i located at a distance d[i] from the house with g[i] lit... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(2 Questions)

  • Q1. About family and my self
  • Q2. About my previous work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - CEO had taken my interview as if I'm giving interview in some big 4 company. After giving the interview i opened the company reviews. Found many bad reviews about CEO. Today I got to know that company has been shut. I'm soo happy nd writing the review.

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. About my previous work experience and overall expectation from Able
Round 3 - Technical 

(1 Question)

  • Q1. Majorly about my learnings in previous organization and know how of technical.
Round 4 - One-on-one 

(1 Question)

  • Q1. Mostly consisted of behavioral and cultural fir aspect.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself, be honest and show through your answers that you are a hustler, and good fit for a high functional startup. All the best!

Talent Acquisition Executive Interview Questions asked at other Companies

Q1. How much exposure is there in real estate or sales ?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 29 Sep 2022

I applied via Approached by Company and was interviewed in Mar 2022. There were 2 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 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. Why do you want to join this internship?
  • Answered Anonymously
  • Q2. Do you know how to work in excel?
  • Q3. What do you know about community?

Interview Preparation Tips

Topics to prepare for Able Jobs interview:
  • Basic Excel
  • Operations
Interview preparation tips for other job seekers - If you have good english communication skills both written and verbal and you are keen to learn then startups are the best place for you. You get good opportunities, every one around you will be polite to you, and if they like your work you will get promoted faster. The cons are you will have to work longer than your working hours and it affects your work life balance.

Able Jobs interview questions for popular designations

 BDM Sales

 (1)

 Talent Acquisition Executive

 (1)

 Operations Associate

 (1)

 Trainee Analyst

 (1)

 (Bde)business Development Executive

 (1)

Round 1 - One-on-one 

(1 Question)

  • Q1. What was your major struggles

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer behaved rude, all the candidates should be treated well.

(Bde)business Development Executive Interview Questions asked at other Companies

Q1. How would you convince a customer who claims the product isn't good due to the online reviews?
View answer (3)

BDM Sales Interview Questions & Answers

user image Anonymous

posted on 5 Jul 2022

Round 1 - One-on-one 

(1 Question)

  • Q1. Struggles faced in your life

Interview Preparation Tips

Interview preparation tips for other job seekers - Rude attitude, doesn’t get satisfied with your answer.

BDM Sales Interview Questions asked at other Companies

Q1. How will you deal an owner who is asking less commission every month and debay to pay commission.
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. You are given a large array of n bits. Each bit is initially 0. You perform several operations of the type
  • Ans. 

    Solution to performing operations on a large array of bits.

    • Use bitwise operators to perform operations on individual bits

    • Use a loop to iterate through the array and perform the operations

    • Ensure that the array is large enough to accommodate all the bits

    • Consider using a data structure like a bitset for efficient bit manipulation

  • Answered by AI
  • Q2. Questions on Network programming
  • Q3. Questions on array,heap and binary trees
  • Q4. Round was both HR+Technical

Interview Preparation Tips

Round: Test
Experience: Questions can be found here:

-----/
Tips: Try to solve all 3.
Duration: 60 minutes
Total Questions: 3

Round: Technical Interview
Experience: First discuss the solution and then paper-code it.
Tips: Try to code without mistakes.

Round: Technical Interview
Experience: First, I was asked to discuss my project based on networking and then I was given a question on network programming
Tips: Pay attention on discussion

Round: Technical Interview
Experience: Provide the optimised solution and code it without any mistakes.

Round: HR Interview
Experience: Why linkedin?
What changes will you make in 6 months?
Internship project: Discussion and lot of common questions on that.
Basic Questions of C++ and Java

Skills: Data Structure, Core courses understanding, Algorithms
College Name: IIT GUWHATI

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

In first round they asked me 2 coding questions where he asked me to code as close as possible to the actual one.

  • Q1. 

    Ninja and Sorted Array Merging Problem

    Ninja is tasked with merging two given sorted integer arrays ARR1 and ARR2 of sizes 'M' and 'N', respectively, such that the merged result is a single sorted array w...

  • Ans. 

    Merge two sorted arrays into one sorted array in place.

    • Use two pointers to compare elements from both arrays and place them in the correct position in ARR1.

    • Start from the end of ARR1 and compare elements from both arrays, placing the larger element at the end of ARR1.

    • Continue this process until all elements from ARR2 are merged into ARR1.

  • Answered by AI
  • Q2. 

    Word Distance Calculation

    Given a document represented as an array/list ARR of words with length N, find the smallest distance between two given words for multiple queries. The distance is defined as the ...

  • Ans. 

    Find the smallest distance between two words in a document for multiple queries.

    • Iterate through the document array to find the indices of the two words in each query.

    • Calculate the absolute difference between the indices to get the distance.

    • If a word from the query is not present in the document, return the length of the document array.

    • Repeat the process for each query and output the smallest distance for each.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Then in the second round they asked a little about tree and told me to code 2 codes.

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. 

    The problem requires implementing a function to return the level order traversal of a binary tree.

    • Implement a function that takes the root of the binary tree as input and returns the level order traversal of the tree.

    • Use a queue data structure to perform level order traversal.

    • Process each level of the tree one by one, starting from the root node.

    • Print the node values at each level in the order they appear from left to ...

  • Answered by AI
  • Q2. 

    Combination Sum Problem Statement

    Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be c...

  • Ans. 

    Find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

    • Use backtracking to generate all possible combinations.

    • Sort the array to ensure elements are in non-decreasing order.

    • Track the current combination and sum while backtracking.

    • Terminate recursion when the sum equals the target sum.

    • Avoid duplicates by skipping elements that have been used in previou

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALinkedIn interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a online test round where I was given 3 DSA questions to be solved in 60 minutes.

  • Q1. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves finding the number of distinct ways to climb to the Nth stair by taking one or two steps at a time.

    • Use dynamic programming to solve the problem efficiently.

    • The number of ways to reach the Nth stair is the sum of the number of ways to reach the (N-1)th stair and the (N-2)th stair.

    • Handle base cases for N=0 and N=1 separately.

    • Consider using modulo 10^9+7 to avoid overflow in calculations.

  • Answered by AI
  • Q2. 

    Optimal Strategy for a Coin Game

    You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line.

    Here are the rules of the game:

    1. Each coin has a value associated wit...
  • Ans. 

    The problem involves finding the optimal strategy to accumulate the maximum amount in a coin game with specific rules.

    • Start by understanding the rules of the game and how players take turns to choose coins.

    • Consider the scenario where both players play optimally to maximize winnings.

    • Iterate through different strategies to determine the best approach for selecting coins.

    • Keep track of the total winnings accumulated by eac...

  • Answered by AI
  • Q3. 

    Generate All Parentheses Combinations

    Given an integer N, your task is to create all possible valid parentheses configurations that are well-formed using N pairs. A sequence of parentheses is considered w...

  • Ans. 

    Generate all possible valid parentheses configurations using N pairs.

    • Use backtracking to generate all possible combinations of parentheses.

    • Keep track of the number of open and close parentheses used.

    • Add '(' if there are remaining open parentheses, and add ')' if there are remaining close parentheses.

    • Base case: when the length of the generated string is 2*N, add it to the result array.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALinkedIn interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Preparation Tips

Round: CODING ROUND
Experience: In the coding round there were 3 questions to be solved in about 3 hrs.

Round: HR Interview
Experience: Expect the usual crazy questions like "Why LinkedIn?" and if you are already placed, be ready to give a proper justification for "Why LinkedIn and not XYZ?" so on. Be cool, you need not be accurate. Be well prepared with your resume and expect questions from them.
Tips: For the interview, just be confident and have a good resume ready with you.

Round: Other Interview
Experience: Coding Interview:
Simple coding questions. Make sure you first explain the logic to them and then you may be asked to write the code for it on the board using any language of your choice. Syntax is not a big deal, but don't make any logical errors. They are very friendly and may suggest certain solutions of their own. Make sure you can grasp them quickly. Find faults in your own code before they find it. Always try to give the best optimal solution. In case you are unable to do so then suggest possible improvements.

Round: Other Interview
Experience: Design Interview:
Some people may find this round a bit uneasy. But this round tests how good you are at designing solutions to problems. Most of the candidates were asked to build an online gaming system. And then they keep adding extra constraints and ideas and see if you can integrate them to your design. Database knowledge may be tested. They may also ask questions pertaining to you projects listed in your resume.

General Tips: An updated LinkedIn account with decent connections. ;)
Skill Tips: Be very strong with your coding ability. Whenever you code, do follow some standard procedures and make the code look simple and structured. Whenever you solve a coding question make sure you answer it completely for all the test cases. Partial results will only indicate that there is something wrong with the logic. Try to solve a complete question rather than multiple questions with partial results.
College Name: NIT SURATHKAL

Able Jobs Interview FAQs

How many rounds are there in Able Jobs interview?
Able Jobs interview process usually has 2-3 rounds. The most common rounds in the Able Jobs interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for Able Jobs 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 Able Jobs. The most common topics and skills that interviewers at Able Jobs expect are Sales, Corporate Sales, B2B Sales, Business Development and Category Management.
What are the top questions asked in Able Jobs interview?

Some of the top questions asked at the Able Jobs interview -

  1. Mostly consisted of behavioral and cultural fir aspe...read more
  2. Questions asked on technical knowledge of excel, sql, pyth...read more
  3. Behavioral questions as...read more

Tell us how to improve this page.

Able Jobs Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Randstad Interview Questions
3.8
 • 260 Interviews
Team Lease Interview Questions
3.9
 • 201 Interviews
ABC Consultants Interview Questions
3.9
 • 186 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Indeed Interview Questions
4.1
 • 28 Interviews
Foundit Interview Questions
3.5
 • 26 Interviews
Glassdoor Interview Questions
3.5
 • 8 Interviews
View all

Able Jobs Reviews and Ratings

based on 39 reviews

3.3/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

3.3

Salary

2.9

Job security

3.3

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 39 Reviews and Ratings
Business Development Associate
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Talent Acquisition Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

PRE Sales Associate
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Able Jobs with

Foundit

3.5
Compare

Timesjobs.com

1.6
Compare

Indeed

4.0
Compare

Freshersworld.com

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