Upload Button Icon Add office photos
Engaged Employer

i

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

Wigzo Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Wigzo Technologies Enterprise Business Manager Interview Questions and Answers

Updated 23 Jun 2023

Wigzo Technologies Enterprise Business Manager Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Jun 2022. There were 3 interview rounds.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is the facilities of this company?
  • Ans. This job is good and online jobs is very useful of the students .this job is interested . very good work in this company be because they company
  • Answered by Poonam Yadav

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was the technical but they have majorly stress test.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be humble and confident. All the best! ALL the best
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ita huge organization n team size also big so ita completely varry department and manager wise who is conducting interview.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Round: Test
Experience: I was really frustrated because of the rejection from previous companies and in the same time deeply determined to convert this one as this was the last company offering the profile of Business Analyst. I can say this based on my experience that converting a company is solely a matter of your preparation and self-confidence but a tad bit of luck is also a necessity.
Tips: I have been particularly lucky and so have been all the serious CAT aspirants in the online tests. It is not that you need to enroll in TIME with the word go, but rather analyzing your calculation speed, your communication and interpretation skills can do you wonders.
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: Obviously the topic was on Indo-Sino relations, which I was quite aware of. As this a topic on foreign policy, very few people were actually aware of this topic, so I had an obvious advantage. This is the most trite advice but still I will say this "Read, Read,Read".
Tips: There are always some people who are well informed of the given topic and some who are not and it is always helpful to be in the first group in GDs. I like to be up to date on current affairs and at the same time reading novels from the likes of Shashi Tharoor and my personal favorite Khaled Hosseini prepared me for group discussions. It is always helpful to proceed by looking @ the problem from different perspectives like legal, social, academic and technical or else if you are particularly unlucky you might face an abstract topic, where you might need to use your imagination, like one my friend faced "Yellow shoes with pink laces". Even now I cannot aptly describe this topic.

Skills: Communication Skills, Calculations, Verbal, Knowledge on current affairs
College Name: NIT BHOPAL
Motivation: My only motivation was the post the company was offering. As it will be helpful for future plans of working in an Investment Bank or pursuing an MBA.
Funny Moments: In the Interview round, they asked me why do you want join this company. In reply I started with the word 'Firstly' and said because of its profile and did not not think of the second reason and they asked this very thing. I took my moment and realized honesty is best possible way now and replied that you are last non-core company visiting this campus and if you guys reject me I might leave this campus unplaced (because of my weak technical background). On hearing this they started laughing and at that very moment I knew I might not after all.

Interview Questionnaire 

2 Questions

  • Q1. Little discussion on my project
  • Q2. Given a chessboard and the initial position of horse. If “n” is the number of steps the horse can make then what is probability that it goes out of board ?
  • Ans. 

    Probability of a horse going out of a chessboard in 'n' steps.

    • The total number of possible moves for a horse is 8.

    • The probability of going out of the board depends on the position of the horse.

    • For example, if the horse is at a corner, the probability of going out of the board is higher.

    • The probability can be calculated using combinatorics and geometry.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: They did not expect any code in this round. An algo or pseudo code is fine.



1) You are given 2 vessels with capacity M liters and N liters capacity and infinite supply of water. You need to find the minimum number of steps required to get P liters. Any of the below action is considered a step



     a) Filling vessel with water



     b) Emptying vessel



     c) Pouring water from one vessel to another vessel.



2) Given n sets each containing m integers. You need to create MinDiff set by picking exactly 1 element from each set. The difference between the maximum and minimum elements in the MinDiff set should be minimum.



eg: for the sets {30, 20, 10, 40},{ 22, 33, 44, 99},{ 16, 17, 18, 19} min diff set is {19, 20, 22}. Max and min elements in MinDiff set are 22 and 19 and their difference is 3.

Round: Technical Interview
Experience: 1) you will be given the binary representation of the numbers in the form of 2D array.eg: r1- 00001

r2- 00100

r3- 01010

r4- 00110

r5- 00111 This means the elements are 1, 4, 10 , 6 and 7.

A number “n” is given. Let us say that n can be formed by doing bitwise OR operation on rows of given matrix. What is the minimum number of rows that needs to be deleted from the matrix so that “n” can never be formed by doing the OR of the rows.

If n is 14(01110) then it can be formed by doing r2|r3 or r3|r4. You can prevent n formation either by deleting {r2,r4} or {r3}. But {r3} has least number of elements so it is the required set.2) Find the average of mid 50% of elements in the running stream of integersI have not cleared round-II so no further questions.

College Name: IIT GANDHINAGAR

Interview Questionnaire 

3 Questions

  • Q1. Algorithms on arrays and strings (coding)
  • Ans. 

    Algorithms for manipulating arrays and strings in coding

    • Use sorting algorithms like quicksort and mergesort for arrays

    • Use string manipulation functions like substring and replace for strings

    • Use dynamic programming for optimizing solutions to array and string problems

  • Answered by AI
  • Q2. Distributed Database Design
  • Q3. Large scale Ad Server Design
  • Ans. 

    Designing a large scale Ad Server

    • Use distributed systems for scalability

    • Implement caching for faster ad delivery

    • Ensure high availability and fault tolerance

    • Use real-time bidding for efficient ad placement

    • Implement fraud detection mechanisms

    • Ensure compliance with privacy regulations

  • Answered by AI

Interview Preparation Tips

Round: Interview
Experience: They tested on thought-process during design problems. What problems are with the current solution I suggested and how to improve it...
Tips: Hints from interviewer are very helpful
Keep talking while you are thinking

Skills: Algorithms, Thinking Skills, Coding
College Name: IIT KHARAGPUR

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Find Maximum sub sequence sum in an array ?
  • Ans. 

    Maximum sub sequence sum in an array

    • Use Kadane's algorithm

    • Initialize max_so_far and max_ending_here to 0

    • Iterate through the array and update max_ending_here and max_so_far

    • Return max_so_far

  • Answered by AI
  • Q2. What do you understand by the endianness of the system ? How do you find out the the type of endianness ?
  • Ans. 

    Endianness refers to the byte order of a system. It determines how multi-byte data types are stored in memory.

    • Little-endian systems store the least significant byte first, while big-endian systems store the most significant byte first.

    • Endianness can affect the way data is transmitted between systems.

    • To determine the endianness of a system, you can use the byte order mark (BOM) or write a test program that checks the by...

  • Answered by AI
  • Q3. Sort an array which consists of 0's and 1's only
  • Ans. 

    Sort an array of 0's and 1's only.

    • Use two pointers, one at the beginning and one at the end of the array.

    • Swap 0's from the beginning with 1's from the end until the pointers meet.

    • Alternatively, use a counting sort algorithm to count the number of 0's and 1's and then reconstruct the array.

  • Answered by AI
  • Q4. A question on applications of minimum spanning tree, apply prim's or kruskal's algorithm
  • Q5. What do you understand by Heaps, max and min heaps ?
  • Ans. 

    Heaps are data structures used to efficiently find the maximum or minimum element in a collection.

    • Max heap: parent nodes are always greater than or equal to child nodes

    • Min heap: parent nodes are always smaller than or equal to child nodes

    • Heaps are commonly used in priority queues and sorting algorithms

    • Heap operations include insert, delete, and extract max/min

    • Example: An array [3, 8, 2, 5, 1, 4, 6] can be represented a

  • Answered by AI
  • Q6. What do you understand by hashing ? questions on application of hashing
  • Q7. Find 3 nos a,b and c in an array where a+b = c
  • Ans. 

    Find 3 numbers in an array where a+b=c.

    • Loop through the array and check for all possible combinations of a and b.

    • Use a hash table to store the values of a and b, and check if c is present in the hash table.

    • Sort the array and use two pointers to find a and b, and then check if their sum equals c.

  • Answered by AI
  • Q8. Some puzzles, as the other interviewee said, but not asked to me
  • Q9. Questions on Dynamic programming

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

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

Wigzo Technologies Interview FAQs

How many rounds are there in Wigzo Technologies Enterprise Business Manager interview?
Wigzo Technologies interview process usually has 3 rounds. The most common rounds in the Wigzo Technologies interview process are Resume Shortlist, HR and One-on-one Round.
What are the top questions asked in Wigzo Technologies Enterprise Business Manager interview?

Some of the top questions asked at the Wigzo Technologies Enterprise Business Manager interview -

  1. How you do closure and what the difference appro...read more
  2. How do Generate l...read more
  3. Asked to give demo, details company profiling, Target prospe...read more

Recently Viewed

INTERVIEWS

National Industries

No Interviews

INTERVIEWS

Wigzo Technologies

No Interviews

INTERVIEWS

Sunfox Technologies

No Interviews

INTERVIEWS

Sunfox Technologies

No Interviews

INTERVIEWS

Wigzo Technologies

No Interviews

SALARIES

Wigzo Technologies

SALARIES

Wigzo Technologies

INTERVIEWS

Sunfox Technologies

No Interviews

SALARIES

Wigzo Technologies

INTERVIEWS

4 Basecare Genomics

No Interviews

Tell us how to improve this page.

Wigzo Technologies Enterprise Business Manager Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 508 Interviews
Freshworks Interview Questions
3.5
 • 158 Interviews
AmbitionBox Interview Questions
4.9
 • 151 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
MoEngage Interview Questions
4.0
 • 25 Interviews
HyperVerge Interview Questions
4.3
 • 25 Interviews
Treebo Hotels Interview Questions
3.2
 • 22 Interviews
View all
Assistant Manager
6 salaries
unlock blur

₹7.1 L/yr - ₹9.5 L/yr

Software Engineer
5 salaries
unlock blur

₹8.5 L/yr - ₹11 L/yr

Customer Success Manager
5 salaries
unlock blur

₹4.5 L/yr - ₹8.6 L/yr

Senior Customer Success Associate
4 salaries
unlock blur

₹5.6 L/yr - ₹7.2 L/yr

Customer Success Associate
4 salaries
unlock blur

₹3.1 L/yr - ₹5 L/yr

Explore more salaries
Compare Wigzo Technologies with

MoEngage

4.0
Compare

CleverTap

3.6
Compare

Netcore Cloud Private Limited

4.2
Compare

WebEngage

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