Premium Employer

i

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

BONbLOC Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BONbLOC Associate Software Engineer Interview Questions and Answers

Updated 5 Aug 2023

BONbLOC Associate Software Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Jul 2022. There were 3 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 

(2 Questions)

  • Q1. Question related to React JS (which I've applied for) like Hooks Concept, Routes .
  • Q2. Basic JavaScript coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. React Hooks concept-based coding question. Show Increment, decrement button with functionality using Hooks Concept
  • Q2. Write a code for toggle switching with CSS.
  • Ans. 

    Toggle switching with CSS code example

    • Use a checkbox input and label elements

    • Apply CSS styles to hide the checkbox and style the label as a button

    • Use the :checked pseudo-class to toggle styles based on checkbox state

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong basic knowledge in Front-end or Back-end (which ever you're applying for)
Prepare basic coding and interview related questions before interview

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude verbal, numerical and Analytical Questions

Round 2 - Coding Test 

2 coding Question that you can solve easily

Round 3 - Technical 

(1 Question)

  • Q1. Question on java object oriented programming then one written code was asked to solve on paper and other Question about resume projects.
Round 4 - HR 

(1 Question)

  • Q1. Scenario based Questions and project based Question where asked
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Jaypee Institute of Information Technology, Noida and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Two coding questions and 15 mcq

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on priority queue
  • Q2. Question on dp , stack were askef
Round 3 - Technical 

(2 Questions)

  • Q1. Graph related questions
  • Q2. Database related questions
Round 4 - HR 

(2 Questions)

  • Q1. If you are fine with flexible timings
  • Ans. 

    Yes, I am fine with flexible timings as it allows me to manage my work-life balance effectively.

    • I am comfortable with flexible timings as it helps me accommodate personal commitments.

    • I believe in focusing on productivity rather than strict working hours.

    • I am adaptable and can work efficiently regardless of the time of day.

    • I can provide examples of times when flexible timings have benefited my work performance.

  • Answered by AI
  • Q2. Discussed about projects
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They ask generally about yourself and your experience background
Round 2 - Technical 

(3 Questions)

  • Q1. Most of the question related to NLP.
  • Q2. What is the order of efficiency among MobileNet, DenseNet, and EfficientNet?
  • Ans. 

    EfficientNet is the most efficient, followed by MobileNet and then DenseNet.

    • EfficientNet is the most efficient among the three models due to its use of compound scaling and efficient building blocks.

    • MobileNet is less efficient than EfficientNet but more efficient than DenseNet, as it uses depthwise separable convolutions to reduce computational cost.

    • DenseNet is the least efficient among the three models, as it has a hi...

  • Answered by AI
  • Q3. Did they request me to write a lambda function in python? How handle the files using pandas
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Where do you envision yourself in the next five years?
  • Ans. 

    In the next five years, I envision myself leading a team of software engineers, working on cutting-edge technologies, and making significant contributions to the company's success.

    • Leading a team of software engineers

    • Working on cutting-edge technologies

    • Making significant contributions to the company's success

  • Answered by AI
  • Q2. What interests you about this job?
  • Ans. 

    I am excited about the opportunity to work on complex software projects and contribute to innovative solutions.

    • Opportunity to work on complex software projects

    • Contribute to innovative solutions

    • Excited about the challenges and learning opportunities

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are the various data types available in JavaScript?
  • Ans. 

    Various data types in JavaScript include string, number, boolean, object, array, null, and undefined.

    • String: 'hello'

    • Number: 42

    • Boolean: true or false

    • Object: { key: value }

    • Array: [1, 2, 3]

    • Null: null

    • Undefined: undefined

  • Answered by AI
  • Q2. What is hoisting in JavaScript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The problem statement was given to solve.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain liskov substitution principle with examples?
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes should be able to extend the functionality of base classes without changing their behavior.

    • Violating this principle can lead to unexpected behavior in the program.

    • Example: If a Square class i...

  • Answered by AI
  • Q2. Importance of abstraction
  • Ans. 

    Abstraction is crucial in software development to simplify complexity, improve readability, and promote reusability.

    • Abstraction helps in hiding unnecessary details and focusing on essential features.

    • It allows developers to work at a higher level of understanding without getting bogged down in implementation details.

    • Abstraction promotes code reusability by creating modular and reusable components.

    • It improves code readab...

  • Answered by AI
  • Q3. Importance of Unit testing in clean close
  • Ans. 

    Unit testing is crucial in ensuring clean code by verifying the functionality of individual units of code.

    • Unit testing helps in identifying bugs and errors early in the development process.

    • It ensures that each unit of code works as expected in isolation.

    • Unit tests act as documentation for the codebase, making it easier for new developers to understand and modify the code.

    • It promotes code reusability and maintainability...

  • Answered by AI

Skills evaluated in this interview

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of filters
  • Ans. 

    Types of filters include low-pass, high-pass, band-pass, and band-stop filters.

    • Low-pass filter allows frequencies below a certain cutoff frequency to pass through.

    • High-pass filter allows frequencies above a certain cutoff frequency to pass through.

    • Band-pass filter allows a specific range of frequencies to pass through.

    • Band-stop filter blocks a specific range of frequencies from passing through.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project Details
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What challenges you are facing in this field of challenges?

BONbLOC Interview FAQs

How many rounds are there in BONbLOC Associate Software Engineer interview?
BONbLOC interview process usually has 3 rounds. The most common rounds in the BONbLOC interview process are Technical and Resume Shortlist.
What are the top questions asked in BONbLOC Associate Software Engineer interview?

Some of the top questions asked at the BONbLOC Associate Software Engineer interview -

  1. Write a code for toggle switching with C...read more
  2. Question related to React JS (which I've applied for) like Hooks Concept, Route...read more
  3. React Hooks concept-based coding question. Show Increment, decrement button wi...read more

Tell us how to improve this page.

BONbLOC Associate Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join BONbLOC AI - IoT - Blockchain - IT Modernization

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 436 Interviews
BigBasket Interview Questions
3.9
 • 356 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
Uber Interview Questions
4.2
 • 166 Interviews
Ola Cabs Interview Questions
3.4
 • 143 Interviews
Urban Company Interview Questions
3.4
 • 133 Interviews
Dunzo Interview Questions
3.4
 • 76 Interviews
View all
BONbLOC Associate Software Engineer Salary
based on 25 salaries
₹3 L/yr - ₹6 L/yr
35% less than the average Associate Software Engineer Salary in India
View more details

BONbLOC Associate Software Engineer Reviews and Ratings

based on 4 reviews

2.8/5

Rating in categories

4.3

Skill development

3.9

Work-life balance

1.9

Salary

2.2

Job security

3.6

Company culture

2.2

Promotions

3.6

Work satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
42 salaries
unlock blur

₹5 L/yr - ₹14.4 L/yr

Software Engineer
30 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Associate Software Engineer
25 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Lead Software Engineer
12 salaries
unlock blur

₹10.2 L/yr - ₹26 L/yr

Software Developer
9 salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Explore more salaries
Compare BONbLOC with

Urban Company

3.4
Compare

Zomato

3.8
Compare

Swiggy

3.8
Compare

BigBasket

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