Upload Button Icon Add office photos
Premium Employer

i

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

iQuanti Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

iQuanti Senior Analyst Interview Questions and Answers

Updated 5 Mar 2024

iQuanti Senior Analyst Interview Experiences

3 interviews found

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

I applied via Approached by Company and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Case Study 

Given Raw Data. what kind of insights and visualization(in excel) can you create?

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Case Study 

Client website homepage SEO and technical analysis.

Round 2 - Technical 

(1 Question)

  • Q1. Questions based on case study + kw research + technical SEO.
Round 3 - One-on-one 

(2 Questions)

  • Q1. 1 to 1 round with project manager.
  • Q2. Professional experience journey.

Interview Preparation Tips

Topics to prepare for iQuanti Senior Analyst interview:
  • Technical SEO
  • Content Creation
  • Website Analysis
  • Keyword Research
  • Google Analytics
  • Content Management System
  • Advanced Excel
Interview preparation tips for other job seekers - Great for freshers, so much to learn and adapt. In SEO, associate manager and above positions earn good, below that the salary is average for Sr. Analyst and Lead. Analyst earns good though with very little experience so definitely good for SEO people with 1-4 years of exp.

P.S. NITs, IIMs joinees can get a salary of upto sr. analyst/lead position right after their short training period.

Senior Analyst Interview Questions Asked at Other Companies

Q1. Explain 3 statement financial model Calculating discount rate Cou ... read more
Q2. Tell me about your profile? What do you know about Transaction Mo ... read more
asked in Accenture
Q3. What do you understand by Budgeting and Forecasting?
Q4. Q4. What is the probability of getting 5 Sundays in 31 day month.
Q5. Q4. You are standing in a field. Chances of seeing atleast 1 plan ... read more

I applied via LinkedIn and was interviewed before Jul 2021. 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 - Aptitude Test 

MCQ Questions related to SEO

Round 3 - Case Study 

2 case studies were shared.

Round 4 - One-on-one 

(1 Question)

  • Q1. One to one with Manager. Questions were related to your the findings from case study and general SEO questions
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - SEO MCQs are easy, you can do it
Try to prepare Ppt in case study round

Senior Analyst Jobs at iQuanti

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

45 min very easy MCQ test on hacker rank covering aptitude , MySQL and MS Excel topics.

Round 3 - Interview 

(1 Question)

  • Q1. SQL queries,Python,Pandas,Numy,MS Excel
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on resume,sql and python along with MS Excel if needed!
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Prepare SQL and Pyspark well
  • Q2. Prepare well on SQL Joins
Round 2 - One-on-one 

(1 Question)

  • Q1. Read about Programmatic advertising
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Online Hackerrank Test on SQL

Round 2 - Technical 

(1 Question)

  • Q1. Discussion on CV, questions on SQL, R and Python
Round 3 - Case Study 

Case Study Discussion

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

I applied via Job Portal and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Test on Hackerrank SQL

Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL, R, Case study
Round 3 - Case Study 

Detailed discussion on use cases

Interview Questionnaire 

2 Questions

  • Q1. Little discussion on my project
  • Q2. Given a chessboard and the initial position of horse. If “n” is the number of steps the horse can make then what is probability that it goes out of board ?
  • Ans. 

    Probability of a horse going out of a chessboard in 'n' steps.

    • The total number of possible moves for a horse is 8.

    • The probability of going out of the board depends on the position of the horse.

    • For example, if the horse is at a corner, the probability of going out of the board is higher.

    • The probability can be calculated using combinatorics and geometry.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: They did not expect any code in this round. An algo or pseudo code is fine.



1) You are given 2 vessels with capacity M liters and N liters capacity and infinite supply of water. You need to find the minimum number of steps required to get P liters. Any of the below action is considered a step



     a) Filling vessel with water



     b) Emptying vessel



     c) Pouring water from one vessel to another vessel.



2) Given n sets each containing m integers. You need to create MinDiff set by picking exactly 1 element from each set. The difference between the maximum and minimum elements in the MinDiff set should be minimum.



eg: for the sets {30, 20, 10, 40},{ 22, 33, 44, 99},{ 16, 17, 18, 19} min diff set is {19, 20, 22}. Max and min elements in MinDiff set are 22 and 19 and their difference is 3.

Round: Technical Interview
Experience: 1) you will be given the binary representation of the numbers in the form of 2D array.eg: r1- 00001

r2- 00100

r3- 01010

r4- 00110

r5- 00111 This means the elements are 1, 4, 10 , 6 and 7.

A number “n” is given. Let us say that n can be formed by doing bitwise OR operation on rows of given matrix. What is the minimum number of rows that needs to be deleted from the matrix so that “n” can never be formed by doing the OR of the rows.

If n is 14(01110) then it can be formed by doing r2|r3 or r3|r4. You can prevent n formation either by deleting {r2,r4} or {r3}. But {r3} has least number of elements so it is the required set.2) Find the average of mid 50% of elements in the running stream of integersI have not cleared round-II so no further questions.

College Name: IIT GANDHINAGAR
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions were on Power BI, SQL, Python
  • Q2. Explain the use cases of different charts in Power BI?
  • Ans. 

    Different charts in Power BI have various use cases such as visualizing trends, comparing data, and highlighting outliers.

    • Bar charts are useful for comparing data across categories.

    • Line charts are great for showing trends over time.

    • Pie charts can be used to show the proportion of each category in a dataset.

    • Scatter plots are helpful for identifying relationships between two variables.

    • Gantt charts are ideal for visualizi

  • Answered by AI
  • Q3. Write a query to find nth highest salary in SQL?
  • Ans. 

    Query to find nth highest salary in SQL

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the DISTINCT keyword to eliminate duplicates

    • Use LIMIT and OFFSET to get the nth highest salary

  • Answered by AI
Round 2 - Case Study 

Price Implementation Case Study. Determine the new price of a product based on a few conditions applied to other columns or parameters.

Round 3 - One-on-one 

(1 Question)

  • Q1. Generic resume review and questions about past work experience. There were a few questions about drawing actionable insights based on data analysis.

Skills evaluated in this interview

Analyst Interview Questions & Answers

InMobi user image abishek saju

posted on 15 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to work here
Round 2 - One-on-one 

(1 Question)

  • Q1. Explain your previous work experience

iQuanti Interview FAQs

How many rounds are there in iQuanti Senior Analyst interview?
iQuanti interview process usually has 3 rounds. The most common rounds in the iQuanti interview process are Case Study, One-on-one Round and Technical.
How to prepare for iQuanti Senior Analyst 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 iQuanti. The most common topics and skills that interviewers at iQuanti expect are Digital Marketing, SEO, Link Building, Keyword Research and Content Strategy.
What are the top questions asked in iQuanti Senior Analyst interview?

Some of the top questions asked at the iQuanti Senior Analyst interview -

  1. Questions based on case study + kw research + technical S...read more
  2. 1 to 1 round with project manag...read more
  3. One to one with Manager. Questions were related to your the findings from case ...read more

Tell us how to improve this page.

iQuanti Senior Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.9
 • 102 Interviews
Epsilon Interview Questions
4.0
 • 90 Interviews
Regalix Interview Questions
2.9
 • 45 Interviews
Denave Interview Questions
3.6
 • 40 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
Groupm Media Interview Questions
3.9
 • 35 Interviews
InMobi Interview Questions
3.4
 • 35 Interviews
Smollan Group Interview Questions
4.1
 • 34 Interviews
MiQ Digital Interview Questions
3.3
 • 32 Interviews
View all
iQuanti Senior Analyst Salary
based on 113 salaries
₹6 L/yr - ₹14 L/yr
32% more than the average Senior Analyst Salary in India
View more details

iQuanti Senior Analyst Reviews and Ratings

based on 13 reviews

2.6/5

Rating in categories

2.4

Skill development

2.0

Work-life balance

2.7

Salary

1.8

Job security

2.8

Company culture

1.9

Promotions

2.4

Work satisfaction

Explore 13 Reviews and Ratings
Senior Analyst

Bangalore / Bengaluru

2-5 Yrs

₹ 6-9 LPA

Explore more jobs
Senior Analyst
113 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Lead Analyst
51 salaries
unlock blur

₹9.8 L/yr - ₹18 L/yr

Management Trainee
38 salaries
unlock blur

₹12 L/yr - ₹15.1 L/yr

Analyst
37 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Engagement Manager
35 salaries
unlock blur

₹15.3 L/yr - ₹31 L/yr

Explore more salaries
Compare iQuanti with

R.R. Donnelley

3.9
Compare

Epsilon

4.0
Compare

Denave

3.6
Compare

Smollan Group

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