Upload Button Icon Add office photos
Engaged Employer

i

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

AstroTalk Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AstroTalk Financial Service Associate Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. General Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Previous experience and educational
Round 3 - HR 

(1 Question)

  • Q1. Regarding salary package

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer the questions in a straightforward manner
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed before Sep 2022. 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 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 3 - Technical 

(1 Question)

  • Q1. What are the important things in production
  • Ans. 

    Key aspects in production include efficiency, quality control, cost management, and continuous improvement.

    • Efficiency: Streamlining processes to maximize output with minimal resources

    • Quality control: Ensuring products meet standards and specifications

    • Cost management: Monitoring expenses and optimizing resources to reduce production costs

    • Continuous improvement: Implementing strategies to enhance productivity and quality

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical assessment is important

I applied via Indeed and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Business problems and case studies
  • Q2. Guesstimates
  • Q3. Experience to date
  • Ans. 

    I have 3 years of experience working as a Data Analyst in the finance industry.

    • Analyzed financial data to identify trends and make recommendations

    • Created reports and dashboards using tools like Tableau and Excel

    • Collaborated with cross-functional teams to improve data quality and accuracy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Use your basic aptitude.

Intern Interview Questions & Answers

Droom user image Anonymous

posted on 5 May 2017

I appeared for an interview in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. What do you know about our company and product
  • Ans. 

    I'm sorry, I don't have access to the internet to research the company and product.

    • Answered by AI
    • Q2. Tell us all you know about Droom
    • Ans. 

      Droom is an online marketplace for buying and selling new and used vehicles.

      • Founded in 2014 by Sandeep Aggarwal

      • Offers a wide range of vehicles including cars, bikes, and scooters

      • Provides services such as vehicle history reports and inspections

      • Has over 6,500 certified dealers and over 50,000 listings

      • Operates in India and Singapore

    • Answered by AI

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: Seems like an HR question, but is a product based question for the company. So now, when they call it technical, it is because their product is the website that they manage. So I started talking about Droom's vision and mission.
    I spoke of a few features that would help customers. I also spoke of the tools that were useful for customer experience. I also mentioned the speed and quality of the site.
    Tips: Here be careful as you need to answer in the technical sense. Starting with when the company was started/ the location will not help build a point. Start off with the product. Also feel free to point out negatives, but make sure you sandwich it between smoother and better things.

    I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.
    Interview experience
    2
    Poor
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - HR 

    (5 Questions)

    • Q1. What is your expected salary
    • Q2. Your last experience would not be count because it is not relatable to this post , is it okay for you
    • Q3. Can you relocate from your homtown to noida
    • Q4. Provide you salary slip of last three months
    • Q5. Provide contact number of you last employer for background verification
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Recruitment Consulltant and was interviewed before Jan 2023. There were 2 interview rounds.

    Round 1 - Technical 

    (3 Questions)

    • Q1. Program for a palindrome Number.
    • Ans. 

      Program to check if a number is a palindrome.

      • Convert the number to a string to easily check for palindrome

      • Reverse the string and compare it with the original string

      • If they are the same, the number is a palindrome

    • Answered by AI
    • Q2. React Lifecycle methods
    • Q3. Hooks in react?
    • Ans. 

      Hooks are a feature in React that allow you to use state and other React features in functional components.

      • Hooks were introduced in React 16.8.

      • They allow you to use state and other React features without writing a class.

      • Commonly used hooks include useState, useEffect, useContext, and useReducer.

      • Hooks must be used at the top level of your functional component.

      • Example: const [count, setCount] = useState(0);

    • Answered by AI
    Round 2 - Technical 

    (2 Questions)

    • Q1. Create a High-level design
    • Ans. 

      Design a high-level architecture for a software system

      • Identify the main components of the system

      • Define the interactions between the components

      • Consider scalability, security, and performance

      • Choose appropriate technologies and frameworks

      • Create a diagram to visualize the architecture

    • Answered by AI
    • Q2. Questions on the design you created

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. Delete nth node from end in linked list
    • Ans. 

      To delete the nth node from the end in a linked list, we can use a two-pointer approach.

      • Use two pointers, one to traverse the list and another to keep track of the nth node from the end.

      • Move the second pointer n steps ahead of the first pointer.

      • When the second pointer reaches the end of the list, the first pointer will be at the nth node from the end.

      • Adjust the pointers to delete the nth node.

    • Answered by AI
    • Q2. Project discussion

    Interview Preparation Tips

    Interview preparation tips for other job seekers - revise your latest projects and technologies used thoroughly, prepare trees and linked list in DSA

    Skills evaluated in this interview

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

    I appeared for an interview before Feb 2024.

    Round 1 - One-on-one 

    (1 Question)

    • Q1. Introduction and Work Experience
    Round 2 - Assignment 

    A Presentation on certain concepts.

    Round 3 - Technical 

    (1 Question)

    • Q1. Role related technical questions
    Round 4 - HR 

    (1 Question)

    • Q1. Cultural Fitment related questions.

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

    Interview Questionnaire 

    3 Questions

    • Q1. Ds algo questions
    • Q2. Js basics
    • Q3. React.js

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    MagicPin Interview Questions
    2.6
     • 50 Interviews
    Tokopedia Interview Questions
    4.1
     • 26 Interviews
    Meritto Interview Questions
    3.6
     • 22 Interviews
    JUSPAY Interview Questions
    3.1
     • 21 Interviews
    Furlenco Interview Questions
    3.4
     • 21 Interviews
    Melorra Interview Questions
    3.1
     • 20 Interviews
    Droom Interview Questions
    3.8
     • 19 Interviews
    Nestaway Interview Questions
    3.8
     • 18 Interviews
    Inshorts Interview Questions
    3.9
     • 16 Interviews
    View all
    Operations Executive
    23 salaries
    unlock blur

    ₹2 L/yr - ₹6 L/yr

    Astrologer
    13 salaries
    unlock blur

    ₹2 L/yr - ₹8.8 L/yr

    Operations Manager
    9 salaries
    unlock blur

    ₹3 L/yr - ₹11.7 L/yr

    Devops Engineer
    7 salaries
    unlock blur

    ₹5.4 L/yr - ₹14 L/yr

    Content Writer
    6 salaries
    unlock blur

    ₹2 L/yr - ₹4.2 L/yr

    Explore more salaries
    Compare AstroTalk with

    MagicPin

    2.6
    Compare

    Awign Enterprises

    3.9
    Compare

    Nestaway

    3.8
    Compare

    Ketto

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