Upload Button Icon Add office photos

Wheebox

Compare button icon Compare button icon Compare

Filter interviews by

Wheebox KAM Interview Questions and Answers

Updated 15 Feb 2024

Wheebox KAM Interview Experiences

1 interview found

KAM Interview Questions & Answers

user image Abhikalp Sharma

posted on 15 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a psychometric test.

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about sales and business development and vision for next 2 years

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Wheebox?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Related to resume
  • Q2. What is the regularization technique?
  • Ans. 

    Regularization techniques prevent overfitting in models by adding a penalty for complexity.

    • L1 Regularization (Lasso): Adds absolute value of coefficients as penalty. Example: Feature selection in linear regression.

    • L2 Regularization (Ridge): Adds squared value of coefficients as penalty. Example: Reduces model complexity in regression.

    • Elastic Net: Combines L1 and L2 penalties. Example: Useful when there are multiple cor...

  • Answered by AI

KAM Interview Questions Asked at Other Companies

asked in Kittens
Q1. What kind of work did you handle during your experience?
Q2. Please provide documentation of your previous work experience.
Q3. How do you connect with architects and green consultants?
Q4. What will you do if the affiliate bank does not provide any leads ... read more
Q5. Comfortable with Sales work Comfortable going to field Aware of l ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

3 coding questions any programming language

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Interview based on your programming skills
  • Q2. 1.Find the possible permutation of the given string 2. Remove 3 from the given input (Number) and input should be taken from the user 3. Check whether the given string is Anagram without using map DATA s...
  • Ans. 

    Answering questions related to string permutations, removing numbers, and checking for anagrams without using map data structure.

    • To find permutations of a string, use recursion to swap characters at each position.

    • To remove a specific character (e.g. '3') from a string, iterate through the string and build a new string without the character.

    • To check for anagrams without using a map data structure, sort both strings and ...

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

(1 Question)

  • Q1. Introduce yourself and are you willing to relocate And salary discussion. That's it

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Tell us about yourself
  • Ans. 

    I am a dedicated professional with a passion for problem-solving and a strong background in project management and teamwork.

    • Background: I graduated with a degree in Business Administration, where I developed strong analytical skills.

    • Experience: I have worked in project management for over three years, successfully leading teams to deliver projects on time.

    • Skills: Proficient in tools like Microsoft Project and Asana, wh...

  • Answered by AI
  • Q2. Why would you be a right fit for this role
  • Ans. 

    I possess the skills, experience, and passion that align perfectly with the requirements of this Associate role.

    • Strong analytical skills: In my previous role, I successfully analyzed market trends to improve product positioning.

    • Team collaboration: I have worked in cross-functional teams, enhancing project outcomes through effective communication.

    • Adaptability: I quickly learned new software tools in my last job, which i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on what you know and explain well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2023.

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 

Basic question of indiabix topics and 10 code questions

Round 3 - Technical 

(4 Questions)

  • Q1. Resume based questions,coding questions,core subject questions
  • Q2. What is indexing in dbms?
  • Q3. Secondlargest element
  • Ans. 

    Find the second largest element in an array of integers efficiently.

    • Iterate through the array while keeping track of the largest and second largest elements.

    • Initialize two variables: largest and secondLargest to negative infinity.

    • For each element, update largest if the current element is greater than largest.

    • If the current element is less than largest but greater than secondLargest, update secondLargest.

    • Example: For ar...

  • Answered by AI
  • Q4. Pascal triangle

I applied via Campus Placement and was interviewed in Sep 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 tips
Round 2 - Aptitude Test 

25 questions of quants and logical and 10 questions of coding, some were debugging some were coding

Round 3 - Technical 

(4 Questions)

  • Q1. Discussion about my resume projects
  • Q2. Return addition and subtraction of two numbers from the same function
  • Ans. 

    A function that returns the addition and subtraction of two numbers.

    • Create a function that takes two numbers as input parameters.

    • Inside the function, calculate the sum of the two numbers and store it in a variable.

    • Calculate the difference of the two numbers and store it in another variable.

    • Return an array of strings containing the sum and difference.

  • Answered by AI
  • Q3. Print leaf nodes of binary tree
  • Ans. 

    Print leaf nodes of binary tree

    • Traverse the tree recursively

    • If node is null, return

    • If node is leaf node, print it

    • Else, recursively traverse left and right subtrees

  • Answered by AI
  • Q4. What is the protocol used for communication over web pages
  • Ans. 

    HTTP is the protocol used for communication over web pages.

    • HTTP stands for Hypertext Transfer Protocol

    • It is the foundation of data communication on the World Wide Web

    • HTTP uses a client-server model where the web browser acts as the client and sends requests to the web server

    • The web server responds with the requested data in the form of HTML, images, videos, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at coding for the aptitude test.
The interview was fairly simple they just want to know how good you are at thinking about solutions of a problem.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Coding Test 

My name is amar reverse the string without using inbuilt method

Round 3 - Technical 

(1 Question)

  • Q1. What is nodejs and what is promise. What is closures
  • Ans. 

    Node.js is a runtime environment for executing JavaScript code outside of a web browser. Promises are objects representing the eventual completion or failure of an asynchronous operation. Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Node.js is a runtime environment that allows you to run JavaScript on the server-side.

    • Promises are used in asynchronous progra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My suggestion is to don't join this company if they will say we have I agreement for 2 years they don't professional ethics this company won't follow the rules when they don't have work to do they will remove the employees without a reason please be careful and think twice before join this company this is my request
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Walk-in and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

So prepare good amout of aptitude , and try to solve at least 15 Questions

Round 2 - Coding Test 

It was an Online coding test 2 questions were there. difficulty (Easy and Medium).

Round 3 - Coding Test 

The third round was again an coding round but it was a pen and paper test , it was in offline mode they will tell you the center after you will complete 2nd round.
In pen and paper test there are 10 coding questions and from topics array , string , recursion , Bit manipulation , BST , Linked List. so you have to solve at least 6-7 questions.

Round 4 - Technical 

(3 Questions)

  • Q1. Questions on HTML, CSS
  • Q2. Permutations in string (Can you Backtracking approach). Always try to explain your approach
  • Ans. 

    Generate all permutations of a string using a backtracking approach.

    • Backtracking involves exploring all possible configurations and abandoning those that don't meet criteria.

    • Start with an empty string and build permutations by adding one character at a time.

    • Use a boolean array to track which characters are already included in the current permutation.

    • Example: For the string 'abc', the permutations are 'abc', 'acb', 'bac...

  • Answered by AI
  • Q3. Explain your Project?
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used HTML, CSS, and JavaScript for front-end development.

    • Implemented backend functionality using Node.js and MongoDB for database management.

    • Incorporated user authentication and authorization features for secure access.

    • Integrated payment gateway for online transactions.

    • Utilized responsive design for mobile compatibility.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to work experience and skills on Resume
  • Q2. Formula to find midpoint and slope of a line
  • Ans. 

    Midpoint and slope formulas help determine key characteristics of a line in coordinate geometry.

    • Midpoint formula: M = ((x1 + x2)/2, (y1 + y2)/2). Example: M = ((1 + 3)/2, (2 + 4)/2) = (2, 3).

    • Slope formula: m = (y2 - y1) / (x2 - x1). Example: m = (4 - 2) / (3 - 1) = 1.

    • Midpoint gives the center point between two coordinates.

    • Slope indicates the steepness and direction of the line.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well and also projects you worked on. They do not hire for specific tech stack. You will get any technology based on project requirements. So prepare programming concepts and DSA well

I applied via Referral and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is latest technology you have worked on
  • Ans. 

    I have worked on React Native for mobile app development.

    • Developed a mobile app for a client using React Native

    • Used Redux for state management

    • Integrated with Firebase for real-time database and authentication

    • Implemented push notifications using Firebase Cloud Messaging

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to what you know and answer with good confidence

Wheebox Interview FAQs

How many rounds are there in Wheebox KAM interview?
Wheebox interview process usually has 2 rounds. The most common rounds in the Wheebox interview process are Aptitude Test and One-on-one Round.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

AccioJob Interview Questions
3.7
 • 51 Interviews
Z X Learning Interview Questions
4.4
 • 44 Interviews
Prepca Eduserv Interview Questions
4.0
 • 44 Interviews
Adda 247 Interview Questions
3.1
 • 37 Interviews
Zeus Learning Interview Questions
3.1
 • 36 Interviews
AI CERTs Interview Questions
4.5
 • 22 Interviews
View all
Java Developer
18 salaries
unlock blur

₹1.9 L/yr - ₹5.4 L/yr

Senior Enterprise Sales Manager
7 salaries
unlock blur

₹9.4 L/yr - ₹15 L/yr

Project Manager
7 salaries
unlock blur

₹5.1 L/yr - ₹9.4 L/yr

Senior Manager
7 salaries
unlock blur

₹9 L/yr - ₹17.2 L/yr

Sales Manager
7 salaries
unlock blur

₹13 L/yr - ₹16.6 L/yr

Explore more salaries
Compare Wheebox with

Z X Learning

4.4
Compare

Adda 247

3.1
Compare

Trivium Education Services

3.8
Compare

MeritNation

3.3
Compare
write
Share an Interview