Upload Button Icon Add office photos
Engaged Employer

i

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

Embibe Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Embibe Software Development Engineer Interview Questions and Answers for Experienced

Updated 26 Mar 2021

Embibe Software Development Engineer Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were asked on string handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer will give space to answer.

Interview questions from similar companies

I applied via Referral and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. No technical questions
  • Q2. BASIC INTERVIEW LIKE L1

Interview Preparation Tips

Interview preparation tips for other job seekers - No job guaranty, Non technical HOD, Unmanaged Infra

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Protocols IPV4 and IPV6
  • Q2. Routers and nodes

Interview Preparation Tips

Interview preparation tips for other job seekers - Just and Ok interview. No tough questions were asked

I appeared for an interview before May 2021.

Round 1 - Assignment 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. Design a class booking application for students.
  • Ans. 

    A class booking application for students to schedule and manage their classes.

    • Create a class booking system where students can view available classes, book classes, and manage their schedule.

    • Include features like class search, class details, booking confirmation, and calendar view.

    • Implement user authentication to ensure only registered students can book classes.

    • Allow students to cancel or reschedule classes with proper...

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer understand the current problem statement I was working on. 
Asked the clarifying questions and alternative approaches to solve the same and their tradeoffs.
Also, asked about the technologies I was using in depth and reason for choosing the same.

  • Q1. 

    Gas Tank Problem Statement

    You have a car with a gas tank of infinite capacity. There are 'N' gas stations located along a circular route, numbered from 0 to N-1. You begin your journey with an empty tank...

  • Ans. 

    Find the starting gas station index to complete a circular route with gas and cost arrays.

    • Iterate through gas stations, keeping track of gas remaining after each station

    • If gas remaining is negative, reset starting station to current station + 1

    • If total gas remaining at the end is greater than or equal to total cost, return starting station index

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 45 Minutes
Round difficulty - Medium

This round was their with the CTO and was mostly the culture fitment round.

 

Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round was with the cofounder and was mostly culture fitment.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaRIVIGO interview preparation:Topics to prepare for the interview - Data Structures, Competitive Programming, Databases, Java, Spring , Hibernate, Jenkins, AWSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on leetcode
Tip 2 : Understand the best solutions in depth and algorithm used
Tip 3 : Ask clarifying questions to the interviewer and break the problem to smaller sub parts

Application resume tips for other job seekers

Tip 1 : Highlight your most impactful work on the resume
Tip 2 : Keep it easy to understand

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Coding question of medium level difficulty, from DP. 
18 MCQs were core CSE related concepts e.g: OS, OOPs, DBMS, Networking
Time was 90 minutes.

  • Q1. 

    Minimum Cost to Destination

    You are given an NxM matrix consisting of '0's and '1's. A '1' signifies that the cell is accessible, whereas a '0' indicates that the cell is blocked. Your task is to compute ...

  • Ans. 

    Find the minimum cost to reach a destination in a matrix with blocked cells.

    • Use Breadth First Search (BFS) algorithm to explore all possible paths from the starting point to the destination.

    • Keep track of the cost incurred at each cell and update it as you move through the matrix.

    • Return the minimum cost to reach the destination or -1 if it is unreachable.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was an one-to-one interview. It checks your problem solving ability and a few OOPs, OS, DBMS etc concepts. Coding questions were related to array, queue and DP.

  • Q1. 

    Triangle Formation Using Array Elements

    Given an integer array/list ARR of length 'N', determine if it is possible to form at least one non-degenerate triangle using the values of the array as the sides o...

  • Ans. 

    Determine if it is possible to form a non-degenerate triangle using array elements as sides.

    • Check if the sum of any two sides is greater than the third side for all combinations of sides.

    • If the above condition is met for any combination, return true; otherwise, return false.

  • Answered by AI
  • Q2. 

    Maximum Sum of Non-Adjacent Elements

    You are given an array/list of integers. The task is to return the maximum sum of a subsequence such that no two elements in the subsequence are adjacent in the given ...

  • Ans. 

    Find the maximum sum of non-adjacent elements in an array.

    • Use dynamic programming to keep track of the maximum sum at each index, considering whether to include the current element or not.

    • At each index, the maximum sum can be either the sum excluding the current element or the sum including the current element but excluding the previous element.

    • Iterate through the array and update the maximum sum accordingly.

    • Example: F...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was also a problem solving round. However after coding questions, they also asked CSE conceptual questions.

  • Q1. 

    Sum Tree Conversion

    Convert a given binary tree into its sum tree. In a sum tree, every node's value is replaced with the sum of its immediate children's values. Leaf nodes are set to 0. Finally, return th...

  • Ans. 

    Convert a binary tree into a sum tree by replacing each node's value with the sum of its children's values. Return preorder traversal.

    • Traverse the tree in a bottom-up manner, starting from the leaf nodes.

    • For each node, update its value to the sum of its children's values.

    • Set leaf nodes to 0.

    • Return the preorder traversal of the modified tree.

  • Answered by AI
  • Q2. What are the core concepts of indexing in Database Management Systems (DBMS)?
  • Ans. 

    Core concepts of indexing in DBMS include types of indexes, benefits of indexing, and factors affecting index performance.

    • Types of indexes: B-tree, Hash, Bitmap, etc.

    • Benefits of indexing: Faster data retrieval, improved query performance, reduced disk I/O.

    • Factors affecting index performance: Selectivity, clustering factor, index fragmentation.

    • Examples: Creating an index on a column in a table to speed up search queries

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology Delhi (New Campus). Eligibility criteria7 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, OS, DBMS, Algorithms, Networking, Coding, OOPTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Strengthen your coding, algorithms. This is one most important thing for OYO. Practice Graph, tree, DP, greedy, recursion, data structures questions.
Tip 2 : OS, DBMS concepts will give you an edge over others. Like serialisation, index, deadlock, semaphore
Tip 3 : Only mention those projects in your resume which you are very clear about. They don't ask for detailed explanation, just an overall idea about your projects will increase your chances

Application resume tips for other job seekers

Tip 1 : Mention college projects wisely. No need to mention fancy projects. Any project that you can describe to the interviewer will be a best solution
Tip 2 : Neat & clean resume with your skills, technical stacks that you mastered. That's all. They don't require you to be very active in extra-curricular activities, and these things will not give you any advantage.
Tip 3 : Keep it of single page

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Check for palindrome
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the original string with its reverse to check if it's a palindrome

  • Answered by AI
  • Q2. Common question from android like view model store

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was a DSA round. Meduim level leetcode problems

Round 2 - Technical 

(1 Question)

  • Q1. It was leetcode medium level problem
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Easy coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Dsa and oops basic
Round 3 - Technical 

(1 Question)

  • Q1. Dsa and oops and os
Round 4 - HR 

(1 Question)

  • Q1. Normal hr questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode medium questions using priority queue. I don't remeber exact now

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview round was vry simple binary tree mirror question
Round 3 - HR 

(1 Question)

  • Q1. 5 mins round. basics like location

Interview Preparation Tips

Interview preparation tips for other job seekers - OA is hard, rest process is easy
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 May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 Coding problems to be solved in 90 minutes.

Round 2 - Technical 

(1 Question)

  • Q1. Introduction, Project Discussion, HTML Tags, Reverse a string, Level order traversal in a binary tree, Minimum swap operations to sort an array.
Round 3 - Technical 

(1 Question)

  • Q1. N-Queen problem, Coin Change, Number of Islands

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basics.

Tell us how to improve this page.

Interview Questions from Similar Companies

ElasticRun Interview Questions
3.5
 • 254 Interviews
Oyo Rooms Interview Questions
3.3
 • 221 Interviews
Unacademy Interview Questions
3.0
 • 209 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
LivSpace Interview Questions
3.6
 • 141 Interviews
CMS IT Services Interview Questions
3.1
 • 136 Interviews
View all
Embibe Software Development Engineer Salary
based on 16 salaries
₹8 L/yr - ₹26.4 L/yr
7% more than the average Software Development Engineer Salary in India
View more details

Embibe Software Development Engineer Reviews and Ratings

based on 2 reviews

2.1/5

Rating in categories

4.0

Skill development

1.5

Work-life balance

1.5

Salary

1.5

Job security

1.0

Company culture

2.1

Promotions

2.1

Work satisfaction

Explore 2 Reviews and Ratings
Project Manager
78 salaries
unlock blur

₹5 L/yr - ₹18.5 L/yr

Content Writer
73 salaries
unlock blur

₹2.2 L/yr - ₹8 L/yr

Content Researcher
69 salaries
unlock blur

₹2 L/yr - ₹10.4 L/yr

SME
62 salaries
unlock blur

₹2.4 L/yr - ₹11.2 L/yr

Video Editor
54 salaries
unlock blur

₹3 L/yr - ₹8.8 L/yr

Explore more salaries
Compare Embibe with

Mahindra Logistics

3.9
Compare

Oyo Rooms

3.3
Compare

CMS IT Services

3.1
Compare

ElasticRun

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