Upload Button Icon Add office photos
Engaged Employer

i

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

Stellar Innovations Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 256 Reviews

Filter interviews by

Stellar Innovations Senior Analyst Interview Questions and Answers

Updated 15 Apr 2024

Stellar Innovations Senior Analyst Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Apr 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 

(1 Question)

  • Q1. Basic Us mortgage questions like full search,

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to take test orders,

Interview questions from similar companies

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

I was interviewed in Jul 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Walk me through your resume
  • Q2. What is entropy ? What is gini index? Give a real life example of derivative and second derivative. What is the difference between P-value and beta value? How do you handle imbalanced dataset? What is the ...
  • Ans. 

    Entropy is a measure of randomness or disorder in a system. Gini index is a measure of impurity in a dataset. Derivatives measure rate of change. P-value is the probability of observing a test statistic. Beta value is the coefficient in a regression model. Imbalanced datasets have unequal class distribution. Recall is the proportion of actual positives correctly identified. Precision is the proportion of predicted posi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with your fundamentals. The interviewer wants to know how you apply logic, and how clear you are in applying logic in real life scenarios

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Move all 0's to the end of the list
  • Ans. 

    Move all 0's to the end of the list in an array of strings

    • Iterate through the array and move all 0's to the end while maintaining the order of other elements

    • Use two pointers approach to swap 0's with non-zero elements

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jan 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 - Assessment 

(2 Questions)

  • Q1. 7 MCQ questions related to Data Science
  • Q2. 2 Coding questions related to Python
Round 3 - Coding Test 

They will give 2-3 Python coding questions related to List, Dictionary, String.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared for coding skills.

I applied via LinkedIn and was interviewed in Mar 2022. 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 - Coding Test 

1. Coding Test Conducted on Hackereath.
There were 10 MCQ each carrying 10 marks.
2 programming questions (40pts, 60pts)
Question were based on DP and Segment Tree.

Round 3 - Technical 

(4 Questions)

  • Q1. Q1. Implement python Collection Counter from Scratch.
  • Ans. 

    Implementing Python Collection Counter from Scratch

    • Create an empty dictionary to store the elements and their count

    • Iterate through the input list and add elements to the dictionary with their count

    • Return the dictionary

    • Example: input_list = ['apple', 'banana', 'apple', 'orange', 'banana']

    • Output: {'apple': 2, 'banana': 2, 'orange': 1}

  • Answered by AI
  • Q2. Q2. Do Matrix Multiplication. Q3. Implement Factorial and Fibonacci Series with different Approaches.
  • Ans. 

    Matrix multiplication, factorial and Fibonacci series implementation

    • Matrix multiplication involves multiplying two matrices to get a third matrix

    • Factorial is the product of all positive integers up to a given number

    • Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones

    • Factorial can be implemented using recursion or iteration

    • Fibonacci series can be implemented using recursion or

  • Answered by AI
  • Q3. Q4. What is the probability of getting 5 Sundays in 31 day month.
  • Ans. 

    The probability of getting 5 Sundays in a 31 day month is less than 1%.

    • There are 7 days in a week, so the probability of any given day being a Sunday is 1/7.

    • In a 31 day month, there are 4 full weeks and 3 extra days.

    • The probability of the first 4 weeks having 4 Sundays is (1/7)^4.

    • The probability of the remaining 3 days being Sundays is (3/7).

    • Multiplying these probabilities gives a total probability of less than 1%.

  • Answered by AI
  • Q4. Q5. There were 100 coins. 99 Unbiased Coins, 1. Coin is biased. Derive the probability of getting 10 heads given the even of unbiased coins using Bayes Theorem.
  • Ans. 

    Using Bayes Theorem, find the probability of getting 10 heads given 99 unbiased coins and 1 biased coin.

    • Identify the prior probability of getting 10 heads with unbiased coins

    • Calculate the likelihood of getting 10 heads with the biased coin

    • Use Bayes Theorem to calculate the posterior probability of getting 10 heads given the mix of coins

    • Consider the impact of the biased coin on the overall probability

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Q1. Implement a Program to check if a number is power of 3 .
  • Ans. 

    Program to check if a number is power of 3

    • Use logarithm to check if the result is an integer

    • Check if the number is greater than 0

    • Check if the remainder is 0 when the number is divided by 3 repeatedly

  • Answered by AI
  • Q2. Q2. What will be the approach If all the features are categorical in Linear Regression. Q3. What is Dummy variable trap? If we don't remove dummy variable what will be the issue and does it impact performa...
  • Ans. 

    Categorical features in Linear Regression require encoding using dummy variables. Removing one dummy variable avoids the dummy variable trap.

    • Categorical features need to be encoded using dummy variables to be used in Linear Regression

    • Dummy variable trap occurs when one dummy variable can be predicted from the others

    • Removing one dummy variable avoids the issue of multicollinearity and improves model performance

    • Example: ...

  • Answered by AI
  • Q3. Q4. You are standing in a field. Chances of seeing atleast 1 plane in 10 minutes is 15%. What is the probability of seeing atleast 1 plane in next 30 minutes?
  • Ans. 

    Probability of seeing a plane in 30 minutes given 15% chance in 10 minutes.

    • Calculate the probability of not seeing a plane in 10 minutes

    • Use the formula P(X>=1) = 1 - P(X=0)

    • Calculate the probability of not seeing a plane in 30 minutes using the above probability

    • Calculate the probability of seeing atleast 1 plane in 30 minutes using the formula P(X>=1) = 1 - P(X=0)

  • Answered by AI
  • Q4. Q5. If we select a random point in a circle of 1 unit radius what is the probability of appearing that point closer to the circumference , not closer to the centre.
  • Ans. 

    Probability of a random point in a circle of 1 unit radius being closer to the circumference than the center.

    • The probability is 1/4 or approximately 0.785.

    • This is because the area of the circle closer to the circumference is 1/4th of the total area.

    • This can be calculated using the formula for the area of a circle: A = πr^2.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the conditional probability and statistics questions. They check on your logical reasoning and your python coding skills the most.

Skills evaluated in this interview

Round 1 - Online Assessment 

(1 Question)

  • Q1. 2 python programming questions
Round 2 - Technical 

(1 Question)

  • Q1. Why accuracy score should not be used on imbalanced dataset?
  • Ans. 

    Accuracy score can be misleading on imbalanced datasets.

    • Accuracy score can be high even if the model is not performing well on the minority class.

    • F1 score, precision, and recall are better metrics for imbalanced datasets.

    • Stratified sampling, oversampling, and undersampling can help balance the dataset.

    • Example: A model predicting cancer in a dataset with only 1% positive cases.

    • Using accuracy score, a model that always p...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Sample T test. What is it?
  • Ans. 

    Sample T test is a statistical test used to determine if there is a significant difference between the means of two groups.

    • It is used to compare the means of two groups.

    • It assumes that the data is normally distributed.

    • It is commonly used in research studies to determine if a treatment has a significant effect.

    • Example: A sample T test can be used to compare the mean weight of two groups of people who followed different

  • Answered by AI
  • Q2. What is P-value in regression summary?
  • Ans. 

    P-value in regression summary measures the probability of observing a test statistic as extreme as the one computed from the sample data.

    • P-value is used to determine the statistical significance of the regression coefficient.

    • A low P-value (less than 0.05) indicates that the coefficient is statistically significant.

    • A high P-value (greater than 0.05) indicates that the coefficient is not statistically significant.

    • P-value...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall it was good experience. For online assessment work on hackerearth programs and leetcode programs. Be thorough with your projects done.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Different varieties on Fibonacci series in Python.
  • Ans. 

    Different varieties of Fibonacci series in Python.

    • Standard Fibonacci series

    • Fibonacci series with user-defined starting numbers

    • Fibonacci series with user-defined length

    • Fibonacci series with user-defined step

    • Fibonacci series with user-defined function

  • Answered by AI
  • Q2. Some groupby operation on python with sone existing data that interviewer came prepared with
  • Q3. Providing offer to customers of a supermarket based on purchases history.
  • Q4. Questions on previous projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good overall experience.
Be sincere in your answers. The interview is quite difficult with one online round and 2 direct interview rounds but it is very rewarding. Don't give any vague answers or exaggarate your projects. They will dig deep.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Aug 2021. 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 

(2 Questions)

  • Q1. Python manipulating arrays
  • Q2. Lambda functions, ML basic, Probability, puzzle
Round 3 - Technical 

(1 Question)

  • Q1. Aptitude, ML basic, bias vs variance, RF in depth questions, projects discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect with fundamentals.
Know your projects.

I was interviewed before Mar 2021.

Round 1 - Coding Test 

Hacker earth coding test is there

Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and expectations of the Senior Analyst role.

    • I am flexible and open to negotiation.

    • I would like to be compensated fairly for my skills and experience.

    • I am interested in the overall compensation package, including benefits and opportunities for growth.

    • I would appreciate discussing the salary range for this position.

    • I am confident that we can come to a mutually

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Share details of your previous job.
  • Ans. 

    I worked as a Senior Analyst at XYZ Company.

    • Analyzed data and provided insights to support decision-making

    • Developed and maintained complex financial models

    • Collaborated with cross-functional teams to identify opportunities for process improvement

    • Presented findings and recommendations to senior management

    • Managed and mentored a team of junior analysts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work and provide great opportunity to work with different projects

I applied via Referral

Interview Preparation Tips

Round: Technical Interview
Tips: Brush up your quant and programming skills. Also, practice puzzles

Skills: Programming, Quantitative Aptitude
College Name: IIT Madras

Stellar Innovations Interview FAQs

How many rounds are there in Stellar Innovations Senior Analyst interview?
Stellar Innovations interview process usually has 2 rounds. The most common rounds in the Stellar Innovations interview process are Resume Shortlist and HR.

Tell us how to improve this page.

Stellar Innovations Senior Analyst Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Stellar Innovations Senior Analyst Salary
based on 92 salaries
₹2 L/yr - ₹5.3 L/yr
60% less than the average Senior Analyst Salary in India
View more details

Stellar Innovations Senior Analyst Reviews and Ratings

based on 10 reviews

3.3/5

Rating in categories

3.0

Skill development

2.9

Work-life balance

2.5

Salary

3.3

Job security

3.0

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 10 Reviews and Ratings
Process Associate
334 salaries
unlock blur

₹1 L/yr - ₹4.6 L/yr

Senior Analyst
92 salaries
unlock blur

₹2 L/yr - ₹5.3 L/yr

Senior Process Associate
78 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Software Engineer
55 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Title Examiner
48 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Stellar Innovations with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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