Upload Button Icon Add office photos

Filter interviews by

Random Trees Data Analyst Interview Questions and Answers

Updated 17 Sep 2024

Interview questions from similar companies

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

I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Coalesce, SQL Order of Execution
  • Q2. Given a table with fields(id, name, salary, managerId) find out the managers who have atleast 5 reportees under him/her.
  • Ans. 

    Use SQL query to count number of reportees for each manager and filter out those with atleast 5 reportees.

    • Write a SQL query to count number of reportees for each manager using GROUP BY clause

    • Add HAVING clause to filter out managers with atleast 5 reportees

    • Example: SELECT managerId, COUNT(id) AS num_reportees FROM table_name GROUP BY managerId HAVING num_reportees >= 5

  • Answered by AI
  • Q3. How to manage large datasets in python
  • Ans. 

    Use libraries like pandas and dask to efficiently manage large datasets in Python.

    • Use pandas library for data manipulation and analysis.

    • Use dask library for parallel computing and out-of-core processing.

    • Optimize memory usage by loading data in chunks or using data types efficiently.

    • Consider using cloud services like AWS S3 or Google BigQuery for storing and processing large datasets.

  • Answered by AI
  • Q4. Name few of the commonly used python libraries used by DA
  • Ans. 

    Some commonly used Python libraries for Data Analysts are Pandas, NumPy, Matplotlib, and Scikit-learn.

    • Pandas - used for data manipulation and analysis

    • NumPy - used for numerical computing and working with arrays

    • Matplotlib - used for data visualization

    • Scikit-learn - used for machine learning and data mining

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nineleaps Technology Solutions Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Focus on basics of SQL, Python and practice tricky SQL interview questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 python question and 1 sql question for coding and rest were the mcqs based on sql and python.

Round 2 - Technical 

(2 Questions)

  • Q1. Python code was asked for checking the anagrams
  • Q2. Sql code asked to solve on screen share using various use cases like group by, having, count
Round 3 - Technical 

(2 Questions)

  • Q1. Python code was asked for swaping any number but without using python libraries
  • Q2. Sql code was asked using concepts of rank dense,rank, partition by
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Information Technology, Design and Manufacturing (IIITDM), Jabalpur and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

DURATION 1.3 HRS WITH REASONING AND 2 CODING QUESTION

Round 2 - Technical 

(2 Questions)

  • Q1. SQL QUESTION FIND N TH HIGHEST SALARY
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the Nth highest salary.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to specify the Nth highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT N,1

  • Answered by AI
  • Q2. SQL QUESTION PIVOT TABLE QUESTION

Skills evaluated in this interview

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

I was interviewed before Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What challenges have you encountered in addressing customer problems?
  • Q2. Product quality

Interview Preparation Tips

Interview preparation tips for other job seekers - Costomer problem solved
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Nov 2022. There were 2 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. Any question wtihtout i'm very honested and cearfully
  • Q2. My goal setting and my hobby ect.

Interview Preparation Tips

Topics to prepare for iMerit Data Analyst interview:
  • MS Office
  • typing
Interview preparation tips for other job seekers - so sumething that any qurees and outher formalitis

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

The aptitude test consists of MCQ on computer technicals , english, verbals, etc as like usual aptitude test. Also it includes 2-3 sql queries to solve as well as 1-2 coding questions with easy to medium level difficulty.

Round 3 - Technical 

(1 Question)

  • Q1. Technical round was around 1 hour. They had asked me the technical questions related to computer fundamentals like networking, DS, OOP, etc. Then he went on java code and their programming basics like adap...
Round 4 - HR 

(1 Question)

  • Q1. HR was the telephonic round for me. They just asked normal hr questions like intro, strengths, weakness, location preferences, technologies on which i had worked on etc. They have also gave me the CTC info...

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong.
More focus on SQL
Be confident on your answers. It's ok if you stuck in between . The interviwers are quite friendly to help you out there.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. 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

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. SQL Execution order
  • Q3. Coalesce function in SQL
  • Ans. 

    Coalesce function in SQL is used to return the first non-null value in a list of expressions.

    • Coalesce function takes multiple parameters and returns the first non-null value.

    • It is commonly used to handle null values in SQL queries.

    • Example: SELECT COALESCE(column_name, 'N/A') FROM table_name;

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic to Intermediate SQL Based questions
  • Q2. Basic to Intermediate Python Based questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

It was a test of 90 minutes containing almost every thing .Quantitative+Logical+Computer fundamentals+2 coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thouroughly for aptitude

Random Trees Interview FAQs

How many rounds are there in Random Trees Data Analyst interview?
Random Trees interview process usually has 1 rounds. The most common rounds in the Random Trees interview process are One-on-one Round.

Tell us how to improve this page.

Random Trees Data Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Random Trees Data Analyst Salary
based on 4 salaries
₹2.4 L/yr - ₹18 L/yr
58% more than the average Data Analyst Salary in India
View more details
Data Engineer
28 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Data Scientist
16 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Software Developer
6 salaries
unlock blur

₹4 L/yr - ₹10.6 L/yr

Associate Software Engineer
6 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Senior Data Engineer
5 salaries
unlock blur

₹12.3 L/yr - ₹34 L/yr

Explore more salaries
Compare Random Trees with

Greenply

4.0
Compare

CenturyPly

3.8
Compare

Kajaria Ceramics

4.1
Compare

Somany Ceramics

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