Upload Button Icon Add office photos
Engaged Employer

i

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

BIZONGO Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

BIZONGO Manager Taxation Interview Questions and Answers

Updated 18 Nov 2023

BIZONGO Manager Taxation Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Approached by Company and was interviewed before 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical discussion on tax concepts
Round 3 - Technical 

(1 Question)

  • Q1. Technical discussion on tax
Round 4 - Technical 

(1 Question)

  • Q1. There was a 3rd round scheduled but they cancelled at last moment

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't trust as they might change their mind after metting you invest a lot of time for their interview

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before Feb 2022. There were 3 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Given a string, find the longest length palindromic substring in the given string.
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Use dynamic programming to solve the problem efficiently.

    • Start with the base cases of single characters and two characters.

    • For longer substrings, check if the first and last characters match and if the substring between them is also a palindrome.

    • Keep track of the longest palindrome seen so far.

    • Time complexity: O(n^2), space complexity: O(n^2).

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Mention the most challenging technical problem you had to solve.
  • Ans. 

    Developing a real-time data processing system for a high-traffic website.

    • Designing a scalable architecture to handle the high volume of incoming data.

    • Optimizing the data processing algorithms to minimize latency.

    • Ensuring data consistency and accuracy in a distributed system.

    • Implementing fault-tolerant mechanisms to handle system failures.

    • Testing and debugging the system under various load conditions.

  • Answered by AI
  • Q2. Some minor low level entity design.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA, some design patterns and low level design properly

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Prime number star pattern Js basics form validations

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all basics of JS and node

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic to intermediate questions on data structures and django.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process easy.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about you
  • Ans. 

    I am a passionate software developer with a strong background in programming languages such as Java, Python, and JavaScript.

    • Experienced in developing web applications using frameworks like Spring Boot and React

    • Proficient in database management with SQL and NoSQL databases

    • Skilled in problem-solving and debugging code efficiently

  • Answered by AI
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 before Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA ROUND - DP problem
  • Ans. 

    Dynamic Programming problem involving finding the maximum sum of non-adjacent elements in an array.

    • Use dynamic programming to keep track of the maximum sum at each index.

    • At each index, the maximum sum is either the current element plus the sum two indices back, or the sum at the previous index.

    • Example: For array [2, 4, 6, 2, 5], the maximum sum of non-adjacent elements is 13 (2 + 6 + 5).

  • Answered by AI
  • Q2. DSA ROUND - STRING PROBLEM
  • Ans. 

    Find the longest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with other strings

    • Return the prefix when characters don't match or reach end of any string

    • Example: Input - ['flower', 'flow', 'flight'], Output - 'fl'

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. PROJECT RELATED QUESTIONS
  • Q2. DESIGN LRU CACHE
  • Ans. 

    LRU cache is a data structure that stores the most recently used items.

    • Use a doubly linked list to keep track of the order of items based on their usage.

    • Use a hashmap to quickly access items in the cache.

    • When a new item is accessed, move it to the front of the linked list.

    • If the cache is full, remove the least recently used item from the end of the linked list.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ecom Express Software Developer interview:
  • Dynamic programming
  • Priority queue
Interview preparation tips for other job seekers - Communicate yourself , whether you are able to think about the problem or not .

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is oops concepts
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions together in a single unit

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details from the user

    • Examples: class, object, inheritance, encapsulation, polymorphism, abstraction

  • Answered by AI
  • Q2. What is spring boot
  • Ans. 

    Spring Boot is a framework for building standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating and deploying Spring-based applications.

    • It provides a set of pre-configured dependencies and an embedded web server.

    • It also offers features like auto-configuration, which reduces the need for manual configuration.

    • Spring Boot is widely used for building microservices and RESTful A...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-

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

Round 1 - Coding Test 

Implement your own state management in React and integrate it into a React application.

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

BIZONGO Interview FAQs

How many rounds are there in BIZONGO Manager Taxation interview?
BIZONGO interview process usually has 4 rounds. The most common rounds in the BIZONGO interview process are Technical and Resume Shortlist.
What are the top questions asked in BIZONGO Manager Taxation interview?

Some of the top questions asked at the BIZONGO Manager Taxation interview -

  1. There was a 3rd round scheduled but they cancelled at last mom...read more
  2. Technical discussion on tax conce...read more
  3. Technical discussion on ...read more

Recently Viewed

INTERVIEWS

Intuit

No Interviews

INTERVIEWS

PharmEasy

No Interviews

INTERVIEWS

Confluent

No Interviews

INTERVIEWS

Arms

No Interviews

DESIGNATION

INTERVIEWS

BIZONGO

No Interviews

INTERVIEWS

Wynk

No Interviews

INTERVIEWS

Arms

No Interviews

INTERVIEWS

Wynk

No Interviews

INTERVIEWS

Arms

No Interviews

Tell us how to improve this page.

BIZONGO Manager Taxation Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 458 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Ecom Express Interview Questions
3.8
 • 198 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
XpressBees Interview Questions
3.6
 • 159 Interviews
Blue Dart Express Interview Questions
4.0
 • 102 Interviews
GATI-KWE Interview Questions
3.9
 • 87 Interviews
Zeta Interview Questions
3.3
 • 69 Interviews
embedUR Systems Interview Questions
3.3
 • 48 Interviews
View all
Assistant Manager
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Specialist
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare BIZONGO with

Udaan

3.9
Compare

Delhivery

3.9
Compare

Shadowfax Technologies

3.6
Compare

BlackBuck

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