Upload Button Icon Add office photos
Engaged Employer

i

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

Yugabyte Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Yugabyte Interview Questions and Answers

Updated 26 Mar 2024

Yugabyte Interview Experiences

1 interview found

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 Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy to medium level(leetcode) coding questions, but 5 questions to be solved by 70 min, and few questions are easy but lengthy

Round 2 - Coding Test 

Coding interview test they asked me 2 questions to be solved by 60 min medium to medium-hard level leetcode problems one from binary search over answer and the second one from dp

Round 3 - Case Study 

This round was a test case round where they gave me 2 features and I need to build test cases for the features

Interview Preparation Tips

Interview preparation tips for other job seekers - OA round gave easy to easy-medium questions but there was limited time, the second round was a interview round which ask medium to medium hard level question but 2 in 60 min, focusing on DSA should be good enough for getting an offer

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Secure your future with a company that values your job stability.

Jobs at Yugabyte

View all

Interview questions from similar companies

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

(2 Questions)

  • Q1. Multithreading based basic dsa
  • Q2. Graph representation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core concepts

Analyst Interview Questions & Answers

Snowflake user image Rashmi Mestry

posted on 2 Jul 2024

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

(1 Question)

  • Q1. What are strengths
  • Ans. 

    My strengths include strong analytical skills, attention to detail, and ability to work well under pressure.

    • Strong analytical skills - able to analyze data and draw meaningful insights

    • Attention to detail - meticulous in reviewing work for accuracy

    • Ability to work well under pressure - can stay focused and perform effectively in high-stress situations

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Mar 2023. 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Word formation Algorithm question
  • Q2. Architecture of project.
  • Ans. 

    The architecture of the project is based on microservices with a containerized approach using Docker and Kubernetes.

    • Utilizes microservices architecture for scalability and flexibility

    • Containerized approach using Docker for easy deployment and management

    • Orchestrated with Kubernetes for automated scaling and monitoring

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your introduction short because you might loose coding time for problem. They will end interview at sharp time. Unprofessional, and does not share the feedback.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. 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 Resume tips
Round 2 - Assignment 

Tableau intensive assignment with few questions on SQL and basic Python

Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion on submitted assignment and current job role
  • Q2. What kind of analysis have you done in your current role?
Round 4 - HR 

(1 Question)

  • Q1. Basic discussion on why I am switching from my current company and salary discussion
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Resume questions
Round 2 - Technical 

(1 Question)

  • Q1. 4-5 SQL coding questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

60 minutes, CIDR network masks

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

(1 Question)

  • Q1. Time Window Map
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Coding Test 

1 hour duration. Sliding window problem. On hacker rank platform. Expected to write a working code and solve it optimally/scalable solution.

Round 2 - Technical 

(1 Question)

  • Q1. Again a coding test. LLD + hash map. 1 hour on hacker rank.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

4 coding questions on hackerrank.

  • Q1. 

    Dice Throws Problem Statement

    You are given D dice, each having F faces numbered from 1 to F. The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up num...

  • Ans. 

    The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up numbers equals the given 'target' sum.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of ways to achieve each sum with the given number of dice.

    • Iterate through the dice and faces to calculate the number of ways to reach each sum.

    • Return the result modulo 10^9 + 7.

    • Optim...

  • Answered by AI
  • Q2. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values with specified functions.

    • Use two queues to simulate stack operations efficiently.

    • Maintain the top element in one of the queues for easy access.

    • Ensure proper handling of edge cases like empty stack.

    • Example: Push elements 5, 10, 15; Pop elements; Check top element.

    • Example: Check if stack is empty; Get stack size.

  • Answered by AI
  • Q3. 

    Maximum Subarray Sum Problem Statement

    Given an array 'ARR' of integers with length 'N', the task is to determine the sum of the subarray (including an empty subarray) that yields the maximum sum among al...

  • Ans. 

    Find the maximum sum of a subarray in an array of integers.

    • Iterate through the array and keep track of the maximum sum subarray ending at each index.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Consider the case where all elements are negative to handle edge cases.

    • Example: For input [1, -2, 3, -1, 2], the maximum subarray sum is 4.

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

My 1st technical round began with a small introduction and a discussion on my projects. After that, my complete interview revolved around Object-oriented principles and 1 basic coding question. The interviewer asked all the pillars of Object-oriented along with use cases and where have I implemented them in my projects.

Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In my 2nd technical round, the interviewer began with the complete discussion of my projects. He asked me everything about them like which technologies I have used, why I have used them, what are the alternatives, what are the real-life applications of these projects. After this, He asked questions on Computer Networks, Operating system, Database Management system and at the end, some of the SQL queries. SQL queries were quite easy, I found one of the queries tricky and harder as compared to other i.e print nth largest salary of the employees. The interviewer also asked me why I was not able to code one of the questions in the coding round. I explained the complete approach of that question and he was quite satisfied. This technical round was of 1 hour long.

  • Q1. Print the nth largest salary from a given list of salaries.
  • Ans. 

    Find the nth largest salary from a list of salaries.

    • Sort the list of salaries in descending order.

    • Remove duplicates from the sorted list.

    • Return the salary at index n-1 from the sorted list.

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 35 minutes
Round difficulty - Easy

There were two panellists in this round and they began with a small introduction. One of them asked me about my capstone project which was based on object recognition task and deep learning. He just told me to explain deep learning in complete detail and how can it be used on my college campus. Then, He asked me what technologies are being used and how I trained my model as the model was quite heavy and computationally intensive. Then, they asked me how I cope up with my team members in the pandemic situation and how I managed to interact with them.

  • Q1. What are the basic applications of deep learning, and how can I implement it in my college?
  • Ans. 

    Deep learning has applications in image and speech recognition, natural language processing, autonomous vehicles, etc.

    • Image recognition - identifying objects in images, used in self-driving cars, medical imaging, etc.

    • Speech recognition - converting spoken language into text, used in virtual assistants like Siri, Alexa, etc.

    • Natural language processing - understanding and generating human language, used in chatbots, lang...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 8 CGPACloudera interview preparation:Topics to prepare for the interview - Object-oriented programming in C++, Data Structure and algorithms, Computer Networks, Operating Systems, Database Management SystemsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 600 questions from leetcode.
Tip 2 : Make sure you participate in every long challenge of CodeChef.
Tip 3 : Focus more on your projects.

Application resume tips for other job seekers

Tip 1 : Do not put false things on a resume.
Tip 2 : Have some projects on a resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Yugabyte Interview FAQs

How many rounds are there in Yugabyte interview?
Yugabyte interview process usually has 3 rounds. The most common rounds in the Yugabyte interview process are Coding Test and Case Study.
How to prepare for Yugabyte 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 Yugabyte. The most common topics and skills that interviewers at Yugabyte expect are Open Source, Python, Recruitment, Agile and Oracle.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

Tell us how to improve this page.

Yugabyte Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

HCLTech

An opportunity to work for Fortune 500 companies

Interview Questions from Similar Companies

MongoDB Interview Questions
3.8
 • 14 Interviews
Cloudera Interview Questions
4.2
 • 13 Interviews
Confluent Interview Questions
3.7
 • 12 Interviews
Databricks Interview Questions
2.7
 • 12 Interviews
Snowflake Interview Questions
3.9
 • 9 Interviews
Couchbase Interview Questions
4.4
 • 3 Interviews
Redis Labs Interview Questions
3.0
 • 1 Interview
Hortonworks Interview Questions
2.3
 • 1 Interview
View all

Yugabyte Reviews and Ratings

based on 17 reviews

3.4/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

4.0

Salary

2.7

Job security

3.7

Company culture

3.1

Promotions

3.8

Work satisfaction

Explore 17 Reviews and Ratings
Software Engineer, Database Internals

Kolkata,

Mumbai

+5

6-10 Yrs

Not Disclosed

Office Manager, India

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Senior Software Engineer

Bangalore / Bengaluru

0-1 Yrs

Not Disclosed

Explore more jobs
Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SDE (Software Development Engineer)
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer Test
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sdet (Software Development Engineer in Test)
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Yugabyte with

MongoDB

3.8
Compare

Couchbase

4.4
Compare

DataStax

4.7
Compare

Redis Labs

3.0
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