Upload Button Icon Add office photos

Adda 247

Compare button icon Compare button icon Compare

Filter interviews by

Adda 247 Business Operations Executive Interview Questions and Answers

Updated 4 Apr 2023

Adda 247 Business Operations Executive Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Oct 2022. 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 - One-on-one 

(4 Questions)

  • Q1. Can you handle YouTube Operations?
  • Q2. Can you work on canva?
  • Ans. 

    Yes, I am proficient in using Canva for designing and creating visual content.

    • I have been using Canva for over 2 years now and have created various designs for social media, marketing collaterals, and presentations.

    • I am well-versed in using Canva's features such as templates, fonts, colors, and graphics to create visually appealing designs.

    • I have also collaborated with team members on Canva to create designs for variou...

  • Answered by AI
  • Q3. Are you available every time for urgent tasks?
  • Q4. Can you handle work pressure calmly?
  • Ans. 

    Yes, I have experience handling work pressure calmly.

    • I prioritize tasks and create a plan to manage my workload efficiently.

    • I take breaks when needed to avoid burnout and maintain focus.

    • I communicate with my team and delegate tasks when necessary.

    • I remain positive and focused on finding solutions rather than dwelling on problems.

    • For example, during a tight deadline, I created a task list and delegated tasks to team mem...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Adda 247 Business Operations Executive interview:
  • Excel
  • YouTube Operation
Interview preparation tips for other job seekers - Very informal way of interview, you don't need to be worried about any protocols or professionalo behaviour. Each and every manager or interview taker is very chill and will not ask you for lot of things.
Great company to start your corporate life with.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2018. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Self introduction and about the profile at which u worked earlier
  • Q2. Profile of job and company

Interview Preparation Tips

General Tips: Just keep it simple, I know competition is cut throat but your understandable presence and calm nature could lead to win a job for you. Answer what u they asked to u and try to make them feel your presence
Skills: Communication, Problem Solving
Duration: <1 week
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Data structure and algorithm, easy and medium questions

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

Took English test , listening writing grammar

Round 2 - Group Discussion 

Conducted group discussion on randomly topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidance make u perfect 😃
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Path Queries Problem Statement

    Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...

  • Ans. 

    Implement a function to find the shortest distance between two vertices in a weighted, undirected graph.

    • Use Dijkstra's algorithm to find the shortest path between the given vertices.

    • Create a graph data structure to represent the weighted, undirected graph.

    • Handle cases where no path exists between the given vertices by returning -1.

    • Optimize the algorithm to handle multiple queries efficiently.

    • Consider edge cases such as...

  • Answered by AI
  • Q2. 

    Merge Sort Algorithm Problem Statement

    Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.

    Explanation:

    Merge Sort is a divide-an...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively

    • Sort the two halves separately

    • Merge the sorted halves to produce a fully sorted array

    • Time complexity of Merge Sort is O(n log n)

    • Example: Input - [5, 2, 9, 1, 5], Output - [1, 2, 5, 5, 9]

  • Answered by AI
  • Q3. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. 

    Given an N * N maze with binary values, find and print all possible paths for a rat to reach the destination cell.

    • Use backtracking to explore all possible paths from the starting cell to the destination cell.

    • At each cell, check if it is a valid move (within bounds and not blocked), then recursively explore all four directions.

    • Keep track of the path taken so far and mark the cells accordingly.

    • Once the destination cell i...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude test followed by 2 coding questions. Test was very easy.

Round 2 - Coding Test 

This was pen and paper coding test, where we were given 20 questions and we had to write code on paper. Total time was 2-3 hr.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Interview, 2 coding questions asked, 1 math question and Basics like OOP, Language specific, etc.

Interview Preparation Tips

Topics to prepare for Zeus Learning Software Developer interview:
  • OOP
  • Programming
  • Maths
Interview preparation tips for other job seekers - You can clear interview if you know basics. Tell them about tech stack which you know. Also there is no constraint on any specific language, you can use any. So be master of 1 language.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I have given the online aptitude test of zeus learning (on campus) , which was the very first round and the test was divided into two parts, first part was mostly coding-decoding questions (aptitude) which was easy according to me but it was tricky too and second part included 2 dsa question and both the questions were of easy level.

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 2023. 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 - Coding Test 

1st round
25 mcq apptitude + 10 DSA question

Round 3 - Technical 

(1 Question)

  • Q1. Project review , opps, sql

Adda 247 Interview FAQs

How many rounds are there in Adda 247 Business Operations Executive interview?
Adda 247 interview process usually has 2 rounds. The most common rounds in the Adda 247 interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Adda 247 Business Operations Executive interview?

Some of the top questions asked at the Adda 247 Business Operations Executive interview -

  1. Can you handle work pressure calm...read more
  2. Can you work on can...read more

Tell us how to improve this page.

Adda 247 Business Operations Executive Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Lido Learning Interview Questions
2.3
 • 55 Interviews
Coding Ninjas Interview Questions
3.7
 • 50 Interviews
Z X Learning Interview Questions
4.4
 • 44 Interviews
Zeus Learning Interview Questions
3.3
 • 35 Interviews
TALENTEDGE Interview Questions
3.3
 • 21 Interviews
Schoolnet India Interview Questions
4.0
 • 17 Interviews
MASAI School Interview Questions
4.1
 • 16 Interviews
View all
Adda 247 Business Operations Executive Salary
based on 4 salaries
₹3.8 L/yr - ₹4.6 L/yr
18% more than the average Business Operations Executive Salary in India
View more details
Team Lead
42 salaries
unlock blur

₹3.5 L/yr - ₹6.4 L/yr

Associate Manager
33 salaries
unlock blur

₹4.1 L/yr - ₹8.8 L/yr

Content Writer
29 salaries
unlock blur

₹1 L/yr - ₹4.4 L/yr

Tele Sales Executive
26 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Graphic Designer
20 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Adda 247 with

Unacademy

3.0
Compare

Z X Learning

4.4
Compare

Schoolnet India

4.0
Compare

Lido Learning

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