Upload Button Icon Add office photos
Engaged Employer

i

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

MiQ Digital Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MiQ Digital Analyst Interview Questions and Answers

Updated 2 Apr 2024

MiQ Digital Analyst Interview Experiences

3 interviews found

Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Mar 2024

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

Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2023

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!

Analyst Interview Questions Asked at Other Companies

asked in Capgemini
Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, you ... read more
asked in Deloitte
Q2. Reverse a Number Problem Statement Given an integer 'N', write a ... read more
Q3. A 10x10x10 cube is made up of 1x1x1 cubes. Its outer surface is p ... read more
Q4. Ninja and the Game of Words In this game, Ninja is provided with ... read more
Q5. Good old standard problem: Playing number game with your friend t ... read more

Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Apr 2024

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 questions from similar companies

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

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic Fibonacci and prime number questions.

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on your resume
  • Q2. Questions on summer internship
Round 2 - HR 

(2 Questions)

  • Q1. Awareness in general about trends
  • Q2. Company awareness
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Educational Qualification of yours
  • Ans. 

    Bachelor's degree in Economics from XYZ University

    • Bachelor's degree in Economics

    • Graduated from XYZ University

    • Specialized in macroeconomics

    • Completed coursework in statistics and econometrics

  • Answered by AI
  • Q2. Knowledge of Ind AS

Interview Preparation Tips

Interview preparation tips for other job seekers - no tips
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic coding question
  • Q2. About projects which were mentioned in resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Automation testing platforms
  • Q2. Java programs for list and strings
  • Ans. 

    Java programs for manipulating lists and strings.

    • Use ArrayList class for lists and String class for strings.

    • To add elements to a list: list.add(element);

    • To access elements in a list: list.get(index);

    • To concatenate strings: string1 + string2;

    • To find the length of a string: string.length();

  • Answered by AI

Skills evaluated in this interview

MiQ Digital Interview FAQs

How many rounds are there in MiQ Digital Analyst interview?
MiQ Digital interview process usually has 3 rounds. The most common rounds in the MiQ Digital interview process are Technical, Coding Test and Case Study.
How to prepare for MiQ Digital 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 MiQ Digital. The most common topics and skills that interviewers at MiQ Digital expect are Analytical, Analytics, Data Science, SQL and Analysis.
What are the top questions asked in MiQ Digital Analyst interview?

Some of the top questions asked at the MiQ Digital Analyst interview -

  1. Questions on SQL, R, Case st...read more
  2. Read about Programmatic advertis...read more
  3. SQL queries,Python,Pandas,Numy,MS Ex...read more

Tell us how to improve this page.

MiQ Digital Analyst Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
MiQ Digital Analyst Salary
based on 20 salaries
₹7 L/yr - ₹13.5 L/yr
70% more than the average Analyst Salary in India
View more details

MiQ Digital Analyst Reviews and Ratings

based on 7 reviews

1.3/5

Rating in categories

1.6

Skill development

1.4

Work-life balance

2.2

Salary

1.7

Job security

1.8

Company culture

1.9

Promotions

1.3

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
29 salaries
unlock blur

₹11 L/yr - ₹16 L/yr

Data Analyst
24 salaries
unlock blur

₹6.5 L/yr - ₹17.2 L/yr

Business Analyst
21 salaries
unlock blur

₹9 L/yr - ₹14.5 L/yr

Analyst
20 salaries
unlock blur

₹7 L/yr - ₹13.5 L/yr

Data Scientist
20 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Explore more salaries
Compare MiQ Digital with

Affle

3.2
Compare

InMobi

3.4
Compare

Komli Media

4.0
Compare

Deloitte Digital

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