Premium Employer

i

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

World Wide Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

World Wide Technology Buyer Interview Questions and Answers

Updated 30 Dec 2021

World Wide Technology Buyer Interview Experiences

1 interview found

Buyer Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2021

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. It was all about drop ship
  • Ans. Prepare for drop ship and manage the workload
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for drop ship

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Explain abt yourself, current ctc, expected ctc
Round 2 - Technical 

(1 Question)

  • Q1. Diamond problem, oops concept
Round 3 - Coding Test 

Small task in catia api

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is SIngularity in BIW
  • Ans. 

    Singularity in BIW refers to a point where multiple body panels meet in a vehicle's body structure.

    • Singularity is a critical point in BIW design where multiple panels converge.

    • It is important to ensure proper fit and alignment at singularity points to maintain structural integrity.

    • Examples of singularity points include door openings, roof joints, and hood connections.

  • Answered by AI
  • Q2. Time taken for Spot welding by robot
  • Ans. 

    The time taken for spot welding by a robot depends on various factors such as material thickness, type of material, welding parameters, and robot speed.

    • Time taken for spot welding can vary based on the material thickness. Thicker materials may require longer welding times.

    • The type of material being welded can also impact the time taken. Different materials have different conductivity and heat transfer properties.

    • Weldin...

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. Core mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared before interview

I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant, Technical and Logical Reasoning

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is owasp top 10?
  • Ans. 

    OWASP Top 10 is a list of the most critical web application security risks.

    • It is updated every 3-4 years by the Open Web Application Security Project (OWASP)

    • The list includes vulnerabilities such as injection, broken authentication and session management, cross-site scripting (XSS), and more

    • It is used as a guide for developers and security professionals to prioritize their security efforts

    • The latest version is OWASP To

  • Answered by AI
  • Q2. Audit Fundamentals? Risk, threat, impact etc.
Round 3 - Case Study 

Scenario based case study, to identify risk based observations

Interview Preparation Tips

Interview preparation tips for other job seekers - Prep for aptitude well, other rounds - audit concepts must be revised.

I applied via Company Website and was interviewed before Sep 2021. 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 - Technical 

(1 Question)

  • Q1. Knowing RBI Circulars on cybersecurity
Round 3 - HR 

(1 Question)

  • Q1. Why you want to join ReBIT?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through company site, learn CSF cybersecurity framework, know various RBI departments
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About position said for
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself
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 - Technical 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

I appeared for an interview in Jan 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    The task is to determine if a given singly linked list forms a cycle or not.

    • A cycle occurs when a node's next points back to a previous node in the list.

    • To solve this problem, we can use the Floyd's Cycle-Finding Algorithm.

    • The algorithm uses two pointers, one moving at a normal pace and the other moving twice as fast.

    • If there is a cycle, the fast pointer will eventually catch up to the slow pointer.

    • If the fast pointer ...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Minimum Depth of a Binary Tree

    Determine the minimum depth of an integer-based binary tree. The minimum depth is defined as the number of nodes present along the shortest path from the root node down to t...

  • Ans. 

    The minimum depth of a binary tree is the number of nodes along the shortest path from the root node down to the nearest leaf node.

    • The minimum depth can be found by performing a breadth-first search (BFS) traversal of the binary tree

    • During the BFS traversal, keep track of the current level and increment the depth by 1 for each level

    • Stop the BFS traversal when a leaf node is encountered and return the depth as the minim

  • Answered by AI
  • Q2. 

    Intersection of Two Arrays Problem Statement

    Given two arrays A and B with sizes N and M respectively, both sorted in non-decreasing order, determine their intersection.

    The intersection of two arrays in...

  • Ans. 

    The problem is to find the intersection of two sorted arrays.

    • Use two pointers to iterate through the arrays.

    • Compare the elements at the current pointers and move the pointers accordingly.

    • If the elements are equal, add it to the intersection array and move both pointers.

    • If the element in the first array is smaller, move the first pointer.

    • If the element in the second array is smaller, move the second pointer.

    • Repeat until...

  • Answered by AI
  • Q3. What is the difference between a mutex and a semaphore?
  • Ans. 

    A mutex is a binary semaphore used for mutual exclusion, while a semaphore is a generalized synchronization primitive.

    • Mutex is used to protect a critical section of code, allowing only one thread to access it at a time.

    • Semaphore is used to control access to a shared resource, allowing multiple threads to access it simultaneously.

    • Mutex has ownership, meaning the thread that locks it must unlock it.

    • Semaphore does not hav...

  • Answered by AI
Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Easy

Round 4 - HR 

Round duration - 25 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaMinimum CGPA Required: 7.0F5 Networks interview preparation:Topics to prepare for the interview - Data Structure and Algorithms, Operating Systems, Object-Oriented Programming, Computer Networks, System DesignTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot of DSA questions on various online platforms. 
Tip 2 : Regularly go back to some of the typical DSA questions.
Tip 3 : Give equal importance to OS, OOPS, and CN subjects.

Application resume tips for other job seekers

Tip 1 : Be thorough with your resume to answer anything and everything from your resume.
Tip 2 : Do not put false information on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 Oct 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. Technical interview on python, terraform and networking protocols
Round 3 - Case Study 

Technical interview on different types of routing paths

Round 4 - Behavioral 

(1 Question)

  • Q1. Manger round about general job discussion on skills and my previous experiences
Round 5 - HR 

(1 Question)

  • Q1. Interview on CTC and personality checkup

Interview Preparation Tips

Topics to prepare for F5 Networks Senior Software Engineer interview:
  • Python
  • Terraform
  • Routing Protocols
  • Golang
  • Networking
  • Proxy

World Wide Technology Interview FAQs

How to prepare for World Wide Technology Buyer 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 World Wide Technology. The most common topics and skills that interviewers at World Wide Technology expect are Administration, Management, Procurement, Warehouse and Action Plan.

Tell us how to improve this page.

Join World Wide Technology Combining strategy & execution to help business accelerate growth.

Interview Questions from Similar Companies

Stefanini Interview Questions
2.9
 • 35 Interviews
Equifax Interview Questions
3.3
 • 32 Interviews
F5 Networks Interview Questions
3.8
 • 23 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
CDW Interview Questions
4.5
 • 20 Interviews
Softtek Interview Questions
4.0
 • 19 Interviews
View all
World Wide Technology Buyer Salary
based on 6 salaries
₹7 L/yr - ₹11.2 L/yr
15% more than the average Buyer Salary in India
View more details

World Wide Technology Buyer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
22 salaries
unlock blur

₹22 L/yr - ₹37 L/yr

Software Engineer
11 salaries
unlock blur

₹11 L/yr - ₹37 L/yr

Project Coordinator
11 salaries
unlock blur

₹3.7 L/yr - ₹9 L/yr

Data Scientist
9 salaries
unlock blur

₹21.5 L/yr - ₹30 L/yr

Buyer
6 salaries
unlock blur

₹7 L/yr - ₹11.2 L/yr

Explore more salaries
Compare World Wide Technology with

Actalent Services

3.5
Compare

Pitney Bowes

3.8
Compare

Stefanini

2.9
Compare

Softtek

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