Upload Button Icon Add office photos

Filter interviews by

Mep Media Junior Data Analyst Interview Questions and Answers

Updated 4 Jan 2025

21 Interview questions

A Junior Data Analyst was asked 5mo ago
Q. What are the differences between a cross join and an outer join?
Ans. 

Cross join produces Cartesian product of two tables, while outer join combines rows from two tables based on a related column.

  • Cross join returns all possible combinations of rows from two tables.

  • Outer join combines rows from two tables based on a related column, including unmatched rows with NULL values.

  • Example: Cross join - SELECT * FROM table1 CROSS JOIN table2

  • Example: Outer join - SELECT * FROM table1 LEFT JOIN...

A Junior Data Analyst was asked 5mo ago
Q. What is the difference between 'WHERE' and 'HAVING' clauses?
Ans. 

WHERE clause is used to filter rows before grouping, while HAVING clause is used to filter groups after grouping.

  • WHERE clause is used with SELECT, UPDATE, DELETE statements to filter rows based on a condition

  • HAVING clause is used with SELECT statement to filter groups based on a condition

  • WHERE clause is applied before the data is grouped, while HAVING clause is applied after the data is grouped

  • Example: SELECT * FR...

Junior Data Analyst Interview Questions Asked at Other Companies

asked in Morningstar
Q1. What is the main difference between data mining and data analysis ... read more
asked in Mep Media
Q2. How do you use `PARTITION BY` and `ORDER BY` in window functions?
asked in Mep Media
Q3. What is SQL, and why is it important in data analytics?
asked in Amber
Q4. When joining two tables, how does the number of rows differ with ... read more
asked in Cognizant
Q5. What is the difference between an Adverse Event and an Adverse Re ... read more
A Junior Data Analyst was asked 5mo ago
Q. Explain Row-level Security and its four roles in Power BI.
Ans. 

Row-level security in Power BI allows restricting access to specific rows of data based on user roles.

  • Row-level security in Power BI is used to control access to data at the row level based on user roles.

  • Roles in Power BI define the level of access users have to data and reports.

  • Examples of roles in Power BI include Admin, Analyst, Viewer, and Contributor.

  • By setting up row-level security, users can only see the da...

A Junior Data Analyst was asked 5mo ago
Q. What is the difference between UNION and UNION ALL?
Ans. 

Union combines and removes duplicates, Union all combines without removing duplicates.

  • Union combines result sets and removes duplicates

  • Union all combines result sets without removing duplicates

  • Union is slower than Union all as it involves removing duplicates

  • Union all is faster than Union as it does not remove duplicates

A Junior Data Analyst was asked 5mo ago
Q. What are Bookmarks, and what are their uses?
Ans. 

Bookmarks are digital markers used to quickly navigate to specific sections or pages within a document or website.

  • Bookmarks allow users to easily access important or frequently visited sections of a document or website.

  • They are commonly used in web browsers to save specific web pages for quick access.

  • Bookmarks can also be used in PDF documents to mark important pages or sections for easy reference.

A Junior Data Analyst was asked 5mo ago
Q. What is a join?
Ans. 

Join is a SQL operation used to combine rows from two or more tables based on a related column between them.

  • Join is used to retrieve data from multiple tables based on a related column.

  • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

A Junior Data Analyst was asked 5mo ago
Q. Explain the difference between 'INNER JOIN', 'LEFT JOIN', 'RIGHT JOIN', and 'FULL OUTER JOIN'.
Ans. 

Different types of SQL joins used to combine rows from two or more tables based on a related column between them.

  • INNER JOIN: Returns rows when there is at least one match in both tables.

  • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

  • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

  • FULL OUTER JOIN: Returns all rows when there is a ...

Are these interview questions helpful?
A Junior Data Analyst was asked 5mo ago
Q. What are facts and dimensions?
Ans. 

Facts are measurable data points, while dimensions provide context to the facts by categorizing and organizing them.

  • Facts are quantitative data that can be measured or counted.

  • Dimensions provide context to the facts by categorizing and organizing them.

  • In a sales database, the fact could be the total revenue generated, while dimensions could include product category, region, and time period.

A Junior Data Analyst was asked 5mo ago
Q. What is the difference between Append and Merge operations?
Ans. 

Append adds rows to a dataset, while Merge combines datasets based on a common key.

  • Append adds rows to the bottom of a dataset, increasing the number of observations.

  • Merge combines datasets based on a common key, such as a unique identifier or variable.

  • Appending is useful for adding new data, while merging is useful for combining related datasets.

  • Example: Appending a new month of sales data to an existing dataset....

A Junior Data Analyst was asked 5mo ago
Q. What is the difference between a duplicate and a reference?
Ans. 

Duplicate refers to an exact copy, while reference is a pointer to the original object.

  • Duplicate is a separate copy of the original data, while reference points to the original data.

  • Changing a duplicate does not affect the original, but changing a reference does.

  • Duplicates consume more memory than references.

  • Example: Duplicate - making a photocopy of a document. Reference - sharing a link to a document.

  • Example: Du...

Mep Media Junior Data Analyst Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(11 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Data Science and a passion for analyzing and interpreting data to drive business decisions.

    • Recent graduate with a degree in Data Science

    • Passionate about analyzing and interpreting data

    • Strong skills in statistical analysis and data visualization

    • Experience with programming languages such as Python and R

    • Completed internships in data analysis roles

  • Answered by AI
  • Q2. What is power Bi
  • Ans. 

    Power BI is a business analytics tool by Microsoft that provides interactive visualizations and business intelligence capabilities.

    • Developed by Microsoft

    • Allows users to create interactive visualizations and reports

    • Integrates with various data sources such as Excel, SQL databases, and cloud services

    • Enables data exploration and sharing insights with stakeholders

    • Offers features like dashboards, data connections, and data ...

  • Answered by AI
  • Q3. What is SQL
  • Ans. 

    SQL is a programming language used for managing and manipulating relational databases.

    • SQL stands for Structured Query Language

    • It is used to communicate with databases to perform tasks such as querying data, updating data, and creating tables

    • Common SQL commands include SELECT, INSERT, UPDATE, DELETE

    • Example: SELECT * FROM table_name WHERE condition;

  • Answered by AI
  • Q4. Hobbie and skills
  • Q5. What is ETL
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process used to extract data from various sources, transform it into a consistent format, and load it into a data warehouse for analysis.

    • Extract: Data is extracted from multiple sources such as databases, files, APIs, etc.

    • Transform: Data is cleaned, standardized, and transformed into a consistent format suitable for analysis.

    • Load: The transformed data is loaded into a da...

  • Answered by AI
  • Q6. Type of keys
  • Ans. 

    Types of keys in data analysis include primary keys, foreign keys, and composite keys.

    • Primary key uniquely identifies each record in a table (e.g. customer ID)

    • Foreign key links two tables together (e.g. customer ID in orders table)

    • Composite key consists of multiple columns to uniquely identify a record (e.g. combination of customer ID and order ID)

  • Answered by AI
  • Q7. What is join
  • Ans. 

    Join is a SQL operation used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q8. What is RLS
  • Q9. Cross join vs outer join
  • Ans. 

    Cross join produces Cartesian product of two tables, while outer join combines rows from two tables based on a related column.

    • Cross join returns all possible combinations of rows from two tables.

    • Outer join combines rows from two tables based on a related column, including unmatched rows with NULL values.

    • Example: Cross join - SELECT * FROM table1 CROSS JOIN table2

    • Example: Outer join - SELECT * FROM table1 LEFT JOIN tabl...

  • Answered by AI
  • Q10. What is fact & dimensions
  • Ans. 

    Facts are measurable data points, while dimensions provide context to the facts by categorizing and organizing them.

    • Facts are quantitative data that can be measured or counted.

    • Dimensions provide context to the facts by categorizing and organizing them.

    • In a sales database, the fact could be the total revenue generated, while dimensions could include product category, region, and time period.

  • Answered by AI
  • Q11. Explain the difference between `TRUNCATE`, `DELETE`, and `DROP` commands.
  • Ans. 

    TRUNCATE removes all rows from a table, DELETE removes specific rows, and DROP deletes the entire table structure.

    • TRUNCATE is faster than DELETE as it does not log individual row deletions.

    • DELETE is slower than TRUNCATE as it logs each row deletion.

    • DROP removes the entire table structure along with all data.

    • TRUNCATE and DELETE can be rolled back, but DROP cannot be rolled back.

    • Example: TRUNCATE table_name;

    • Example: DELE...

  • Answered by AI
Round 2 - Technical 

(15 Questions)

  • Q1. What is SQL, and why is it important in data analytics
  • Ans. 

    SQL is a programming language used for managing and analyzing data in relational databases.

    • SQL stands for Structured Query Language

    • It is used to retrieve, manipulate, and analyze data stored in relational databases

    • SQL is important in data analytics as it allows analysts to query databases to extract relevant information for analysis

    • It helps in filtering, sorting, and aggregating data to generate insights

    • Examples of SQL...

  • Answered by AI
  • Q2. Explain the difference between 'INNER JOIN', 'LEFT JOIN`, `RIGHT JOIN`, and `FULL OUTER JOIN`.
  • Ans. 

    Different types of SQL joins used to combine rows from two or more tables based on a related column between them.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL OUTER JOIN: Returns all rows when there is a match...

  • Answered by AI
  • Q3. What is the difference between 'WHERE` and 'HAVING` clauses
  • Ans. 

    WHERE clause is used to filter rows before grouping, while HAVING clause is used to filter groups after grouping.

    • WHERE clause is used with SELECT, UPDATE, DELETE statements to filter rows based on a condition

    • HAVING clause is used with SELECT statement to filter groups based on a condition

    • WHERE clause is applied before the data is grouped, while HAVING clause is applied after the data is grouped

    • Example: SELECT * FROM ta...

  • Answered by AI
  • Q4. Difference between Append and Merged
  • Ans. 

    Append adds rows to a dataset, while Merge combines datasets based on a common key.

    • Append adds rows to the bottom of a dataset, increasing the number of observations.

    • Merge combines datasets based on a common key, such as a unique identifier or variable.

    • Appending is useful for adding new data, while merging is useful for combining related datasets.

    • Example: Appending a new month of sales data to an existing dataset. Merg...

  • Answered by AI
  • Q5. Row-level Security and 4 role in power Bi
  • Ans. 

    Row-level security in Power BI allows restricting access to specific rows of data based on user roles.

    • Row-level security in Power BI is used to control access to data at the row level based on user roles.

    • Roles in Power BI define the level of access users have to data and reports.

    • Examples of roles in Power BI include Admin, Analyst, Viewer, and Contributor.

    • By setting up row-level security, users can only see the data th...

  • Answered by AI
  • Q6. Schedule Refresh & Gateways
  • Q7. What are BookMarks, use of it
  • Ans. 

    Bookmarks are digital markers used to quickly navigate to specific sections or pages within a document or website.

    • Bookmarks allow users to easily access important or frequently visited sections of a document or website.

    • They are commonly used in web browsers to save specific web pages for quick access.

    • Bookmarks can also be used in PDF documents to mark important pages or sections for easy reference.

  • Answered by AI
  • Q8. Difference between Duplicate & Reference
  • Ans. 

    Duplicate refers to an exact copy, while reference is a pointer to the original object.

    • Duplicate is a separate copy of the original data, while reference points to the original data.

    • Changing a duplicate does not affect the original, but changing a reference does.

    • Duplicates consume more memory than references.

    • Example: Duplicate - making a photocopy of a document. Reference - sharing a link to a document.

    • Example: Duplica...

  • Answered by AI
  • Q9. Results of Left Join, Right Join and Cross Join
  • Ans. 

    Left Join includes all records from the left table and matching records from the right table. Right Join includes all records from the right table and matching records from the left table. Cross Join combines all records from both tables.

    • Left Join: Includes all records from the left table and matching records from the right table.

    • Right Join: Includes all records from the right table and matching records from the left t...

  • Answered by AI
  • Q10. What are Indexing, it's types and use of it
  • Ans. 

    Indexing is a technique used to optimize data retrieval in databases by creating indexes on columns.

    • Types of indexing include clustered and non-clustered indexes

    • Clustered indexes physically reorder the data in the table based on the index key

    • Non-clustered indexes create a separate structure to store the index key and a pointer to the actual data

    • Indexes are used to speed up data retrieval operations such as SELECT queri...

  • Answered by AI
  • Q11. Difference between Union & Union all
  • Ans. 

    Union combines and removes duplicates, Union all combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union all combines result sets without removing duplicates

    • Union is slower than Union all as it involves removing duplicates

    • Union all is faster than Union as it does not remove duplicates

  • Answered by AI
  • Q12. How to find 3rd Highest Salary, Marks
  • Ans. 

    To find the 3rd highest salary or marks, you can use SQL query with ORDER BY and LIMIT.

    • Use SQL query with ORDER BY to sort the salaries or marks in descending order

    • Use LIMIT 2,1 to skip the first two highest salaries or marks and get the third highest

  • Answered by AI
  • Q13. How do you use 'PARTITION BY` and `ORDER BY in window functions
  • Ans. 

    PARTITION BY is used to divide the result set into partitions, while ORDER BY is used to sort the rows within each partition in window functions.

    • PARTITION BY is used to group rows with the same values in specified columns

    • ORDER BY is used to sort the rows within each partition

    • Example: SELECT column1, column2, SUM(column3) OVER (PARTITION BY column1 ORDER BY column2) AS total FROM table_name

  • Answered by AI
  • Q14. Explain window functions like `ROW_NUMBER()`, `RANK()`, and `DENSE_RANK()`.
  • Ans. 

    Window functions like ROW_NUMBER(), RANK(), and DENSE_RANK() assign a unique number to each row based on specified criteria.

    • ROW_NUMBER() assigns a unique sequential integer starting from 1 to each row within a partition

    • RANK() assigns a unique rank to each row within a partition, with no gaps in ranking if there are ties

    • DENSE_RANK() assigns a unique rank to each row within a partition, with possible gaps in ranking if t...

  • Answered by AI
  • Q15. Workspace & App
Round 3 - HR 

(4 Questions)

  • Q1. What work did you find most difficult
  • Ans. 

    I found data cleaning and manipulation to be the most difficult part of my work.

    • Understanding and cleaning messy data sets

    • Manipulating data to fit the required format

    • Dealing with missing or inconsistent data

    • Creating new variables or features from existing data

    • Ensuring data quality and accuracy

  • Answered by AI
  • Q2. Why should we hire you
  • Ans. 

    I have a strong analytical background, excellent problem-solving skills, and a passion for data-driven decision making.

    • I have a degree in Statistics and experience with data analysis tools such as Python and SQL.

    • I have successfully completed projects where I analyzed large datasets to provide actionable insights.

    • I am detail-oriented and have a proven track record of delivering accurate and timely results.

  • Answered by AI
  • Q3. Where do you see yourself in 5 years
  • Ans. 

    In five years, I see myself as a Senior Data Analyst leading a team and working on more complex projects.

    • Advancing to a Senior Data Analyst role

    • Leading a team of junior analysts

    • Working on more complex and challenging projects

    • Continuing to learn and grow in the field of data analysis

  • Answered by AI
  • Q4. Salery discussion

Interview Preparation Tips

Topics to prepare for Mep Media Junior Data Analyst interview:
  • Power Bi
  • SQL
Interview preparation tips for other job seekers - Answer with patience and listen to the questions carefully, maintain confidence, be honest and don't get scared

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Mep Media?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Your past exp?

Junior Data Analyst Interview Questions Asked at Other Companies

asked in Morningstar
Q1. What is the main difference between data mining and data analysis ... read more
asked in Mep Media
Q2. How do you use `PARTITION BY` and `ORDER BY` in window functions?
asked in Mep Media
Q3. What is SQL, and why is it important in data analytics?
asked in Amber
Q4. When joining two tables, how does the number of rows differ with ... read more
asked in Cognizant
Q5. What is the difference between an Adverse Event and an Adverse Re ... read more

Interview Questionnaire 

2 Questions

  • Q1. Questions were mostly situations based.
  • Q2. Technical explanation is required

I applied via Walk-in and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Aptitude question
  • Q2. Interview panalam questions

Interview Preparation Tips

Interview preparation tips for other job seekers - How many rounds of interview and aptitude questions models

I applied via Walk-in and was interviewed before Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Tell us about your self ?
  • Q2. What you know about TCS?
  • Q3. What is your biggest achievement till now?
  • Q4. Do you have any weakness?
  • Q5. Any break between your study ?
  • Q6. How long you will serve for our company?
  • Q7. What you have decided for you further studies?
  • Q8. How you will be benefit for our company? Why we hire you?
  • Q9. Why you want to join TCS only?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Present your self formally. Answer every question in your words don't speak line you have read from somewhere.

I applied via Campus Placement and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1) What will be your future planning if you work in tcs company?

Interview Preparation Tips

Interview preparation tips for other job seekers - *If you go in the interview be confident about yourself and whatever you going to speak

*Make sure that you have to get trust of interviewer or hr that you need this job

*say something good quality that you have

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Name to types of diagram used in business analyst?
  • Ans. 

    Two types of diagrams used in business analysis are process flow diagrams and use case diagrams.

    • Process flow diagrams show the flow of activities and decisions in a process.

    • Use case diagrams show the interactions between actors and the system.

    • Both diagrams are used to analyze and improve business processes.

    • Process flow diagrams can be created using tools like Microsoft Visio.

    • Use case diagrams can be created using tools...

  • Answered by AI
  • Q2. What are extends?
  • Ans. 

    Extends is a keyword in object-oriented programming that allows a class to inherit properties and methods from another class.

    • Extends is used in inheritance to create a subclass that is a modified version of the parent class.

    • The subclass inherits all the properties and methods of the parent class and can also have its own unique properties and methods.

    • For example, a class Animal can be extended by a subclass Dog, which ...

  • Answered by AI
  • Q3. Define the use case model?
  • Ans. 

    Use case model is a visual representation of the interactions between users and a system.

    • Describes the steps a user takes to achieve a goal with a system

    • Identifies actors and their roles in the system

    • Shows the flow of events and possible alternate paths

    • Helps to identify requirements and potential issues

    • Example: Use case model for an online shopping system

    • Example: Use case model for a banking system

  • Answered by AI
  • Q4. What does UML stands for?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Recruitment Consultant and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1.  technical interview
  • Q2. What is pmp and how you will be defining it what BA will do and how they manage project
  • Ans. 

    PMP stands for Project Management Professional. It is a certification for project managers.

    • PMP is a globally recognized certification for project managers

    • It is offered by the Project Management Institute (PMI)

    • To become PMP certified, one must pass an exam and meet certain experience and education requirements

    • Business Analysts can work closely with project managers to ensure project success

    • BA's can assist with project p...

  • Answered by AI
  • Q3. Project management done by utilization of resources and best time management

Interview Preparation Tips

Interview preparation tips for other job seekers - be open to your answer and have basic do not go in technical point

Interview Questionnaire 

5 Questions

  • Q1. What is interview?
  • Q2. If you selected by the interviewers then firstly what you will do?
  • Ans. 

    I would prioritize understanding the team's goals, processes, and tools to align my contributions effectively.

    • Meet with my manager to discuss immediate priorities and expectations.

    • Schedule one-on-one meetings with team members to understand their roles and challenges.

    • Review existing documentation and reports to familiarize myself with ongoing projects.

    • Identify key stakeholders and establish communication channels for c...

  • Answered by AI
  • Q3. Before interview what type of stress loaded on your brain?
  • Q4. Ehat you will do with your first selary?
  • Ans. 

    I plan to save a portion, invest in professional development, and treat myself to a small reward.

    • Save a portion of the salary for future financial goals

    • Invest in professional development such as courses or certifications

    • Treat myself to a small reward or experience as a form of celebration

  • Answered by AI
  • Q5. When you join your first day at job then what is your responsibility.
  • Ans. 

    In my first job as a Business Analyst, I focused on gathering requirements, analyzing data, and supporting project management.

    • Conducted stakeholder interviews to gather business requirements, ensuring alignment with project goals.

    • Analyzed existing processes and identified areas for improvement, such as streamlining workflows to enhance efficiency.

    • Created detailed documentation, including business requirement documents ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i want to say only that when i started my job till end of job i doing my work with anthusiasam.

I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is our opinion About company
  • Ans. 

    The company stands out for its innovative approach and commitment to data-driven decision-making, fostering growth and efficiency.

    • Strong emphasis on data integrity and accuracy, ensuring reliable insights.

    • Innovative use of technology, such as AI and machine learning, to enhance data analysis.

    • Collaborative culture that encourages knowledge sharing among team members.

    • Commitment to continuous learning and professional dev...

  • Answered by AI
  • Q2. What is ur opinion indian economy
  • Q3. How to increase india economy
  • Ans. 

    To increase India's economy, focus on infrastructure development, education, and promoting entrepreneurship.

    • Invest in infrastructure development to improve connectivity and transportation

    • Promote education and skill development to create a more skilled workforce

    • Encourage entrepreneurship and innovation to create more job opportunities

    • Increase foreign investment and trade to boost the economy

    • Reduce corruption and bureauc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't fear, be free, say all the answers to all the questions

Mep Media Interview FAQs

How many rounds are there in Mep Media Junior Data Analyst interview?
Mep Media interview process usually has 3 rounds. The most common rounds in the Mep Media interview process are HR and Technical.
What are the top questions asked in Mep Media Junior Data Analyst interview?

Some of the top questions asked at the Mep Media Junior Data Analyst interview -

  1. What is SQL, and why is it important in data analyt...read more
  2. How do you use 'PARTITION BY` and `ORDER BY in window functi...read more
  3. What is the difference between 'WHERE` and 'HAVING` clau...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more
Compare Mep Media with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview