Upload Button Icon Add office photos
Engaged Employer

i

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

UST Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 4.2k Reviews

Filter interviews by

UST Associate Data Analyst Interview Questions and Answers

Updated 11 Oct 2022

UST Associate Data Analyst Interview Experiences

1 interview found

I applied via campus placement at Jadavpur University and was interviewed before Oct 2021. There were 3 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 - Technical 

(1 Question)

  • Q1. Questions related to MS Excel, SQL and Renewable Energy
Round 3 - HR 

(1 Question)

  • Q1. Family background, previous work experience, last CTC, relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for MS Excel, SQL and Renewable Energy related topics thoroughly.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL functions and scenario based questions
Round 2 - Technical 

(1 Question)

  • Q1. SQL and Data warehousing questions of difficulty level 3/5
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions which contained behavioral round

Interview Preparation Tips

Topics to prepare for Optum Global Solutions Associate Data Analyst interview:
  • SQL
  • Pythone
  • Power BI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Jan 2023.

Round 1 - Aptitude Test 

General aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. About company, goals, about yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

NER training using deep learning

Round 2 - Technical 

(2 Questions)

  • Q1. Describe the approach taken for assignment
  • Ans. 

    I approach assignments by breaking them down into smaller tasks, setting deadlines, and regularly checking progress.

    • Break down the assignment into smaller tasks to make it more manageable

    • Set deadlines for each task to stay on track

    • Regularly check progress to ensure everything is on schedule

    • Seek feedback from colleagues or supervisors to improve the quality of work

  • Answered by AI
  • Q2. Scenario based questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Assignment 

They gave a span of 3 days to build an AI-powered webapp

Round 2 - One-on-one 

(2 Questions)

  • Q1. How would you go about learning a new skill
  • Q2. Experience in cloud technologies
  • Ans. 

    I have experience working with cloud technologies such as AWS, Azure, and Google Cloud Platform.

    • Experience in setting up and managing virtual machines, storage, and networking in cloud environments

    • Knowledge of cloud services like EC2, S3, RDS, and Lambda

    • Experience with cloud-based data processing and analytics tools like AWS Glue and Google BigQuery

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Project details and challenges faced in the project
  • Ans. 

    Developed a predictive model for customer churn in a telecom company

    • Collected and cleaned customer data from various sources

    • Performed exploratory data analysis to identify key factors influencing churn

    • Built and fine-tuned machine learning models to predict customer churn

    • Challenges included imbalanced data, feature engineering, and model interpretability

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thoroughly prepared with your projects with their details nd skills on your resume

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(15 Questions)

  • Q1. Extract only India Players from dictionary (using list comprehension) CSK = {"Dhoni" : "India", "Du Plessis" : "South Africa", "RituRaj": "India", "Peterson" : "England", "Lara" : "West Indies"}
  • Ans. 

    Extract India players from a dictionary using list comprehension

    • Use list comprehension to filter out players with nationality as 'India'

    • Create a new list with only the India players

    • Example: [player for player, nationality in CSK.items() if nationality == 'India']

  • Answered by AI
  • Q2. Find Common Elements in three lists using sets arr1 = [1,5,10,20,40,80,100] arr2 = [6,7,20,80,100] arr3 = [3,4,15,20,30,70,80,120]
  • Ans. 

    Use sets to find common elements in three lists.

    • Convert the lists to sets for efficient comparison.

    • Use the intersection method to find common elements.

    • Return the common elements as a set or list.

  • Answered by AI
  • Q3. Check if you found any error in the below code: school_name = 'ABC School' def __init__(self, name, roll_no): self.name = name self.roll_no = roll_no def show(self)" print('Ins...
  • Q4. How do you print the 3, 5 and 7th row in a database (Python - use Pandas)
  • Ans. 

    Printing specific rows from a database using Pandas in Python

    • Use Pandas library to read the database into a DataFrame

    • Use iloc method to select specific rows by index

    • Print the selected rows

  • Answered by AI
  • Q5. Split Dataset in train, test and validation (import library and split dataset)
  • Ans. 

    Use scikit-learn library to split dataset into train, test, and validation sets

    • Import train_test_split from sklearn.model_selection

    • Specify test_size and validation_size when splitting the dataset

    • Example: X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

  • Answered by AI
  • Q6. Print Unique values in the dataset and delete the duplicate rows (SQL)
  • Ans. 

    Use DISTINCT keyword to print unique values and DELETE with a subquery to remove duplicate rows.

    • Use SELECT DISTINCT column_name FROM table_name to print unique values.

    • Use DELETE FROM table_name WHERE row_id NOT IN (SELECT MAX(row_id) FROM table_name GROUP BY column_name) to delete duplicate rows.

  • Answered by AI
  • Q7. Print rows where a certain criterion is met (ex - in a dataset of employees select the ones whose salary is greater than 100000 - in SQL)
  • Ans. 

    Use SQL SELECT statement with WHERE clause to filter rows based on a specific criterion.

    • Use SELECT statement with WHERE clause to specify the criterion (ex: salary > 100000)

    • Example: SELECT * FROM employees WHERE salary > 100000;

    • Ensure proper syntax and column names are used in the query

  • Answered by AI
  • Q8. Print rows with the second highest criterion value without using offset function in SQL
  • Ans. 

    Use subquery to find rows with second highest criterion value in SQL without using offset function.

    • Use a subquery to find the maximum criterion value

    • Then use another subquery to find the maximum value that is less than the maximum value found in the first subquery

    • Finally, select rows with the second highest criterion value

  • Answered by AI
  • Q9. Print rows with the same set of values in column (these are not duplicates row - just the duplicates values in a column)
  • Ans. 

    Print rows with the same set of values in a column

    • Identify unique sets of values in the column

    • Group rows based on these unique sets of values

    • Print out the rows for each unique set of values

  • Answered by AI
  • Q10. Difference between Power BI and Tableau
  • Ans. 

    Power BI is a Microsoft product focused on business intelligence and data visualization, while Tableau is a standalone data visualization tool.

    • Power BI is more user-friendly and integrates well with other Microsoft products.

    • Tableau is known for its powerful data visualization capabilities and flexibility in creating complex visualizations.

    • Power BI is often preferred by organizations already using Microsoft products, wh...

  • Answered by AI
  • Q11. Limitations of Power BI and Tableau
  • Ans. 

    Power BI and Tableau have limitations in terms of data connectivity, customization, and pricing.

    • Limited data connectivity options compared to other tools

    • Limited customization capabilities for advanced analytics

    • High pricing for enterprise-level features

    • Tableau has better visualization capabilities but can be more complex to use

    • Power BI is more user-friendly but may lack certain advanced features

  • Answered by AI
  • Q12. What are the types of regression models, name them and explain them
  • Ans. 

    Types of regression models include linear regression, logistic regression, polynomial regression, ridge regression, and lasso regression.

    • Linear regression: used to model the relationship between a dependent variable and one or more independent variables.

    • Logistic regression: used for binary classification problems, where the output is a probability value between 0 and 1.

    • Polynomial regression: fits a curve to the data by...

  • Answered by AI
  • Q13. Difference in Linear and Logistic Regression
  • Ans. 

    Linear regression is used for continuous variables, while logistic regression is used for binary outcomes.

    • Linear regression predicts continuous outcomes, while logistic regression predicts binary outcomes.

    • Linear regression uses a linear equation to model the relationship between the independent and dependent variables.

    • Logistic regression uses the logistic function to model the probability of a binary outcome.

    • Linear reg...

  • Answered by AI
  • Q14. Difference in Random Forest and Decision Tree
  • Ans. 

    Random Forest is an ensemble method using multiple decision trees, while Decision Tree is a single tree-based model.

    • Random Forest is a collection of decision trees that are trained on random subsets of the data.

    • Decision Tree is a single tree structure that makes decisions by splitting the data based on features.

    • Random Forest reduces overfitting by averaging the predictions of multiple trees.

    • Decision Tree can be prone t...

  • Answered by AI
  • Q15. What is ETL and what are the types or examples of ETL tools
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process of extracting data from various sources, transforming it into a usable format, and loading it into a target database.

    • ETL tools include Informatica PowerCenter, Talend, Apache Nifi, Microsoft SQL Server Integration Services (SSIS), and IBM InfoSphere DataStage.

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

    • Transform: Data is cl...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kyndryl Senior Data Scientist interview:
  • Python
  • Pandas
  • Power Bi
  • Tableau
  • scikit
  • SQL
  • matplotlib
Interview preparation tips for other job seekers - Be genuine about how much you know. Interviewer will ask to introduce candidates and will ask how much they know about Data Science and how much does the candidate rank themselves on a scale of 10 in Python & SQL
JD does mention about TensorFlow and R, but those languages are not important and are only an advantage to the candidate's profile. Mainly the interviewer will be looking for someone who has a decent programming skill and knows about regression models which is very important.
There will be 2 Interviewers one of them will be asking Python & Regression model questions and the other one SQL ones along with Power BI and Tableau overview

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in May 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. What is maths and stats
  • Ans. 

    Maths and stats refer to the study of mathematical concepts and statistical methods for analyzing data.

    • Maths involves the study of numbers, quantities, shapes, and patterns.

    • Stats involves collecting, analyzing, interpreting, and presenting data.

    • Maths is used to solve equations, calculate probabilities, and model real-world phenomena.

    • Stats is used to make informed decisions, draw conclusions, and test hypotheses.

    • Both ma...

  • Answered by AI
Round 2 - Coding Test 

Confusion matrix what are your job rolls explain me Gradient boosting algorithm?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very serious on every answer
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Asked the question about ml and basic python questions

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

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. Basics of Python 2. Basics of ML like supervised and unsupervised learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough on basics and current job role
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 - Coding Test 

Basic DP, Array Questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Resume Walkthrough and Discussion, Medium level coding questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with Manager
Round 5 - HR 

(1 Question)

  • Q1. Normal HR round

UST Interview FAQs

How many rounds are there in UST Associate Data Analyst interview?
UST interview process usually has 3 rounds. The most common rounds in the UST interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
View all
UST Associate Data Analyst Salary
based on 4 salaries
₹6 L/yr - ₹16 L/yr
38% more than the average Associate Data Analyst Salary in India
View more details

UST Associate Data Analyst Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
2k salaries
unlock blur

₹2.5 L/yr - ₹12.2 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹6.5 L/yr - ₹26 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.7 L/yr - ₹14.9 L/yr

System Analyst
1.2k salaries
unlock blur

₹6.5 L/yr - ₹22.6 L/yr

Senior Software Developer
1.1k salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Explore more salaries
Compare UST with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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