Upload Button Icon Add office photos
Engaged Employer

i

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

Ameyo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Ameyo Product Support Engineer Interview Questions and Answers

Updated 18 Sep 2022

Ameyo Product Support Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

MCQ-General Aptitude

Round 2 - HR 

(1 Question)

  • Q1. Verbal Communication
Round 3 - Technical 

(1 Question)

  • Q1. Technical Questions about previous work also
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round. This the final round, alot depends on this round

Interview Preparation Tips

Topics to prepare for Ameyo Product Support Engineer interview:
  • Linux
  • PHP
  • Java
  • Python
  • Hardware Networking
Interview preparation tips for other job seekers - For any Job Interview prepare well for the interview.

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

3 DSA questions on array and strings 1 easy, 2 medium level

Round 2 - Assignment 

Create django backend project for book store

Round 3 - HR 

(1 Question)

  • Q1. Behaviour and Situations questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Focus on the Database questions and Your related technologies. Just clear your basics and provide examples based on explanation.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Discussion about OOPS concepts and String related program

Round 2 - Coding Test 

Program on Recursion and Array

Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. Reason for joining with company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2022. There were 2 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Very basic problem solving round

Round 2 - One-on-one 

(1 Question)

  • Q1. Medium level DSA problem solving round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 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 Resume tips
Round 2 - Coding Test 

Easy round a hackerrank test with easy to medium problems

Round 3 - Technical 

(1 Question)

  • Q1. Question based on binary search
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just the offer discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Write a program that solves sudoku

Round 2 - Technical 

(1 Question)

  • Q1. How do you build a tiny URL Application?
  • Ans. 

    A tiny URL application is built by generating short aliases for long URLs, storing them in a database, and redirecting users to the original URL when the alias is accessed.

    • Generate a unique short alias for each long URL

    • Store the alias and corresponding long URL in a database

    • Implement a redirect mechanism to redirect users from the alias to the original URL

    • Handle edge cases like duplicate URLs, expired aliases, and inva

  • Answered by AI

Skills evaluated in this interview

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

Ameyo Interview FAQs

How many rounds are there in Ameyo Product Support Engineer interview?
Ameyo interview process usually has 4 rounds. The most common rounds in the Ameyo interview process are Aptitude Test, HR and Technical.
What are the top questions asked in Ameyo Product Support Engineer interview?

Some of the top questions asked at the Ameyo Product Support Engineer interview -

  1. Manager Round. This the final round, alot depends on this ro...read more
  2. Verbal Communicat...read more

Recently Viewed

INTERVIEWS

ChrysCapital

No Interviews

INTERVIEWS

Citicorp

No Interviews

INTERVIEWS

CESC

No Interviews

INTERVIEWS

Idea Entity

No Interviews

INTERVIEWS

JSW Group

No Interviews

INTERVIEWS

JSW Group

No Interviews

INTERVIEWS

Ameyo

No Interviews

INTERVIEWS

Ameyo

No Interviews

INTERVIEWS

Bank Muscat

No Interviews

SALARIES

JSW Group

Tell us how to improve this page.

Interview Questions from Similar Companies

Freshworks Interview Questions
3.5
 • 155 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.9
 • 26 Interviews
RGBSI Interview Questions
3.5
 • 24 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
View all
Ameyo Product Support Engineer Salary
based on 29 salaries
₹3.2 L/yr - ₹10.9 L/yr
At par with the average Product Support Engineer Salary in India
View more details

Ameyo Product Support Engineer Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

1.0

Skill development

4.0

Work-life balance

5.0

Salary

1.0

Job security

1.0

Company culture

4.0

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
Product Engineer
77 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Engineer
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Support Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Leader
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ameyo with

Freshworks

3.5
Compare

Knowlarity

4.2
Compare

Exotel

3.1
Compare

Ozonetel Systems

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