Upload Button Icon Add office photos

Filter interviews by

Wheebox Interview Questions and Answers

Updated 8 Oct 2024

Wheebox Interview Experiences

Popular Designations

6 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Where are you located
  • Ans. 

    I am located in the city of Boston, Massachusetts.

    • I am currently residing in Boston, Massachusetts.

    • My location is in the northeastern United States.

    • I am easily accessible by public transportation.

    • Boston is known for its rich history and cultural attractions.

  • Answered by AI
  • Q2. Tell us about your expierence
  • Ans. 

    I have 5 years of experience as a Quality Inspector in the manufacturing industry.

    • Performed visual inspections on products to ensure quality standards were met

    • Conducted measurements and tests using various tools and equipment

    • Documented inspection results and communicated any issues to the production team

    • Collaborated with engineers to identify and resolve quality issues

    • Trained new inspectors on quality control procedure

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Never give interview at Wheebox firstly they tell you to wait and after waiting for more than 3 hours they say that you look exhausted how long you have been waiting. The worst interview process encountered till now they say you turn is next and then send 3 other candidates before you. Please travelling from a distance don't go there to waste your time.

Quality Inspector Interview Questions asked at other Companies

Q1. 1-What is the least count of vernier caliper and micro meter. 2- Told five name of measuring instruments which you are used in the college life. 3- what is the difference between champer and fllit command in Auto CAD. 4- How many types of B... read more
View answer (16)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Previous work experience
  • Q2. Revenue and account management

Interview Preparation Tips

Interview preparation tips for other job seekers - They conduct standardised assessments and one two round with the manager. The process is usually well coordinated and easy

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (17)

Interview Questions & Answers

user image Anonymous

posted on 8 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Group Discussion 

Proctoring market, competitors, job experience

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview with CEO
Round 1 - One-on-one 

(2 Questions)

  • Q1. About salary and joining availability
  • Q2. Can join immediately.. salary negotiable
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Negotiable at the last
Round 3 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - This company Hr is very clever and illiterate manner and behaviour. At the time of joining she will speak politely and also will not disclose the company policies as well.

Even the salary offer also they share in which Manas things get deducted. No profit from the company policies . Totally fake.

The main HR of the company is something like very despo , puppet, and illiterate and non behaviour Type of character.

Over all fake policies no profits .

Senior Customer Success Manager Interview Questions asked at other Companies

Q1. If the customer ghosted post presentation how would you connect with him ?
View answer (1)

Wheebox interview questions for popular designations

 KAM

 (1)

 Front Office Aaaociate

 (1)

 Quality Inspector

 (1)

 Senior Customer Success Manager

 (1)

 Sales Manager

 (1)

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

KAM Interview Questions asked at other Companies

Q1. Document s of pervious working experience
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. Past experience

Jobs at Wheebox

View all

Interview questions from similar companies

Interview Questionnaire 

8 Questions

  • Q1. Given a doubly linked list with one pointer of each node pointing to the next node just like in a singly linked list. The second pointer(arbit pointer) however can point to any node in the list and not jus...
  • Ans. 

    Program to create a copy of a doubly linked list with an arbit pointer.

    • Traverse the original list and create a new node for each node in the list.

    • Store the mapping of original node to the new node in a hash table.

    • Traverse the original list again and set the next and arbit pointers of the new nodes.

    • Return the head of the new list.

  • Answered by AI
  • Q2. Implement funcionality of 1000 of students giving a online test and timer is running. You have to calculate th etime when test is tarted and auto-matically stop the test when test is ended. Handle the scen...
  • Ans. 

    Implement functionality for online test with timer and handle power failure scenarios

    • Create a timer function to track the time

    • Store the start time and end time of the test

    • Implement a backup system to save progress in case of power failure

    • Use a database to store test data and progress

    • Handle edge cases like internet connectivity issues

  • Answered by AI
  • Q3. WAP of prime number using reursion?
  • Ans. 

    A recursive function to check if a number is prime or not.

    • Create a function that takes a number as input.

    • Check if the number is less than 2, return false.

    • Check if the number is 2, return true.

    • Check if the number is divisible by any number less than it, return false.

    • If none of the above conditions are met, call the function recursively with the number minus 1.

  • Answered by AI
  • Q4. Reverse a linked list?
  • Ans. 

    To reverse a linked list, we need to traverse the list and change the direction of the pointers.

    • Create three pointers: prev, curr, and next

    • Initialize prev to null, curr to head of the linked list, and next to null

    • Traverse the list and change the direction of the pointers: next = curr.next; curr.next = prev; prev = curr; curr = next;

    • Set the new head of the linked list to prev

  • Answered by AI
  • Q5. Some sql related questions – not very tough : some inner joins and self join based?
  • Q6. How can you stop man in the middle attack over an insecure communication line without using any kind of encryption ?
  • Ans. 

    It is not possible to stop man in the middle attack over an insecure communication line without using any kind of encryption.

    • Without encryption, the communication line is inherently insecure and vulnerable to man-in-the-middle attacks.

    • One possible solution is to use a secure communication line, such as a VPN or a dedicated private network.

    • Another solution is to use digital signatures to verify the authenticity of the c...

  • Answered by AI
  • Q7. What is the difference between http and https?
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80 while HTTPS operates on port 443.

    • HTTP is unencrypted while HTTPS is encrypted with SSL/TLS.

    • HTTPS provides authentication and data integrity while HTTP does not.

    • HTTPS is used for secure online transactions such as online banking, e

  • Answered by AI
  • Q8. Heap memory and stack memory? Local variables are stored where? What is memory tables?
  • Ans. 

    Heap and stack memory are two types of memory allocation in a program. Local variables are stored in stack memory. Memory tables are used to track memory allocation.

    • Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

    • Local variables are stored in stack memory and are only accessible within the scope of the function they are declared in.

    • Memory tables are used to kee...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got offer from Aspiring Minds after 15 days of negotiation.

Skills: data structure, Algorithm
College Name: na

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Numeric Reasoning Test

Round: Test
Experience: Numeric Reasoning Test

Round: Test
Experience: Numeric Reasoning Test

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

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

DSA, 2hrs. along with aptitude and reasoning que were asked

Round 2 - english test 

(2 Questions)

  • Q1. Verbal test was taken
  • Q2. Grammar, punctuation, article ets were asked
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join us
Round 1 - Coding Test 

Excellent knowledge you need on coding to crack

Round 2 - Technical 

(2 Questions)

  • Q1. SQL stored procedures
  • Q2. Subqueries , Dot net Core

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare before interview so hard otherwise no chance

Wheebox Interview FAQs

How many rounds are there in Wheebox interview?
Wheebox interview process usually has 1-2 rounds. The most common rounds in the Wheebox interview process are One-on-one Round, HR and Aptitude Test.
How to prepare for Wheebox 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 Wheebox. The most common topics and skills that interviewers at Wheebox expect are B2B Sales, Sales, Java, Lead Generation and Ajax.
What are the top questions asked in Wheebox interview?

Some of the top questions asked at the Wheebox interview -

  1. Can join immediately.. salary negotia...read more
  2. Negotiable at the l...read more
  3. Revenue and account managem...read more

Tell us how to improve this page.

Wheebox Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 366 Interviews
Z X Learning Interview Questions
4.5
 • 44 Interviews
HackerRank Interview Questions
4.2
 • 23 Interviews
iMocha Interview Questions
3.9
 • 8 Interviews
Aspiring Minds Interview Questions
4.0
 • 4 Interviews
TalentSprint Interview Questions
4.0
 • 4 Interviews
Mettl Interview Questions
3.8
 • 4 Interviews
MeritTrac Interview Questions
3.9
 • 1 Interview
View all

Wheebox Reviews and Ratings

based on 53 reviews

3.5/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.3

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 53 Reviews and Ratings
Talent Acquisition Professional

Gurgaon / Gurugram

2-7 Yrs

Not Disclosed

Manager- Government Sales

Chennai,

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Information Specialist

Gurgaon / Gurugram,

M3m ifc

+1

0-1 Yrs

Not Disclosed

Explore more jobs
Java Developer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Enterprise Sales Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Wheebox with

MeritTrac

3.9
Compare

Aspiring Minds

4.0
Compare

CoCubes Technologies

2.1
Compare

TalentSprint

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