Upload Button Icon Add office photos

Filter interviews by

Accenture Jr. Data Scientist Interview Questions and Answers for Experienced

Updated 26 Feb 2024

Accenture Jr. Data Scientist Interview Experiences for Experienced

1 interview found

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different supervised models used
  • Ans. 

    Supervised models include linear regression, logistic regression, decision trees, random forests, support vector machines, and neural networks.

    • Linear regression: used for predicting continuous outcomes

    • Logistic regression: used for binary classification

    • Decision trees: used for classification and regression tasks

    • Random forests: ensemble method using multiple decision trees

    • Support vector machines: used for classification ...

  • Answered by AI
  • Q2. Linear regression, logistic regression, decision tree
Round 2 - HR 

(1 Question)

  • Q1. What are the salary expectations

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Sep 2023. 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 - Coding Test 

Normal there is not advance requirment

Round 3 - HR 

(5 Questions)

  • Q1. Will you work will less amount package
  • Q2. You wouldn't get any travel cost?
  • Q3. What about machine learning
  • Ans. 

    Machine learning is a branch of artificial intelligence that focuses on developing algorithms and models that can learn from and make predictions or decisions based on data.

    • Machine learning involves training algorithms to learn patterns from data and make predictions or decisions.

    • It can be supervised, unsupervised, or semi-supervised learning.

    • Examples include recommendation systems, image recognition, and natural langu

  • Answered by AI
  • Q4. Tellm me about any cloud platform
  • Ans. 

    A cloud platform is a service that allows users to store, manage, and process data remotely.

    • Cloud platforms provide scalable and flexible storage solutions

    • They offer various services such as computing power, databases, and analytics tools

    • Examples include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform

  • Answered by AI
  • Q5. Telll me about pointer
  • Ans. 

    A pointer is a variable that stores the memory address of another variable.

    • Pointers are used to access and manipulate memory directly.

    • They are commonly used in programming languages like C and C++.

    • Example: int *ptr; // declaring a pointer variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing They will only look for people with less package.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Gave one easy question and asked what will be the output
  • Q2. Leetcode 2 sum question

Interview Preparation Tips

Interview preparation tips for other job seekers - I was pretty much sure that I would pass L1 round and hoping for L2 round. I was interviewing for Generative AI Engineer. It was full 1 hr. The interviewer was less experienced than me. He asked me about my current work and focused more on previous work. I gave 80% correct answers and still did not make it. Don't know what they were expecting from me. Then I thought, maybe they are just taking the interview for the name sake. Sometimes, rejections are baseless.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Deep questions about Machine learning, Deep learning, Generative AI, the working of transformers etc.
Round 2 - Technical 

(1 Question)

  • Q1. Deep questions about Machine learning and deep learning with projects done. This was a client round.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, project discussion, why change? Why Wipro
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Explain XGBoost algoritm
  • Ans. 

    XGBoost is a powerful machine learning algorithm known for its speed and performance in handling large datasets.

    • XGBoost stands for eXtreme Gradient Boosting, which is an implementation of gradient boosting machines.

    • It is widely used in machine learning competitions and is known for its speed and performance.

    • XGBoost uses a technique called boosting, where multiple weak learners are combined to create a strong learner.

    • It...

  • Answered by AI
  • Q2. XgBoost algorithm has 10-20 features. How are the splits decided, on which feature are they going to be divided?
  • Ans. 

    XgBoost algorithm uses a greedy approach to determine splits based on feature importance.

    • XgBoost algorithm calculates the information gain for each feature to determine the best split.

    • The feature with the highest information gain is chosen for the split.

    • This process is repeated recursively for each node in the tree.

    • Features can be split based on numerical values or categories.

    • Example: If a feature like 'age' has the hi...

  • Answered by AI
  • Q3. Do you have any experience on cloud platform?
  • Ans. 

    Yes, I have experience working on cloud platforms such as AWS and Google Cloud.

    • Experience with AWS services like S3, EC2, and Redshift

    • Familiarity with Google Cloud services like BigQuery and Compute Engine

    • Utilized cloud platforms for data storage, processing, and analysis

  • Answered by AI
  • Q4. What is entropy, information gain?
  • Ans. 

    Entropy is a measure of randomness or uncertainty in a dataset, while information gain is the reduction in entropy after splitting a dataset based on a feature.

    • Entropy is used in decision tree algorithms to determine the best feature to split on.

    • Information gain measures the effectiveness of a feature in classifying the data.

    • Higher information gain indicates that a feature is more useful for splitting the data.

    • Entropy ...

  • Answered by AI
  • Q5. What is hypothesis testing?
  • Ans. 

    Hypothesis testing is a statistical method used to make inferences about a population based on sample data.

    • Hypothesis testing involves formulating a null hypothesis and an alternative hypothesis.

    • The null hypothesis is assumed to be true until there is enough evidence to reject it.

    • Statistical tests are used to determine the likelihood of observing the data if the null hypothesis is true.

    • The p-value is used to determine ...

  • Answered by AI
  • Q6. Explain precision and recall, when are they used in which scenario?
  • Ans. 

    Precision and recall are metrics used in evaluating the performance of classification models.

    • Precision measures the accuracy of positive predictions, while recall measures the ability of the model to find all positive instances.

    • Precision = TP / (TP + FP)

    • Recall = TP / (TP + FN)

    • Precision is important when false positives are costly, while recall is important when false negatives are costly.

    • For example, in a spam email de...

  • Answered by AI
  • Q7. What is data imbalance?
  • Ans. 

    Data imbalance refers to unequal distribution of classes in a dataset, where one class has significantly more samples than others.

    • Data imbalance can lead to biased models that favor the majority class.

    • It can result in poor performance for minority classes, as the model may struggle to accurately predict them.

    • Techniques like oversampling, undersampling, and using different evaluation metrics can help address data imbala...

  • Answered by AI
  • Q8. What is SMOTE? Do you have any experience working on Time Series? Code analysis of global variable?
  • Ans. 

    SMOTE stands for Synthetic Minority Over-sampling Technique, used to balance imbalanced datasets by generating synthetic samples.

    • SMOTE is commonly used in machine learning to address class imbalance by creating synthetic samples of the minority class.

    • It works by generating new instances of the minority class by interpolating between existing instances.

    • SMOTE is particularly useful in scenarios where the minority class i...

  • Answered by AI
  • Q9. Find 5th highest salary in every department. What are window functions Difference between union and union all Difference between delete and truncate.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well. Go through the top questions asked for SQL,Python,Data Science.
Well versed with resume projects and concepts used in it.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between supervised and unsupervised learning
  • Ans. 

    Supervised learning uses labeled data to train a model, while unsupervised learning uses unlabeled data.

    • Supervised learning requires a target variable for training the model.

    • Examples of supervised learning include classification and regression.

    • Unsupervised learning finds patterns and relationships in data without a target variable.

    • Examples of unsupervised learning include clustering and dimensionality reduction.

  • Answered by AI
  • Q2. What is sigmoid function
  • Ans. 

    Sigmoid function is a mathematical function that maps any real value to a value between 0 and 1.

    • Used in machine learning for binary classification problems to produce probabilities

    • Commonly used in logistic regression

    • Has an S-shaped curve

    • Equation: f(x) = 1 / (1 + e^(-x))

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2023. There were 3 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 

Logical reasoning, current affairs, numericals

Round 3 - One-on-one 

(1 Question)

  • Q1. Genuinely HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Always make an eye contact with the Interviewer for better confidence.

Data Scientist Interview Questions & Answers

IBM user image Rohit Mishra

posted on 13 May 2024

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

I applied via Company Website and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Can you discuss one of your project in detail and why have you chosen those specific model to start with?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of Machine Learning, Gradient Descent, Trade-off, etc.

Data Scientist Interview Questions & Answers

Capgemini user image Theerthaprasad K V

posted on 8 Jun 2022

I applied via Approached by Company and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How do you handle outliers? How to handle imbalance dataset? Feature engineering techniques?
  • Ans. 

    Outliers can be handled by removing, transforming or imputing them. Imbalanced datasets can be handled by resampling techniques. Feature engineering involves creating new features from existing ones.

    • Outliers can be removed using statistical methods like z-score or IQR.

    • Outliers can be transformed using techniques like log transformation or box-cox transformation.

    • Outliers can be imputed using techniques like mean imputat...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1. Explain the project in detail 2. Explain me your 5 favourite models 3. Questions on probability
Round 3 - HR 

(1 Question)

  • Q1. It was a HR round and HR has asked me what's your salary expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. The first round was technical. They asked me more about machine learning algorithms and the project I have worked on.
2. Second round was managerial round. Manager has asked me probability questions, questions related to random forest and some statistical concepts.
3. Third round was the HR round.

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Jr. Data Scientist interview for experienced candidates?
Accenture interview process for experienced candidates usually has 2 rounds. The most common rounds in the Accenture interview process for experienced candidates are HR and Technical.
How to prepare for Accenture Jr. Data Scientist interview for experienced candidates?
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 Accenture. The most common topics and skills that interviewers at Accenture expect are Artificial Intelligence, Azure, Business process, Consulting and Data Analysis.
What are the top questions asked in Accenture Jr. Data Scientist interview for experienced candidates?

Some of the top questions asked at the Accenture Jr. Data Scientist interview for experienced candidates -

  1. What are the different supervised models u...read more
  2. linear regression, logistic regression, decision t...read more
  3. ML techniques, statistics behind them and questions about your proj...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Accenture interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Accenture Jr. Data Scientist Salary
based on 35 salaries
₹2 L/yr - ₹11.5 L/yr
8% more than the average Jr. Data Scientist Salary in India
View more details

Accenture Jr. Data Scientist 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 & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.1k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.1k salaries
unlock blur

₹7 L/yr - ₹25.1 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer
17.6k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview