Upload Button Icon Add office photos
Engaged Employer

i

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

Amazon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amazon Verification Specialist Interview Questions and Answers

Updated 20 Mar 2022

Amazon Verification Specialist Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

No words

Round 2 - Technical 

(3 Questions)

  • Q1. What are u so any trying
  • Q2. Where u r u trying jobs
  • Q3. Which can tell u job test
Round 3 - Coding Test 

Very coding test is importance very so that test topics and etc.

Interview Preparation Tips

Topics to prepare for Amazon Verification Specialist interview:
  • MS Office
  • Accounting
  • Tally
  • based
Interview preparation tips for other job seekers - job is so very hard work plz try and very job is very importance

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 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 - HR 

(2 Questions)

  • Q1. About yourself?
  • Q2. What's about your experience?
  • Ans. 

    I have over 8 years of experience in financial analysis, project management, and team leadership.

    • Managed a team of analysts to successfully implement cost-saving initiatives

    • Led cross-functional projects resulting in increased efficiency and profitability

    • Performed in-depth financial analysis to support strategic decision-making

    • Collaborated with senior management to develop and execute business plans

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. How was your product handling?
  • Ans. 

    My product handling experience has been excellent, with a focus on efficiency and accuracy.

    • Implemented efficient product handling processes to streamline operations

    • Ensured accurate inventory management and tracking

    • Trained team members on proper product handling techniques

    • Utilized technology to improve product handling efficiency, such as barcode scanning systems

  • Answered by AI
  • Q2. What was the customer experience given as feedback your work?
  • Ans. 

    The customer feedback on my work was overwhelmingly positive, highlighting my attention to detail and excellent communication skills.

    • Received positive feedback on attention to detail

    • Received positive feedback on communication skills

    • Customers expressed satisfaction with the overall experience

  • Answered by AI

Interview Preparation Tips

Topics to prepare for OLX Senior Associate interview:
  • Automobile Sales
  • Inventory Management
Interview preparation tips for other job seekers - I am already worked in olx autos and my I am handled like business to customer, business to business and business to customer.

Analyst Interview Questions & Answers

Airbnb user image Pornima Kolte

posted on 4 Mar 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to sort ararat
  • Ans. 

    Ararat can be sorted alphabetically or numerically.

    • Sort alphabetically: Arrange in ascending order based on the letters in the word.

    • Sort numerically: Arrange in ascending order based on the numerical value of each character.

  • Answered by AI

Skills evaluated in this interview

Analyst Interview Questions & Answers

Uber user image Anonymous

posted on 13 Sep 2021

Interview Questionnaire 

2 Questions

  • Q1. Excel, sql were asked basic knowledge, quant screening
  • Q2. Work experience was asked, basic intro

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up excel, sql, logical questions were asked. Quant screening

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

This was an online coding round where we were supposed to solve 2 questions under 90 minutes . Both the questions in my set were related to Graphs and were quite tricky and heavy to implement.

  • Q1. 

    Path Counting in Directed Graph

    Given a directed graph with a specified number of vertices V and edges E, your task is to calculate the total number of distinct paths from a given source node S to all ot...

  • Ans. 

    Calculate the total number of distinct paths from a given source node to all other nodes in a directed graph.

    • Use dynamic programming to keep track of the number of paths from the source node to each node in the graph.

    • Consider using modular arithmetic to handle large numbers and prevent overflow.

    • Start by initializing the number of paths from the source node to itself as 1.

    • Iterate through the edges of the graph and updat...

  • Answered by AI
  • Q2. 

    Course Schedule II Problem Statement

    You are provided with a number of courses 'N', some of which have prerequisites. There is a matrix named 'PREREQUISITES' of size 'M' x 2. This matrix indicates that fo...

  • Ans. 

    Given courses with prerequisites, determine a valid order to complete all courses.

    • Use topological sorting to find a valid order of courses.

    • Create a graph with courses as nodes and prerequisites as edges.

    • Start with courses that have no prerequisites and remove them from the graph.

    • Continue this process until all courses are taken or there are no valid courses left.

    • If there is a cycle in the graph, it is impossible to com

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a Data Structures and Algorithms round with some standard questions . I was expected to come up with an
efficient approach and code it as well .

  • Q1. 

    Merge Intervals Problem Statement

    You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval.

    Your task is to merge all overlapping intervals a...

  • Ans. 

    Merge overlapping intervals and return sorted list of merged intervals.

    • Sort the intervals based on start times.

    • Iterate through intervals and merge overlapping intervals.

    • Return the merged intervals in sorted order.

  • Answered by AI
  • Q2. 

    Longest Route Problem Statement

    Given a 2-dimensional binary matrix called Mat of size N x M that consists solely of 0s and 1s, find the length of the longest path from a specified source cell to a destina...

  • Ans. 

    Find the length of the longest path from a source cell to a destination cell in a binary matrix.

    • Use depth-first search (DFS) to explore all possible paths from source to destination.

    • Keep track of visited cells to avoid revisiting them.

    • Return the length of the longest path found, or -1 if no path exists.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round where I was asked to code only one of the questions but I eventually ended up coding both
as I had some spare time and explained my approches very smoothly to the interviewer . This round went preety well .

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to solve this problem efficiently.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the array as the result.

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Use binary search to find the pivot point where the array is rotated.

    • Then perform binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round with 2 questions of Medium to Hard difficulty . I was expected to follow some clean code and OOPS principles to write the code in this round .

  • Q1. 

    Rank from Stream Problem Statement

    Given an array of integers ARR and an integer K, determine the rank of the element ARR[K].

    Explanation:

    The rank of any element in ARR is defined as the number of elem...

  • Ans. 

    Given an array and an index, find the number of elements smaller than the element at that index appearing before it in the array.

    • Iterate through the array up to index K and count the number of elements smaller than ARR[K].

    • Return the count as the rank of ARR[K].

    • Handle edge cases like empty array or invalid index K.

  • Answered by AI
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to maintain the order of recently used keys.

    • Use a hashmap to store key-value pairs for quick access.

    • Update the order of keys in the linked list on get and put operations.

    • Evict the least recently used key when the cache reaches its capacity.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFacebook interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Referral and was interviewed before May 2022. 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 - HR 

(2 Questions)

  • Q1. 1. Introduction? 2. Experience?
  • Q2. 1. Keep the introduction simple and add more things to your skill set so it matches the role of the position 2. If you are experienced enough 1-2years or more. They might ask you about previous organizat...
Round 3 - VNA 

(1 Question)

  • Q1. They might ask phonetics and pronunciation of few countries or cities. airport codes ,fluency while speaking.
  • Ans. Do not hesitate while answering any question, trying to maintain US or UK accent if any , If not you may use Indian accent , read the pronounciations before the interview.
  • Answered Anonymously
Round 4 - Operation 

(1 Question)

  • Q1. Scenario based question
  • Ans. If you are experienced enough you will be able to answer each question, just stay confident while answering the questions , It is important to give answer for each and every question, doesn't matter if you are up to the mark or not. It all depends on your confidence, If you have no idea about any question just tell the interviewer simply and request them to elaborate or explain the question to you, It should be refl
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Fareportal Senior Executive interview:
  • Gds (amadeus,sabre,galileo )
  • basics of travel
  • general routings by flights
  • Geography
  • airport names ana codes
Interview preparation tips for other job seekers - Won't be suggesting this company's to anyone , due to corporate politics, social distress , inequality, baisness,salary deductions, department transfer,no incentives etc.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Describe your job profile
  • Q2. Why do you want to leave

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions about core concept.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core concepts and basic programs.
Round 1 - Assignment 

They will ask you for the versant.

Round 2 - HR 

(1 Question)

  • Q1. Will be asking your experience and expectations and all.
Round 3 - One-on-one 

(1 Question)

  • Q1. Operation round will check your knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and true keep answering all the questions that will be asked during the interview
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2022. There were 8 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 - HR 

(1 Question)

  • Q1. They will ask about your profile and past experience.
Round 3 - Technical 

(1 Question)

  • Q1. A peer level colleague will ask some basic knowledge check questions
Round 4 - Coding Test 

This is literally a live coding test. For analytics expect SQL, python, R.

Round 5 - One-on-one 

(1 Question)

  • Q1. Interviewed by a manager of another team
Round 6 - One-on-one 

(1 Question)

  • Q1. Interviewed by dotted line reporting manager
Round 7 - One-on-one 

(1 Question)

  • Q1. Cross functional interview
Round 8 - One-on-one 

(1 Question)

  • Q1. Core Values Interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the core values, remember them, understand them and embody them. And being good at your advertised skills also helps.

Amazon Interview FAQs

How many rounds are there in Amazon Verification Specialist interview?
Amazon interview process usually has 3 rounds. The most common rounds in the Amazon interview process are Aptitude Test, Technical and Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Uber Interview Questions
4.2
 • 150 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
OLX Interview Questions
3.8
 • 57 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
Groupon Interview Questions
3.2
 • 42 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Fareportal Interview Questions
3.3
 • 30 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Airbnb Interview Questions
3.7
 • 23 Interviews
View all

Amazon Verification Specialist Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

5.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Customer Service Associate
4.2k salaries
unlock blur

₹0.6 L/yr - ₹6.8 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.3 L/yr - ₹6.3 L/yr

Associate
2.9k salaries
unlock blur

₹0.8 L/yr - ₹7 L/yr

Senior Associate
2.5k salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Program Manager
2.1k salaries
unlock blur

₹9 L/yr - ₹36 L/yr

Explore more salaries
Compare Amazon with

Flipkart

3.9
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

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