Upload Button Icon Add office photos
Premium Employer

i

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

BetterPlace Safety Solutions

Compare button icon Compare button icon Compare
3.3

based on 156 Reviews

Filter interviews by

BetterPlace Safety Solutions Software Development Engineer II Interview Questions and Answers

Updated 8 Feb 2022

BetterPlace Safety Solutions Software Development Engineer II Interview Experiences

1 interview found

I was interviewed in Jan 2022.

Round 1 - Coding Test 

It's was good . .Asked DSA questions

Round 2 - HR 

(2 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
Round 3 - Technical 

(1 Question)

  • Q1. Basic Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont waste ur time by giving interview here. . Simple they are wasting ur time. .
1st round was DSA it was good. .
2nd Round was Cultural fitment evaluation its good. .
3rd round was technical round. Interviewer joined the meet n didn't introduced himself n didn't ask introduction also. I was surprised . . didn't even ask any major technical questions .
Asked some basic questions for 15 min n said I'm done with interview 😂.
May be they don't want to hire people simply they are wasting our time...
Worst experience with interviewer.
If they don't want to hire or if they meet their requirements they should inform us before wasting our time. .

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic Hackerrank test

Round 2 - Technical 

(1 Question)

  • Q1. Mostly project discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Javascript related questions like temporal dead zone, hoisting, closures, scopes and differences, output based questions, scenario based questions etc
  • Q2. 2 Coding questions one was a mix of array and objects and another was to create prototype function for array flat
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion indepth related to microservices architecture for any project, Optimisations for a project, Behavioural questions, Deployment processes and How i handle conflicts, How to align high priorities t...
Round 3 - HR 

(1 Question)

  • Q1. Intro and rest basic discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Get good/solid understanding of basics of anything also be curious to learn more tech stacks which could align to same.
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions, medium hard

Round 2 - Technical 

(2 Questions)

  • Q1. Greedy Algorithm, simple jumps question, easily approachable by greedy algorithm
  • Q2. Binary Search, simple array based
Round 3 - Technical 

(2 Questions)

  • Q1. DBMS, Projects, SQL Queries
  • Q2. 2 coding questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Dsa problems dp and tress problem

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Projects and intership

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Short term goals
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Easy interview questions in Java

BetterPlace Safety Solutions Interview FAQs

How many rounds are there in BetterPlace Safety Solutions Software Development Engineer II interview?
BetterPlace Safety Solutions interview process usually has 3 rounds. The most common rounds in the BetterPlace Safety Solutions interview process are Coding Test, HR and Technical.
How to prepare for BetterPlace Safety Solutions Software Development Engineer II 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 BetterPlace Safety Solutions. The most common topics and skills that interviewers at BetterPlace Safety Solutions expect are Algorithms, Data Structures, Java, MVC and OOPS.

Tell us how to improve this page.

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 384 Interviews
G4S Interview Questions
4.0
 • 93 Interviews
DotPe Interview Questions
3.3
 • 36 Interviews
Junglee Games Interview Questions
3.2
 • 32 Interviews
Hike Interview Questions
3.9
 • 31 Interviews
Securitas Interview Questions
3.8
 • 30 Interviews
View all
BetterPlace Safety Solutions Software Development Engineer II Salary
based on 12 salaries
₹10.9 L/yr - ₹26.4 L/yr
37% less than the average Software Development Engineer II Salary in India
View more details
Assistant Manager
29 salaries
unlock blur

₹4.5 L/yr - ₹11.5 L/yr

Senior Operations Analyst
28 salaries
unlock blur

₹2.2 L/yr - ₹5.1 L/yr

Operations Analyst
23 salaries
unlock blur

₹1.8 L/yr - ₹2.8 L/yr

Manager
20 salaries
unlock blur

₹6.2 L/yr - ₹14.6 L/yr

Product Manager
17 salaries
unlock blur

₹13 L/yr - ₹34 L/yr

Explore more salaries
Compare BetterPlace Safety Solutions with

Securitas

3.8
Compare

Security and Intelligence Services (India)

4.1
Compare

G4S

4.0
Compare

Tops Security

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