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
3.3

based on 138 Reviews

Filter interviews by

Ameyo Intern Interview Questions and Answers

Updated 7 Jun 2024

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. About projects, like the what stack used
  • Q2. Hr question about why to join browserstack
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Information Technology (IIIT), Kota and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

A 90-minute coding test on HackerRank, which includes one medium, one easy, and one hard question.

Round 2 - Technical 

(2 Questions)

  • Q1. What is the index of the first occurrence where a pattern string matches with a text string?
  • Q2. Given a string, how can we find the minimum length substring whose sum is greater than or equal to a specified target?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There are 3 questions moderate one with topics like dp ( edit distance variant ), dequeue and hashing question. I cleared the test and move forward to interview round 1

Round 2 - One-on-one 

(2 Questions)

  • Q1. Write code for Topological sort?
  • Ans. 

    Topological sort is a linear ordering of vertices in a directed acyclic graph.

    • Use Depth First Search (DFS) to visit each vertex and add it to the result list after visiting all its neighbors.

    • Maintain a visited set to keep track of visited vertices and a result list to store the sorted order.

    • If a cycle is detected during DFS, the graph is not a DAG and topological sort is not possible.

  • Answered by AI
  • Q2. A implementation Based question of a data structure on merging square with many constraints.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare you DSA very well if want to get the offer.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Some Objective questions and 1 Coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Situation based questions on Coroutines
  • Q2. About Project Tech Stack Used and Questions on that
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Expertise in ATS
  • Ans. 

    Experience with Applicant Tracking Systems (ATS) is essential for HR Intern role.

    • Familiarity with popular ATS platforms such as Greenhouse, Lever, and iCIMS

    • Ability to post job listings, review resumes, and track candidate progress within ATS

    • Experience in customizing ATS workflows and generating reports for recruitment metrics

  • Answered by AI
  • Q2. Total Experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of position closed
  • Ans. 

    The number of positions closed refers to the total number of job openings that have been filled by candidates.

    • The number of positions closed can be tracked through the recruitment process, from job posting to candidate selection.

    • This metric is important for evaluating the efficiency and effectiveness of the hiring process.

    • For example, if a company has closed 50 positions in a quarter, it indicates a high level of recru

  • Answered by AI
  • Q2. Proficiency in Excel
  • Ans. 

    Proficient in Excel with experience in creating complex formulas, pivot tables, and data analysis.

    • Experience in creating and manipulating spreadsheets

    • Ability to use functions and formulas effectively

    • Knowledge of pivot tables and data visualization techniques

    • Experience in data analysis and reporting

    • Familiarity with VLOOKUP, INDEX-MATCH, and conditional formatting

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Sri Krishna College of Engineering and Technology, Coimbatore and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

We had 21 questions including 3 coding questions. It was simple and beginners friendly questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions were asked based on DBMS, SQL, api, simple coding and testing
Round 3 - Technical 

(1 Question)

  • Q1. I was asked to describe my projects and questions were asked based on that. Had scenario based questions

I was interviewed in Sep 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The round was technical round and it was held on google meet around 1 pm

  • Q1. 

    Maximum Sum Rectangle Problem

    Given an M x N matrix of integers ARR, your task is to identify the rectangle within the matrix that has the greatest sum of its elements.

    Input:

    The first line of input co...
  • Ans. Brute force

    In this approach, we'll try to consider each rectangle that can be formed using elements of the array. To do this we fix (X1,Y1) coordinates of starting vertex and iterate through the matrix for every pair (X2,Y2) as the coordinates of ending vertex. Now we have a rectangle with coordinates (X1,Y1), (X1,Y2), (X2,Y1) and (X2,Y2).

    We'll find the sum of elements within this rectangle and compare it with MAXSUM. ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was managerial round and took place around 3 pm

  • Q1. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. Stack

    We will scan the expression from left to write and if we encounter an operand we will append it to our answer. If we encounter an operator we will pop all the operators with equal or higher precedence and append them to our answer. And push the current operator. In the end, we will empty the stack.

    Order of precedence = [ ‘^’, ‘*’ and ‘/’, ‘+’ and ‘-’, ‘(’, ‘)’]

    Order of precedence [ link ]

    The algorithm will be-

    1. ANS ...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Patna. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPA , Computer Science branchEnvestnet | Yodlee India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, C++, Java, Object Oriented Programming, PointersTime required to prepare for the interview - 0.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Java concepts should be strong
Tip 2 : OOPS
Tip 3 : Projects should have scalability

Application resume tips for other job seekers

Tip 1 : Projects detail should be short and precise
Tip 2 : Don't fake technical skills

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. About projects, like the what stack used
  • Q2. Hr question about why to join browserstack
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were 3 questions in the online assessment.

1 - Binary Search
2 - DP
3 - Graphs

Round 2 - Technical 

(1 Question)

  • Q1. Implement a persistence stack with constant time operations
  • Ans. 

    Implement a persistence stack with constant time operations

    • Use a combination of a stack and a hashmap to achieve constant time operations for push, pop, and get operations

    • Maintain a stack to store the elements and a hashmap to store the index of each element in the stack

    • When pushing an element, add it to the stack and update its index in the hashmap

    • When popping an element, remove it from the stack and also remove its i...

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

(1 Question)

  • Q1. Median of two sorted arrays and OOPs basics
  • Ans. 

    Finding the median of two sorted arrays and discussing OOPs basics

    • To find the median of two sorted arrays, merge the arrays and then calculate the median

    • OOPs basics include concepts like encapsulation, inheritance, polymorphism, and abstraction

    • Example: Median of [1, 3] and [2] is 2.0

  • Answered by AI

Skills evaluated in this interview

Ameyo Interview FAQs

How many rounds are there in Ameyo Intern interview?
Ameyo interview process usually has 1 rounds. The most common rounds in the Ameyo interview process are Technical.
What are the top questions asked in Ameyo Intern interview?

Some of the top questions asked at the Ameyo Intern interview -

  1. not remembered the question now ag...read more
  2. not remembered the question ...read more

Tell us how to improve this page.

Ameyo Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Freshworks Interview Questions
3.5
 • 154 Interviews
BrowserStack Interview Questions
3.7
 • 48 Interviews
ZIGRAM Interview Questions
3.9
 • 26 Interviews
Fleetx.io Interview Questions
3.9
 • 26 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
RGBSI Interview Questions
3.6
 • 23 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all
Product Engineer
80 salaries
unlock blur

₹2.2 L/yr - ₹9 L/yr

Senior Product Engineer
46 salaries
unlock blur

₹4.4 L/yr - ₹11.1 L/yr

Product Support Engineer
29 salaries
unlock blur

₹3.2 L/yr - ₹10.9 L/yr

Sales Manager
24 salaries
unlock blur

₹8.5 L/yr - ₹22.1 L/yr

Associate Technical Leader
24 salaries
unlock blur

₹7.5 L/yr - ₹20.7 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