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 Softwaretest Engineer Interview Questions and Answers

Updated 21 May 2024

Embibe Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Dynamic programming , graph for 1 hour

Round 2 - One-on-one 

(3 Questions)

  • Q1. Don't remember the inerview question
  • Q2. Don't remember interview question
  • Q3. Do do do not remember
Round 3 - HR 

(1 Question)

  • Q1. Brief about the company

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. More about xpath
  • Q2. More about java programs
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DS algo questions with about 3 questions in topic like graph, strings ,arrays

Round 2 - One-on-one 

(2 Questions)

  • Q1. DS algo question on LinkedIn list
  • Q2. DS algo question on graph
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 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 - Technical 

(1 Question)

  • Q1. Lets delve into self-exploration to understand our own identity and they will ask specific questions based on your resume to help with this process.
Round 3 - Technical 

(1 Question)

  • Q1. The interviewer thoroughly inquired about the specific equipment i had used in the lab and provided a detailed overview of the tasks that would be carried out in the laboratory.
Round 4 - HR 

(1 Question)

  • Q1. Yet to be do

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience with the technical interviews of round-1 specially and round-2 waiting for final round.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

C and Golang related questions, 2 Hours assement, The test involved writing code by hand in paper in the office (Bengaluru)

Round 2 - Technical 

(9 Questions)

  • Q1. Write a go code to remove duplicate elements from a slice.
  • Ans. 

    Go code to remove duplicate elements from a slice of strings

    • Use a map to keep track of unique elements

    • Iterate over the slice and add elements to the map

    • Create a new slice with unique elements from the map

  • Answered by AI
  • Q2. Difference between array and slice in Go.
  • Ans. 

    Arrays have fixed length, slices are dynamic and can grow/shrink. Slices are references to arrays.

    • Arrays have fixed length, specified at compile time.

    • Slices are dynamic, can grow or shrink at runtime.

    • Slices are references to arrays, allowing for more flexibility.

    • Example: var arr [3]string // array with fixed length of 3

    • Example: slice := make([]string, 0) // slice with dynamic length

  • Answered by AI
  • Q3. Explain struct and interface
  • Ans. 

    Struct is a user-defined data type that groups related data fields together. Interface defines a set of methods that a type must implement.

    • Struct is used to create complex data structures by grouping related data fields together.

    • Interface defines a set of methods that a type must implement. It allows for polymorphism in Go.

    • Example: type Person struct { Name string; Age int }

    • Example: type Shape interface { Area() float6...

  • Answered by AI
  • Q4. What is containerization.
  • Ans. 

    Containerization is a method of packaging, distributing, and running applications in isolated environments called containers.

    • Containers are lightweight, portable, and can run on any platform that supports containerization.

    • They include everything needed to run the application, such as code, runtime, system tools, libraries, and settings.

    • Popular containerization tools include Docker, Kubernetes, and Podman.

    • Containerizati...

  • Answered by AI
  • Q5. Write a go code to implement struct.
  • Ans. 

    Implementing a struct in Go code

    • Define a struct using the 'type' keyword

    • Add fields to the struct with their respective data types

    • Access struct fields using dot notation

  • Answered by AI
  • Q6. Explain goroutine.
  • Ans. 

    Goroutine is a lightweight thread managed by Go runtime, allowing concurrent execution of functions.

    • Goroutines are created using the 'go' keyword in Go programming language.

    • They are more lightweight than threads and are managed by the Go runtime.

    • Goroutines allow for concurrent execution of functions without the need for manual thread management.

    • Example: go myFunction()

    • Example: go func() { // code here }

  • Answered by AI
  • Q7. How do you achieve concurrency in Go?
  • Ans. 

    Concurrency in Go is achieved using goroutines and channels.

    • Use goroutines to run functions concurrently

    • Communicate between goroutines using channels

    • Avoid using shared memory for synchronization

  • Answered by AI
  • Q8. What is channel in Go? What are the differences between buffered and unbuffered channel?
  • Ans. 

    A channel in Go is a communication mechanism that allows goroutines to communicate with each other.

    • Buffered channels have a specific capacity and can send multiple values without the need for a corresponding receive operation immediately.

    • Unbuffered channels have no capacity and require both a send and receive operation to be ready at the same time for communication to occur.

  • Answered by AI
  • Q9. What is scaling? Horizontal and vertical scaling.
  • Ans. 

    Scaling refers to the ability of a system to handle increasing amounts of work or its potential to accommodate growth.

    • Horizontal scaling involves adding more machines to distribute the load, while vertical scaling involves increasing the resources of a single machine.

    • Horizontal scaling is more cost-effective and provides better fault tolerance, but can be more complex to implement.

    • Vertical scaling is simpler to impleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic DSA. Learn C properly (Including deep concepts in pointer). Practice Golang. Also try to write solve some basic dsa problem in Go.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What id oops and its advantages
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • Advantages of OOPs include code reusability, modularity, flexibility, and easier maintenance.

    • Encapsulation allows data hiding and protection, reducing complexity and increasing security.

    • Inheritance enables code reuse and promotes the creation of hierarchical relationships between classes.

    • Polymorphism allows objects...

  • Answered by AI
  • Q2. What is jquery and JavaScript
  • Ans. 

    jQuery is a JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a fast, small, and feature-rich JavaScript library.

    • It makes things like HTML document traversal and manipulation, event handling, and animation much simpler with an easy-to-use API.

    • jQuery simplifies common tasks like AJAX calls and DOM manipulation.

    • JavaScript is a programming language that en...

  • Answered by AI
Round 2 - Coding Test 

Ecom is core platform

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is php and its advantages
  • Ans. 

    PHP is a server-side scripting language used for web development.

    • PHP stands for Hypertext Preprocessor.

    • It is open source and widely used for creating dynamic web pages.

    • Advantages include easy integration with HTML, support for various databases, and compatibility with different operating systems.

    • PHP code can be embedded within HTML code, making it easy to work with web content.

    • Popular websites like Facebook and WordPre

  • Answered by AI
  • Q2. How are you hope you doing well

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Interval Overlapping Problem
  • Ans. 

    Interval Overlapping Problem involves determining if two intervals overlap or not.

    • Check if the end of one interval is greater than the start of the other interval

    • Check if the start of one interval is less than the end of the other interval

    • If both conditions are true, then the intervals overlap

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Sdlc lifecycle of components and architecture.
  • Ans. 

    SDLC lifecycle involves planning, designing, developing, testing, deploying, and maintaining software components and architecture.

    • SDLC (Software Development Life Cycle) includes phases like planning, designing, coding, testing, and maintenance.

    • Components are designed, developed, tested, and integrated into the overall architecture.

    • Architecture involves defining the structure, behavior, and interactions of software comp...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Role and responsibility my tasks and questions on project

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Coding Test 

Coding round consisted of three problems with easy to moderate level difficulty.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Variation of Minimum number of platforms required for railway station.
  • Ans. 

    Minimum number of platforms required for a railway station depends on the maximum number of trains arriving and departing at the same time.

    • Calculate the maximum number of trains arriving and departing at the same time.

    • Determine the time intervals for each train's arrival and departure.

    • Add extra platforms for buffer and unexpected delays.

    • Consider factors like train length, frequency, and scheduling conflicts.

    • Example: If...

  • Answered by AI
  • Q2. Rearrange the array such that the negative numbers are shifted to the beginning.
  • Ans. 

    Rearrange array with negative numbers at the beginning

    • Iterate through the array and move negative numbers to the beginning

    • Use two pointers approach to swap elements

    • Maintain the order of negative numbers while shifting them to the beginning

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Implement a simple program using multithreading.
  • Ans. 

    A simple program using multithreading can be implemented to demonstrate parallel execution of tasks.

    • Create a class that implements the Runnable interface in Java.

    • Override the run() method to define the task that will run in a separate thread.

    • Create instances of the class and start them using the Thread class.

    • Use synchronization mechanisms like locks or semaphores to manage shared resources in a thread-safe manner.

  • Answered by AI
  • Q2. Explain in details about the Java Collections API.
  • Ans. 

    Java Collections API provides a set of classes and interfaces to store and manipulate collections of objects.

    • Includes interfaces like List, Set, and Map for different types of collections

    • Provides classes like ArrayList, HashSet, and HashMap for implementing collections

    • Offers utility classes like Collections for common operations on collections

    • Introduced in Java 2 and has been expanded in subsequent versions

  • Answered by AI

Skills evaluated in this interview

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

2 coding questions .array or string helpful

Embibe Interview FAQs

How many rounds are there in Embibe Softwaretest Engineer interview?
Embibe interview process usually has 3 rounds. The most common rounds in the Embibe interview process are Coding Test, One-on-one Round and HR.
What are the top questions asked in Embibe Softwaretest Engineer interview?

Some of the top questions asked at the Embibe Softwaretest Engineer interview -

  1. Don't remember the inerview quest...read more
  2. don't remember interview quest...read more

Tell us how to improve this page.

Embibe Softwaretest Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.2k Interviews
ElasticRun Interview Questions
3.5
 • 249 Interviews
Oyo Rooms Interview Questions
3.3
 • 227 Interviews
Unacademy Interview Questions
3.0
 • 208 Interviews
upGrad Interview Questions
3.7
 • 208 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
LivSpace Interview Questions
3.6
 • 140 Interviews
CMS IT Services Interview Questions
3.1
 • 131 Interviews
View all
Embibe Softwaretest Engineer Salary
based on 5 salaries
₹9.9 L/yr - ₹15.8 L/yr
127% more than the average Softwaretest Engineer Salary in India
View more details

Embibe Softwaretest Engineer Reviews and Ratings

based on 2 reviews

1.9/5

Rating in categories

1.4

Skill development

1.9

Work-life balance

2.3

Salary

1.4

Job security

1.9

Company culture

1.4

Promotions

1.4

Work satisfaction

Explore 2 Reviews and Ratings
Content Writer
79 salaries
unlock blur

₹2.2 L/yr - ₹8.2 L/yr

Project Manager
78 salaries
unlock blur

₹5 L/yr - ₹18.5 L/yr

Content Researcher
69 salaries
unlock blur

₹2 L/yr - ₹10.4 L/yr

SME
62 salaries
unlock blur

₹2.4 L/yr - ₹8.9 L/yr

Content Analyst
49 salaries
unlock blur

₹2.4 L/yr - ₹6.6 L/yr

Explore more salaries
Compare Embibe with

BYJU'S

3.1
Compare

Unacademy

3.0
Compare

upGrad

3.7
Compare

Toppr

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