Upload Button Icon Add office photos

Filter interviews by

Blume Global Interview Questions, Process, and Tips

Updated 21 Dec 2024

Top Blume Global Interview Questions and Answers

Blume Global Interview Experiences

Popular Designations

9 interviews found

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

I applied via Campus Placement

Interview Preparation Tips

Interview preparation tips for other job seekers - Always maintain confidence, demonstrate a willingness to learn, and ask relevant questions at the end.

Associate Analyst Interview Questions asked at other Companies

Q1. If you are given an array of 6 numbers 123345 give the logic for finding the duplicate numbers in this array Other technical questions where purely based on what we say previously. When I talked about my course and specializations, all the ... read more
View answer (7)

BigBasket

We don't just offer jobs; we offer peace of mind.

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

I applied via Company Website

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you say

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 24 Aug 2022

Interview Preparation Tips

Interview preparation tips for other job seekers - Not recommended on contractual basis. Also the work culture is very start up like. No process no settled environment. Chaotic and nobody knows what to do about it.

Blume Global interview questions for popular designations

 Associate Software Engineer

 (3)

 Associate Analyst

 (2)

 Software Engineer

 (1)

 Senior QA Engineer

 (1)

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 Jul 2023. There was 1 interview round.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (205)

Interview Questions & Answers

user image Anonymous

posted on 24 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Apr 2022. There were 5 interview rounds.

Associate Analyst Interview Questions asked at other Companies

Q1. If you are given an array of 6 numbers 123345 give the logic for finding the duplicate numbers in this array Other technical questions where purely based on what we say previously. When I talked about my course and specializations, all the ... read more
View answer (7)

I applied via Campus Placement and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1) Tell me about yourself.
  • Q2. 2) Tell me about your project
  • Q3. 3) How was your journey in cdac and which subject you like the most ?
  • Q4. Why classifiers are used in machine learning ?
  • Ans. 

    Classifiers are used in machine learning to categorize data into different classes based on their features.

    • Classifiers help in predicting the class of new data based on the patterns learned from the training data.

    • They are used in various applications such as image recognition, spam filtering, sentiment analysis, etc.

    • Popular classifiers include decision trees, support vector machines, logistic regression, etc.

  • Answered by AI
  • Q5. How'll you optimize a query ?
  • Ans. 

    Optimizing a query involves identifying and resolving performance issues.

    • Identify slow queries using profiling tools

    • Use indexes to speed up data retrieval

    • Reduce the amount of data being queried

    • Avoid using SELECT *

    • Use JOINs instead of subqueries

    • Normalize database tables

    • Use caching to reduce database load

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Natural and don't fake anything.
People here are very good and very supportive.
Trust me company do care about employees alot.

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions regarding what I have done till now in my career, scenario based questions. Some questions regarding SQL and testing process.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sure you know what you are applying for and enjoy the process. And don't be disheartened if yo don't go through , it is just a learning curve and the process will help you in future.

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

Interview questions from similar companies

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 10 A.M.

  • Q1. 

    Decode String Problem Statement

    Your task is to decode a given encoded string back to its original form.

    Explanation:

    An encoded string format is <count>[encoded_string], where the 'encoded_string...

  • Ans. 

    The task is to decode an encoded string back to its original form by repeating the encoded string 'count' times.

    • Parse the input string to extract the count and the encoded string within the brackets

    • Use recursion to decode the encoded string by repeating it 'count' times

    • Handle nested encoded strings by recursively decoding them

    • Output the decoded string for each test case

  • Answered by AI
  • Q2. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Ans. 

    Detect and remove loop in a singly linked list in place with O(n) time complexity and O(1) space complexity.

    • Use Floyd's Cycle Detection Algorithm to identify the loop in the linked list.

    • Once the loop is detected, use two pointers approach to find the start of the loop.

    • Adjust the pointers to remove the loop and return the modified linked list.

    • Example: For input 5 2 and 1 2 3 4 5, output should be 1 2 3 4 5.

  • Answered by AI
  • Q3. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. 

    Convert a given infix expression to postfix expression.

    • Use a stack to keep track of operators and operands.

    • Follow the rules of precedence for operators (*, / have higher precedence than +, -).

    • Handle parentheses by pushing them onto the stack and popping when closing parenthesis is encountered.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Due to pandemic placement process went virtual. Test was conducted at 2 P.M.

  • Q1. 

    Find First Repeated Character in a String

    Given a string 'STR' composed of lowercase English letters, identify the character that repeats first in terms of its initial occurrence.

    Example:

    Input:
    STR =...
  • Ans. 

    The task is to find the first repeated character in a given string of lowercase English letters.

    • Iterate through the string and keep track of characters seen so far in a set.

    • If a character is already in the set, return it as the first repeated character.

    • If no repeated character is found, return '%'.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Video Call interview where the interview happened for around 45 minutes.

  • Q1. 

    Maximum Sum Path in a Binary Tree Problem Statement

    You are provided with a binary tree consisting of N nodes where each node has an integer value. The task is to determine the maximum sum achievable by a...

  • Ans. 

    Find the maximum sum achievable by a simple path between any two nodes in a binary tree.

    • Traverse the binary tree to find all possible paths and calculate their sums.

    • Keep track of the maximum sum encountered during traversal.

    • Consider paths that may include the same node twice.

    • Implement a recursive function to explore all paths in the tree.

    • Optimize the solution to avoid redundant calculations.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Video Call interview where the interview happened for around 30 minutes.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 8 CGPADelhivery interview preparation:Topics to prepare for the interview - Java, Operating Systems, Git, LInux, Networking, C++, Python, DataStructures and Algorithms, OOPS, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise 5 problems daily from websites like hackerrank, codechef, codeforces
Tip 2 : Participate in codechef, codeforces contest.
Tip 3 : Attend mock interviews and should have good communication skills.

Application resume tips for other job seekers

Tip 1 : Maintain atleast 2 different projects, write powerful summary statement.
Tip 2 : Maintain skills relevant to job description, include relevant experience.

Final outcome of the interviewRejected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Blume Global Interview FAQs

How many rounds are there in Blume Global interview?
Blume Global interview process usually has 2-3 rounds. The most common rounds in the Blume Global interview process are Technical, HR and Aptitude Test.
How to prepare for Blume Global 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 Blume Global. The most common topics and skills that interviewers at Blume Global expect are Java, Supply Chain, Spring Boot, MySQL and Hibernate.
What are the top questions asked in Blume Global interview?

Some of the top questions asked at the Blume Global interview -

  1. Why classifiers are used in machine learnin...read more
  2. How'll you optimize a quer...read more
  3. What is virtual DOM in Re...read more

Tell us how to improve this page.

Blume Global Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 456 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
FarEye Interview Questions
3.1
 • 27 Interviews
Fourkites Interview Questions
3.8
 • 17 Interviews
Roambee Interview Questions
2.9
 • 2 Interviews
View all

Blume Global Reviews and Ratings

based on 39 reviews

2.7/5

Rating in categories

3.1

Skill development

2.7

Work-life balance

2.5

Salary

2.7

Job security

2.2

Company culture

2.4

Promotions

2.5

Work satisfaction

Explore 39 Reviews and Ratings
Associate Software Engineer
31 salaries
unlock blur

₹5.1 L/yr - ₹15.8 L/yr

Senior Software Engineer
31 salaries
unlock blur

₹13.2 L/yr - ₹26 L/yr

Software Engineer
24 salaries
unlock blur

₹5.8 L/yr - ₹15 L/yr

Production Analyst
15 salaries
unlock blur

₹13 L/yr - ₹16 L/yr

Technical Lead
14 salaries
unlock blur

₹20 L/yr - ₹36 L/yr

Explore more salaries
Compare Blume Global with

Fourkites

3.8
Compare

Roambee

2.9
Compare

FarEye

3.1
Compare

LogiNext Solutions

1.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent