Upload Button Icon Add office photos

Filter interviews by

Random Trees Data Analyst Interview Questions and Answers

Updated 17 Sep 2024

Random Trees Data Analyst Interview Experiences

1 interview found

Data Analyst Interview Questions & Answers

user image Vamsi Krishna Kumar

posted on 17 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. SQL,Pandas, and Power BI

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Basic aptitude test with around 20-25 questions

Round 2 - Assignment 

A video assignment on a given topic

Round 3 - Technical 

(4 Questions)

  • Q1. Based on introduction
  • Q2. Question on excel
  • Q3. Question on SQL intermediate level
  • Q4. Basic array reversal question
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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Give a small Introduction about yourself
  • Q2. Why do you want to switch from your previous company ?
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

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
Data Engineer
29 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Data Scientist
15 salaries
unlock blur

₹3.5 L/yr - ₹14.5 L/yr

Software Developer
6 salaries
unlock blur

₹4 L/yr - ₹10.6 L/yr

Associate Software Engineer
6 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹6.7 L/yr - ₹16 L/yr

Explore more salaries
Compare Random Trees with

Greenply

3.9
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