Upload Button Icon Add office photos
Engaged Employer

i

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

EOX Vantage Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

EOX Vantage SME Interview Questions and Answers

Updated 6 Nov 2024

EOX Vantage SME Interview Experiences

1 interview found

SME Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Experience of previous
Round 2 - One-on-one 

(2 Questions)

  • Q1. Nothing else as such
  • Q2. Nothing to tell as

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Mar 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 - Assignment 

Depends on the Profile or domain for research it was a normal internet search answers and essay writing such as describe your journey from Kashmir to Kanyakumari in 200 words

Round 3 - One-on-one 

(3 Questions)

  • Q1. Depends on the domain of job profile
  • Q2. -Introduce yourself ? -Relevant experience, job responsibilities ?
  • Ans. 

    I am a Senior Analyst with extensive experience in data analysis and project management.

    • Over 8 years of experience in analyzing complex data sets and providing actionable insights.

    • Proficient in statistical analysis and data visualization tools such as Python, R, and Tableau.

    • Led a team of analysts in developing forecasting models that improved sales predictions by 20%.

    • Managed multiple projects simultaneously, ensuring t...

  • Answered by AI
  • Q3. What is market research, What is primary and secondary research
  • Ans. 

    Market research is the process of gathering information about a market to make informed business decisions. Primary research involves collecting new data, while secondary research involves analyzing existing data.

    • Market research helps businesses understand their target audience, competition, and industry trends.

    • Primary research involves methods like surveys, interviews, and focus groups to collect new data.

    • Secondary re...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ZIGRAM Senior Analyst interview:
  • Market Research
  • Anti Money Laundering
  • Ms Excel
Interview preparation tips for other job seekers - Don't Join this company, if you're seeking for work life balance, you will only get the best colleges but the superior management was not much positive.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 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 recent experience, work profiles knowledge on the profile applied
  • Q2. Last salary drwan and what expecting
Round 3 - Case Study 

Research based case studies and questions related to secondary researxh

Interview Preparation Tips

Interview preparation tips for other job seekers - Full knowledge on the applied profiles and what expectations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The questions varied from data interpretation to logical reasoning and were of high quality.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell us about yourself
  • Ans. 

    I am a highly experienced Senior Analyst with a strong background in data analysis and strategic planning.

    • Over 10 years of experience in analyzing complex data sets

    • Proficient in using statistical software such as SPSS and SAS

    • Skilled in creating detailed reports and presentations for senior management

    • Strong problem-solving and critical thinking skills

    • Managed cross-functional teams to drive successful project outcomes

  • Answered by AI
  • Q2. How can you determine which crate contains apples and which one contains oranges without opening or touching them?
  • Ans. 

    By using the weight of the crates, as apples and oranges have different average weights.

    • Apples are generally lighter than oranges, so the crate that weighs less likely contains apples.

    • You can also shake the crates gently to listen for the sound of apples or oranges moving inside.

    • Inspecting the labels on the crates may also provide clues as to their contents.

  • Answered by AI

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Hard

This round was very difficult. I never do these much difficulty level of coding questions. But i give my best, and just do every questions by using step by step process.

  • Q1. 

    Hourglass Pattern Problem Statement

    Given an integer 'N', print an hourglass pattern based on the value of 'N'.

    Input:

    The first and only line of input contains an integer, denoting the value of N.

    Out...

  • Ans. 

    Print an hourglass pattern based on the given integer 'N'.

    • Read the integer 'N' as input

    • Print the top half of the hourglass pattern with decreasing numbers

    • Print the bottom half of the hourglass pattern with increasing numbers

    • Handle the constraints for 'N' values between 1 and 50

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Use BFS algorithm to traverse the graph starting from vertex 0.

    • Explore neighbor nodes first before moving to the next level neighbors.

    • Consider bidirectional edges in an undirected graph.

    • Output the BFS traversal sequence for each test case in a separate line.

    • Ensure the BFS path starts from vertex 0 and print connected nodes in numerical sort order.

  • Answered by AI
  • Q3. 

    Sort a Stack Problem Statement

    You are given a stack. Your task is to sort the elements within the stack in ascending order using only push and pop operations. You are allowed to use one additional stack ...

  • Ans. 

    Sort a given stack in ascending order using only push and pop operations with the help of an additional stack.

    • Use one additional stack to assist in sorting the elements.

    • Pop elements from the input stack and push them onto the auxiliary stack in sorted order.

    • Keep track of the current minimum element to maintain ascending order.

    • Pop elements from the auxiliary stack back to the input stack to get the sorted order.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round is also coding round in this round we have a small video call interaction too, in which hr ask few questions to only those whose coding question is correct.

  • Q1. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Find the largest palindrome number strictly less than a given palindrome number.

    • Iterate from the middle towards the start of the number and decrement the digits to create the largest palindrome less than the given number.

    • Handle cases where the number is all '9's by changing the middle digit to '9' and decrementing the rest of the digits.

    • If the number has an odd length, simply mirror the first half to create the largest

  • Answered by AI
  • Q2. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find minimum time to rot all fresh oranges adjacent to rotten oranges in a grid.

    • Use Breadth First Search (BFS) to simulate the rotting process.

    • Track the time taken to rot all fresh oranges.

    • Return -1 if all fresh oranges cannot be rotten.

    • Handle edge cases like empty grid or no fresh oranges.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 cgpaZIGRAM interview preparation:Topics to prepare for the interview - OOPS , Data Structures, Dynamic Programming, Algorithms from variuos coding platforms , Database Management System, Operating System, Web developmentTime required to prepare for the interview - 2 monthInterview preparation tips for other job seekers

Tip 1 : Relax and don't stress. Practice
Tip 2 : Build Resume according to Job Description , but don't lie.
Tip 3 : Have good projects and knowledge regarding important subjects related to interviews

Application resume tips for other job seekers

Tip 1 : Include only genuine information, never lie in resume , it will impact to bad impression. 
Tip 2 : Skills relevant to Job Description
Tip 3 : Resume should not be more than 2 pages 
Tip 4 : Have some projects and internship on your resume because it will give good impression

Final outcome of the interviewSelected

Skills evaluated in this interview

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. Everything in your resume.
Round 3 - HR 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. They mostly check your english fluency.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is secondary research
  • Ans. 

    Secondary research involves gathering information from existing sources such as books, articles, and reports.

    • Secondary research is the process of collecting and analyzing data that has already been published or gathered by others.

    • It is used to gain a better understanding of a topic, validate primary research findings, or gather historical data.

    • Examples of secondary research sources include academic journals, government

  • Answered by AI
  • Q2. What have u done in your internship
  • Ans. 

    I worked on data analysis projects, conducted market research, and created reports for senior management.

    • Conducted data analysis on customer feedback surveys

    • Assisted in creating financial models to analyze company performance

    • Researched market trends and competitor analysis

    • Prepared presentations and reports for senior management meetings

  • Answered by AI
  • Q3. PEP relevant questions
Interview experience
1
Bad
Difficulty level
Easy
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 - HR 

(1 Question)

  • Q1. Share your past work experience.
Round 2 - Technical 

(1 Question)

  • Q1. What is research?
  • Ans. 

    Research is the systematic investigation of a subject to discover new knowledge or validate existing theories.

    • Research involves a systematic and organized approach to gather information and analyze data.

    • It aims to answer specific questions or solve problems by using various methods and techniques.

    • Research can be conducted in various fields such as science, social sciences, business, and technology.

    • Examples of research ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company, dont go there.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox

Round 1 - Coding Test 

Java, spring,springboot

Interview Questionnaire 

2 Questions

  • Q1. Core java and spring boot questions
  • Q2. Learn core concepts in java

EOX Vantage Interview FAQs

How many rounds are there in EOX Vantage SME interview?
EOX Vantage interview process usually has 2 rounds. The most common rounds in the EOX Vantage interview process are HR and One-on-one Round.
What are the top questions asked in EOX Vantage SME interview?

Some of the top questions asked at the EOX Vantage SME interview -

  1. Nothing else as s...read more
  2. Nothing to tell...read more

Tell us how to improve this page.

EOX Vantage SME Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Winman Software Interview Questions
4.0
 • 29 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
MapmyIndia Interview Questions
3.7
 • 24 Interviews
View all
EOX Vantage SME Salary
based on 34 salaries
₹2.9 L/yr - ₹5 L/yr
36% less than the average SME Salary in India
View more details

EOX Vantage SME Reviews and Ratings

based on 6 reviews

4.0/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.0

Salary

3.7

Job security

3.7

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 6 Reviews and Ratings
Senior Analyst
96 salaries
unlock blur

₹1.9 L/yr - ₹4.1 L/yr

Sr. Insurance Analyst
59 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Junior Analyst
52 salaries
unlock blur

₹1.9 L/yr - ₹3.5 L/yr

Insurance Analyst
46 salaries
unlock blur

₹1.9 L/yr - ₹4.5 L/yr

Junior Insurance Analyst
42 salaries
unlock blur

₹1.2 L/yr - ₹3.3 L/yr

Explore more salaries
Compare EOX Vantage with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Nowfloats Technologies

3.2
Compare

Peel-works

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