Upload Button Icon Add office photos

Filter interviews by

Roambee Interview Questions and Answers

Updated 2 Oct 2024

Roambee Interview Experiences

2 interviews found

Technician Interview Questions & Answers

user image Jothi Priyadharshan

posted on 2 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Use case task for coding round

Round 2 - Coding Test 

Build app screen of weather app

Technician Interview Questions asked at other Companies

Q1. What kinds of pipe used for hot and cold water supply ?
View answer (8)

Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2021

I appeared for an interview in May 2021.

Interview Questionnaire 

1 Question

  • Q1. Experience, Tasks done, Innovation Methods, Policy Formulation, Making HR Handbook, HRMS Implementation Process.

Interview Preparation Tips

Interview preparation tips for other job seekers - The company just wants to get a HRMS implemented in the system. From the interview it was obvious they have no idea what and how to get it done. They are seeking the name of the software and how it can be implemented. This tactics is unethical, you can't get your work done under the cover of an interview. There are many software's available in the market check them yourself. How will a candidate know your inside information to decide on a software. Implementation is built on various pillars of internal needs and data. You get interviewed by Business Head, Customer Service Head, Finance VP which does not make sense cause they have no idea of what HR actually brings to the table. Each one covers a micro organic part. People sign Non Disclosure Agreements when they implement software's in companies they work. They are legally binding no to give out information. Generic answers should be acceptable. The final round the insistence on naming the software and week by week process of implementation blew the cover of what they actually wanted.

Jobs at Roambee

View all

Interview questions from similar companies

I applied via Internshala and was interviewed before Sep 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Only simple about myself questions as well as finance operations terms

Interview Preparation Tips

Interview preparation tips for other job seekers - Hojata hai aaram se but thoda dhyan rkhna ki stuck na ho beech m

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

Interview Preparation Tips

Interview preparation tips for other job seekers - I gave attitude and dark personality test in Delhivery. But after clearing this rounds. They don't take my interview. They said that they have shortlisted another candidate. They even don't pick up call and clarify it.

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Arrange the interview immediately

Data Analyst Interview Questions & Answers

BluSmart user image sakshi vinayak

posted on 29 Jan 2024

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

I appeared for an interview before Jan 2023.

Round 1 - HR 

(1 Question)

  • Q1. Asked related to introduction and about previous company profile
Round 2 - Technical 

(1 Question)

  • Q1. Related to advanced excel
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design, binary search related questions
Round 2 - Technical 

(1 Question)

  • Q1. Basic Linked list, recursion question.

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

Interview Questionnaire 

6 Questions

  • Q1. What is LRU caching and how it can be implemented?
  • Ans. 

    LRU caching is a technique to store frequently used data in cache memory to improve performance.

    • LRU stands for Least Recently Used.

    • It removes the least recently used item from the cache when the cache is full.

    • It uses a doubly linked list and a hash map to implement the cache.

    • When an item is accessed, it is moved to the front of the list.

    • When the cache is full, the item at the end of the list is removed.

    • Example: Java Li...

  • Answered by AI
  • Q2. Explain producer-consumer problem and write code using thread.
  • Ans. 

    Producer-consumer problem involves synchronization between threads to avoid race conditions.

    • Producer produces data and adds it to a shared buffer

    • Consumer consumes data from the shared buffer

    • Synchronization is required to avoid race conditions

    • Code example: https://www.geeksforgeeks.org/producer-consumer-solution-using-threads-in-java/

  • Answered by AI
  • Q3. Check a tree is BST or not.
  • Ans. 

    To check if a tree is a BST or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Recursively check if the left and right subtrees are also BSTs.

  • Answered by AI
  • Q4. Reverse a single linked list.
  • Ans. 

    Reverse a single linked list.

    • Iterate through the list and change the direction of the pointers

    • Keep track of the previous, current and next nodes

    • Set the head of the list to the last node after reversing

  • Answered by AI
  • Q5. Print the all anagrams of same type in same line from array of Strings
  • Ans. 

    Print all anagrams of same type in same line from array of Strings

    • Create a HashMap with sorted string as key and list of anagrams as value

    • Iterate through array and add each string to corresponding list in HashMap

    • Print all values in HashMap

  • Answered by AI
  • Q6. Features added in Java 8
  • Ans. 

    Java 8 introduced lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow functional programming in Java.

    • Functional interfaces are interfaces with a single abstract method.

    • Streams provide a way to process collections of data in a functional way.

    • Default methods allow interfaces to have implementation.

    • Date and Time API improvements.

    • Nashorn JavaScript engine added.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have appeared on Techgig challenge and get a call from HR regarding Software development Java position.
First round is scheduled on Barraiser and is taken by Third party person. In these round, first interview give me a question to print anagrams from list of strings and to be printed of same type in different line. I have started by discussing the approach and then after 20-30 mins, I was able to reach the optimal solution. Then he discussed me about my project that I am working in current company and tell me to draw the architecture diagram.
After 2 days, I got the call from the HR and selected for 2nd round technical interview with Technical lead.
First time, they have postponed the call which is scheduled on Google meet.
In second time, the interviewer joined and round started with introduction of both and the interview tell me about the company and how it is growing and all.
Then we move to technical discussion. First he asked me about what are features are added in Java 8, then one by one concepts of Java regarding threading, producer-consumer problem.
After OOPS concept discussion, he gave me two DSA problems to solve in optimal way. I am unable to do that since I have not gone through it.
In the interview, I am pretty sure that I am not selected for the next round as my DSA is weak.
And after interview, I have never received any call nor any mail regarding my rejection and feedback.

Skills evaluated in this interview

Roambee Interview FAQs

How many rounds are there in Roambee interview?
Roambee interview process usually has 2 rounds. The most common rounds in the Roambee interview process are Assignment and Coding Test.
How to prepare for Roambee 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 Roambee. The most common topics and skills that interviewers at Roambee expect are Logistics, Social Media, JIRA, Node.Js and IT Infrastructure.

Tell us how to improve this page.

Roambee Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 460 Interviews
Ecom Express Interview Questions
3.8
 • 198 Interviews
BlackBuck Interview Questions
3.8
 • 178 Interviews
FarEye Interview Questions
3.1
 • 27 Interviews
Fourkites Interview Questions
3.8
 • 17 Interviews
BluSmart Interview Questions
3.4
 • 10 Interviews
Samsara Interview Questions
3.2
 • 2 Interviews
View all

Roambee Reviews and Ratings

based on 14 reviews

2.8/5

Rating in categories

2.5

Skill development

2.7

Work-life balance

3.0

Salary

2.5

Job security

2.5

Company culture

2.7

Promotions

3.1

Work satisfaction

Explore 14 Reviews and Ratings
Senior Financial Planning & Analysis

Mumbai

10-12 Yrs

Not Disclosed

Firmware Engineer

Ahmedabad

3-6 Yrs

Not Disclosed

Senior Financial Planning & Analysis

Mumbai

4-8 Yrs

Not Disclosed

Explore more jobs
Operations Executive
13 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Customer Success Manager
7 salaries
unlock blur

₹11.5 L/yr - ₹15.2 L/yr

Team Lead
6 salaries
unlock blur

₹6 L/yr - ₹14.5 L/yr

Technical Support Analyst
5 salaries
unlock blur

₹2.8 L/yr - ₹3.1 L/yr

Senior Firmware Engineer
5 salaries
unlock blur

₹12 L/yr - ₹33.5 L/yr

Explore more salaries
Compare Roambee with

Fourkites

3.8
Compare

FarEye

3.1
Compare

LogiNext Solutions

1.8
Compare

Samsara

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