Upload Button Icon Add office photos
Engaged Employer

i

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

Blackstraw AI Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Blackstraw AI Interview Questions and Answers

Updated 19 May 2025
Popular Designations

18 Interview questions

A Software Engineer was asked 4mo ago
Q. What is the order of efficiency among MobileNet, DenseNet, and EfficientNet?
Ans. 

EfficientNet is the most efficient, followed by MobileNet and then DenseNet.

  • EfficientNet is the most efficient among the three models due to its use of compound scaling and efficient building blocks.

  • MobileNet is less efficient than EfficientNet but more efficient than DenseNet, as it uses depthwise separable convolutions to reduce computational cost.

  • DenseNet is the least efficient among the three models, as it has...

View all Software Engineer interview questions
A Data Engineer was asked 9mo ago
Q. Given an array, remove the duplicate elements and return the array without duplicates.
Ans. 

Remove duplicates from array of strings

  • Use a Set data structure to store unique elements

  • Convert the array to a Set to remove duplicates

  • Convert the Set back to an array if needed

View all Data Engineer interview questions
A Senior Software Engineer was asked 11mo ago
Q. What is the packaging process in Android?
Ans. 

Packaging process in Android involves compiling the code, resources, and assets into an APK file for distribution.

  • Compile the Java code into .class files

  • Compile the resources (XML files, images, etc.) into a binary format

  • Package all the compiled files into an APK file using the Android Asset Packaging Tool (AAPT)

  • Sign the APK file with a private key for security

  • Align the APK file for optimization

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 11mo ago
Q. What is an MVVM design pattern?
Ans. 

MVVM is a design pattern that separates the user interface from the business logic and data model.

  • MVVM stands for Model-View-ViewModel

  • Model represents the data and business logic

  • View represents the user interface

  • ViewModel acts as an intermediary between the Model and View

  • MVVM helps in achieving separation of concerns and easier unit testing

View all Senior Software Engineer interview questions
A Data Scientist was asked 12mo ago
Q. What is Regularization in machine learning?
Ans. 

Regularization is a technique used in machine learning to prevent overfitting by adding a penalty term to the model's loss function.

  • Regularization helps to reduce the complexity of the model by penalizing large coefficients.

  • It adds a penalty term to the loss function, which discourages the model from fitting the training data too closely.

  • Common types of regularization include L1 (Lasso) and L2 (Ridge) regularizati...

View all Data Scientist interview questions
A Data Scientist was asked 12mo ago
Q. What is Model Quantization?
Ans. 

Model quantization is the process of reducing the precision of the weights and activations of a neural network model to improve efficiency.

  • Reduces memory usage and speeds up inference by using fewer bits to represent numbers

  • Can be applied to both weights and activations in a neural network model

  • Examples include converting 32-bit floating point numbers to 8-bit integers

View all Data Scientist interview questions
A Data Scientist was asked 12mo ago
Q. What is Data Leakage?
Ans. 

Data leakage occurs when information from outside the training dataset is used to create a model, leading to unrealistic performance.

  • Occurs when information that would not be available in a real-world scenario is used in the model training process

  • Can result in overly optimistic performance metrics for the model

  • Examples include using future data, target leakage, and data preprocessing errors

View all Data Scientist interview questions
Are these interview questions helpful?
A Data Scientist was asked 12mo ago
Q. What are some Deep Learning models?
Ans. 

Deep learning models include CNN, RNN, LSTM, GAN, and Transformer.

  • Convolutional Neural Networks (CNN) - used for image recognition tasks

  • Recurrent Neural Networks (RNN) - used for sequential data like time series

  • Long Short-Term Memory (LSTM) - a type of RNN with memory cells

  • Generative Adversarial Networks (GAN) - used for generating new data samples

  • Transformer - used for natural language processing tasks

View all Data Scientist interview questions
A Data Scientist was asked
Q. How do you choose an ML algorithm based on the given data?
Ans. 

ML algorithm selection is based on data characteristics, problem type, and desired outcomes.

  • Understand the problem type (classification, regression, clustering, etc.)

  • Consider the size and quality of the data

  • Evaluate the complexity of the model and interpretability requirements

  • Choose algorithms based on their strengths and weaknesses for the specific task

  • Experiment with multiple algorithms and compare their perform...

View all Data Scientist interview questions
A Senior Data Scientist was asked
Q. What is the difference between regression and classification algorithms?
Ans. 

Regression predicts continuous values, while classification predicts discrete values.

  • Regression algorithms predict continuous values, such as predicting house prices based on features like size and location.

  • Classification algorithms predict discrete values, such as classifying emails as spam or not spam based on content.

  • Regression algorithms include linear regression, polynomial regression, and support vector regr...

View all Senior Data Scientist interview questions

Blackstraw AI Interview Experiences

13 interviews found

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

I appeared for an interview before Feb 2023.

Round 1 - Technical 

(5 Questions)

  • Q1. 1. difference between list & tuple 2. describe your day-to-day work 3. describe your favourite project
  • Ans. 

    List is mutable, tuple is immutable. Day-to-day work involves data analysis and modeling. Favorite project involved developing a predictive analytics model.

    • List can be modified after creation, tuple cannot

    • List uses square brackets [], tuple uses parentheses ()

    • Day-to-day work includes data cleaning, exploratory data analysis, model building, and communication of results

    • Favorite project involved collecting and analyzing ...

  • Answered by AI
  • Q2. How does your day look like
  • Q3. Your favourite project
  • Q4. Difference between regression & classification based algorithms
  • Ans. 

    Regression predicts continuous values, while classification predicts discrete values.

    • Regression algorithms predict continuous values, such as predicting house prices based on features like size and location.

    • Classification algorithms predict discrete values, such as classifying emails as spam or not spam based on content.

    • Regression algorithms include linear regression, polynomial regression, and support vector regressio...

  • Answered by AI
  • Q5. Difference between RNN & CNN
  • Ans. 

    RNN is used for sequential data like time series, while CNN is used for spatial data like images.

    • RNN processes sequential data by maintaining memory of past inputs, suitable for time series forecasting.

    • CNN is designed for spatial data like images, using filters to extract features and patterns.

    • RNN is good for text data analysis, language translation, and speech recognition.

    • CNN is commonly used in image recognition, obj...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They ask generally about yourself and your experience background
Round 2 - Technical 

(3 Questions)

  • Q1. Most of the question related to NLP.
  • Q2. What is the order of efficiency among MobileNet, DenseNet, and EfficientNet?
  • Ans. 

    EfficientNet is the most efficient, followed by MobileNet and then DenseNet.

    • EfficientNet is the most efficient among the three models due to its use of compound scaling and efficient building blocks.

    • MobileNet is less efficient than EfficientNet but more efficient than DenseNet, as it uses depthwise separable convolutions to reduce computational cost.

    • DenseNet is the least efficient among the three models, as it has a hi...

  • Answered by AI
  • Q3. Did they request me to write a lambda function in python? How handle the files using pandas
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. About the project that I have worked
  • Q2. Technical Experience
Round 2 - Technical 

(3 Questions)

  • Q1. Databinding in android
  • Ans. 

    Databinding in Android allows for easier connection between UI components and data sources.

    • Databinding eliminates the need for findViewById() calls in your code.

    • It allows for easier access to data in your layouts using data binding expressions.

    • Databinding can improve code readability and reduce boilerplate code.

    • Example:

  • Answered by AI
  • Q2. What is the packaging process in android
  • Ans. 

    Packaging process in Android involves compiling the code, resources, and assets into an APK file for distribution.

    • Compile the Java code into .class files

    • Compile the resources (XML files, images, etc.) into a binary format

    • Package all the compiled files into an APK file using the Android Asset Packaging Tool (AAPT)

    • Sign the APK file with a private key for security

    • Align the APK file for optimization

  • Answered by AI
  • Q3. What is an MVVM design pattern
  • Ans. 

    MVVM is a design pattern that separates the user interface from the business logic and data model.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the user interface

    • ViewModel acts as an intermediary between the Model and View

    • MVVM helps in achieving separation of concerns and easier unit testing

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Most of the question related to architecture and system design
Round 4 - One-on-one 

(1 Question)

  • Q1. Face to face interview with director

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process takes longer. it took 1 month for me.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Give a brief about yourself.
  • Ans. 

    I am a passionate data scientist with expertise in machine learning, statistics, and data visualization, eager to solve complex problems.

    • Educational Background: I hold a Master's degree in Data Science from XYZ University, where I focused on predictive analytics.

    • Technical Skills: Proficient in Python, R, SQL, and tools like TensorFlow and Tableau for data analysis and visualization.

    • Project Experience: Developed a machi...

  • Answered by AI
  • Q2. Salary Expectation and earliest joining date
Round 2 - Technical 

(6 Questions)

  • Q1. Brief about a project worked in the company.
  • Q2. What is Data Leakage?
  • Ans. 

    Data leakage occurs when information from outside the training dataset is used to create a model, leading to unrealistic performance.

    • Occurs when information that would not be available in a real-world scenario is used in the model training process

    • Can result in overly optimistic performance metrics for the model

    • Examples include using future data, target leakage, and data preprocessing errors

  • Answered by AI
  • Q3. What is Encoder Decoder? What is a Transformer model and explain its architecture?
  • Ans. 

    Encoder Decoder is a neural network architecture used for sequence-to-sequence tasks. Transformer model is a type of neural network architecture that relies entirely on self-attention mechanisms.

    • Encoder Decoder is commonly used in machine translation tasks where the input sequence is encoded into a fixed-length vector representation by the encoder and then decoded into the target sequence by the decoder.

    • Transformer mod...

  • Answered by AI
  • Q4. Name some Deep learning models?
  • Ans. 

    Deep learning models include CNN, RNN, LSTM, GAN, and Transformer.

    • Convolutional Neural Networks (CNN) - used for image recognition tasks

    • Recurrent Neural Networks (RNN) - used for sequential data like time series

    • Long Short-Term Memory (LSTM) - a type of RNN with memory cells

    • Generative Adversarial Networks (GAN) - used for generating new data samples

    • Transformer - used for natural language processing tasks

  • Answered by AI
  • Q5. What is Regularization in machine learning?
  • Ans. 

    Regularization is a technique used in machine learning to prevent overfitting by adding a penalty term to the model's loss function.

    • Regularization helps to reduce the complexity of the model by penalizing large coefficients.

    • It adds a penalty term to the loss function, which discourages the model from fitting the training data too closely.

    • Common types of regularization include L1 (Lasso) and L2 (Ridge) regularization.

    • Re...

  • Answered by AI
  • Q6. What is Model Quantization?
  • Ans. 

    Model quantization is the process of reducing the precision of the weights and activations of a neural network model to improve efficiency.

    • Reduces memory usage and speeds up inference by using fewer bits to represent numbers

    • Can be applied to both weights and activations in a neural network model

    • Examples include converting 32-bit floating point numbers to 8-bit integers

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Remove duplicates from array of strings

    • Use a Set data structure to store unique elements

    • Convert the array to a Set to remove duplicates

    • Convert the Set back to an array if needed

  • Answered by AI
  • Q2. Window function

Interview Preparation Tips

Interview preparation tips for other job seekers - although the interview went well but they did not even reply back

Skills evaluated in this interview

Junior Interview Questions & Answers

user image Shashank Kumar Dubey

posted on 10 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is CNN, what are the components?
  • Ans. 

    CNN, or Convolutional Neural Network, is a deep learning model primarily used for image processing and computer vision tasks.

    • Components include convolutional layers, pooling layers, and fully connected layers.

    • Convolutional layers apply filters to extract features from images.

    • Pooling layers reduce the dimensionality of feature maps, e.g., max pooling.

    • Fully connected layers connect every neuron from the previous layer to...

  • Answered by AI
  • Q2. DSA Question based on string and arrays
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. All about the technical knowledge of powerbi
  • Q2. Cardinality explanation?
  • Ans. 

    Cardinality refers to the uniqueness of values in a column or set of columns in a database table.

    • Cardinality is the number of unique values in a column or set of columns.

    • High cardinality means a column has many unique values, while low cardinality means few unique values.

    • For example, a column like 'employee_id' would have high cardinality, while a column like 'gender' would have low cardinality.

  • Answered by AI
  • Q3. Transformationprocess
Round 3 - One-on-one 

(1 Question)

  • Q1. About our personality questions

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How do you choose an ML algorithm basis the data given
  • Ans. 

    ML algorithm selection is based on data characteristics, problem type, and desired outcomes.

    • Understand the problem type (classification, regression, clustering, etc.)

    • Consider the size and quality of the data

    • Evaluate the complexity of the model and interpretability requirements

    • Choose algorithms based on their strengths and weaknesses for the specific task

    • Experiment with multiple algorithms and compare their performance

    • F...

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

(1 Question)

  • Q1. How do u optimise a ML model How good are you in coding with Python. Rate yourself
  • Ans. 

    To optimize a ML model, one can tune hyperparameters, feature engineering, cross-validation, ensemble methods, and regularization techniques.

    • Tune hyperparameters using techniques like grid search or random search

    • Perform feature engineering to create new features or select relevant features

    • Utilize cross-validation to evaluate model performance and prevent overfitting

    • Explore ensemble methods like bagging and boosting to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a great place for experience or highly qualified people. They just run with interns. And most people do not feel wanted in the office. This severely damages your confidence. Not an inclusive workplace. Women are there only in interns level. And No women in L or L-1. So again as women, we don't feel values.

Skills evaluated in this interview

Java Developer Interview Questions & Answers

user image Naveen Techn

posted on 22 Sep 2023

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

I applied via Naukri.com and was interviewed in Aug 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 - Coding Test 

Basic coding test with latest java tech stack

Round 3 - Technical 

(1 Question)

  • Q1. Java, java8, spring, springboot and microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - There is a systematic interview is going on in the company by talent acquisition team
Interview experience
4
Good
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 - One-on-one 

(2 Questions)

  • Q1. Challenges you faced and how you overcame
  • Ans. 

    Overcoming challenges as a Senior Program Manager

    • Managing conflicting priorities and tight deadlines

    • Building consensus among cross-functional teams

    • Adapting to changing project requirements

    • Resolving conflicts and mitigating risks

    • Implementing effective communication strategies

  • Answered by AI
  • Q2. How you manage Risks
  • Ans. 

    I manage risks by identifying, assessing, prioritizing, and mitigating them.

    • I identify risks by analyzing project requirements, stakeholder expectations, and potential obstacles.

    • I assess risks by evaluating their likelihood and impact on project objectives.

    • I prioritize risks by ranking them based on their severity and potential consequences.

    • I mitigate risks by developing and implementing risk response plans, such as co...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much to prepare if you already know the job. Be confident and all the best

Data Scientist Interview Questions & Answers

user image Hemanth Kumar

posted on 19 May 2025

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

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Transformers, CV techniques in detail
  • Ans. 

    Transformers are advanced neural networks for sequential data, while CV techniques enhance image processing and analysis.

    • Transformers use self-attention mechanisms to weigh the importance of different input parts, improving context understanding.

    • They excel in NLP tasks like translation (e.g., BERT, GPT) by processing entire sequences simultaneously.

    • Computer Vision (CV) techniques include Convolutional Neural Networks (...

  • Answered by AI
  • Q2. Basic ML concepts

Top trending discussions

View All
Interview Tips & Stories
5d (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 Blackstraw AI?
Ask anonymously on communities.

Blackstraw AI Interview FAQs

How many rounds are there in Blackstraw AI interview?
Blackstraw AI interview process usually has 2-3 rounds. The most common rounds in the Blackstraw AI interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Blackstraw AI interview?
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 Blackstraw AI. The most common topics and skills that interviewers at Blackstraw AI expect are Python, Machine Learning, Flask, Natural Language Processing and SQL.
What are the top questions asked in Blackstraw AI interview?

Some of the top questions asked at the Blackstraw AI interview -

  1. What is Encoder Decoder? What is a Transformer model and explain its architectu...read more
  2. What is the order of efficiency among MobileNet, DenseNet, and EfficientN...read more
  3. How do you choose an ML algorithm basis the data gi...read more
How long is the Blackstraw AI interview process?

The duration of Blackstraw AI interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 12 interview experiences

Difficulty level

Easy 10%
Moderate 90%

Duration

Less than 2 weeks 70%
2-4 weeks 30%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
Junglee Games Interview Questions
3.1
 • 34 Interviews
Ganit Inc Interview Questions
3.8
 • 26 Interviews
Ivanti Interview Questions
3.6
 • 19 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
View all

Blackstraw AI Reviews and Ratings

based on 47 reviews

3.8/5

Rating in categories

3.9

Skill development

3.5

Work-life balance

3.8

Salary

3.5

Job security

3.9

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 47 Reviews and Ratings
Data Scientist

Chennai

4-8 Yrs

Not Disclosed

Explore more jobs
Data Scientist
42 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Software Engineer
39 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Data Engineer
37 salaries
unlock blur

₹4.5 L/yr - ₹15 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹13 L/yr - ₹28 L/yr

Software Developer
11 salaries
unlock blur

₹6.1 L/yr - ₹11.8 L/yr

Explore more salaries
Compare Blackstraw AI with

JoulestoWatts Business Solutions

3.1
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.6
Compare

Innoplexus

4.0
Compare
write
Share an Interview