Upload Button Icon Add office photos
Engaged Employer

i

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

BYJU'S Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BYJU'S Associate Software Engineer Interview Questions and Answers

Updated 8 May 2024

BYJU'S Associate Software Engineer Interview Experiences

3 interviews 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 in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Via placement got this oppurtunity asked base questions
Coding test on java for factorial all ways
Database qstns

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 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. Manual testing interview questions like sanity, smoke regression etc with basic SQL queries.
  • Q2. Automation based questions
Round 3 - Technical 

(1 Question)

  • Q1. Automation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go to Byjus if only offer in your hand and if you have financial crisis. No career growth. No appraisals. It's just like a employee working hard for byjus to grow. Not employee friendly.

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Clarivate
Q2. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more

I applied via campus placement at BNM Institute of Technology, Bangalore and was interviewed before Jul 2021. There were 3 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 tips
Round 2 - Coding Test 

First round was coding test in online platform with 5 questions

Round 3 - Technical 

(2 Questions)

  • Q1. Settings a server in Express JS
  • Ans. 

    Setting up a server in Express JS involves creating an instance of the Express application and defining routes.

    • Create an instance of the Express application using the 'express' module

    • Define routes using the 'app.get', 'app.post', etc. methods

    • Listen for incoming requests using the 'app.listen' method

    • Configure middleware using the 'app.use' method

    • Handle errors using the 'app.use' method with an error handling middleware

  • Answered by AI
  • Q2. What are all join table query and Write an example to join 2 tables.
  • Ans. 

    Explaining join table query and providing an example of joining 2 tables.

    • Join table query is used to combine data from two or more tables based on a related column between them.

    • Types of join include inner join, left join, right join, and full outer join.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI

Interview Preparation Tips

Topics to prepare for BYJU'S Associate Software Engineer interview:
  • MERN
  • PERN
  • SQL
  • Backend Language
Interview preparation tips for other job seekers - Joining to this company as first job is bad idea
Try some other company and then you can switch to this

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

1 hours aptitude test

Round 2 - Coding Test 

Questions on arrays and string

Round 3 - Technical 

(1 Question)

  • Q1. Questions on DSA
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Database Design Question 

(2 Questions)

  • Q1. They asked us to design the database of a e-learning platform like upGrad.You have to handle login as well as lectures.
  • Q2. SQL query to fetch progress for given user id and course id

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn database designing in sql
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

Two dynamic programming challenges at the hard level on LeetCode and 10 medium-level SQL challenge.

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Tell me about your project?
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end functionality

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. What is useState, useEffect, useRedux?
  • Ans. 

    useState, useEffect, useRedux are hooks in React for managing state and side effects.

    • useState is a hook used for managing state in functional components.

    • useEffect is a hook used for handling side effects in functional components.

    • useRedux is not a built-in hook, but a common convention for using Redux with React.

  • Answered by AI
  • Q3. Tell me the changes too place in 2015 EcMascript?
  • Ans. 

    In 2015, EcmaScript 6 (ES6) was released with significant updates and new features.

    • Introduction of let and const for block-scoped variables

    • Arrow functions for more concise syntax

    • Classes for object-oriented programming

    • Template literals for string interpolation

    • Enhanced object literals and destructuring assignments

  • Answered by AI
  • Q4. Explain the flow about how API works?
  • Ans. 

    API works by allowing different software applications to communicate with each other through a set of rules and protocols.

    • API receives a request from a client application

    • API processes the request and interacts with the server

    • API sends back a response to the client application

    • Examples: REST API, SOAP API

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You must be thorough about your project.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain request lifecycle in rails?
  • Ans. 

    Request lifecycle in Rails involves routing, controller actions, rendering views, and responding to the client.

    • 1. Request comes in through the browser or API endpoint.

    • 2. Rails router determines which controller and action to route the request to.

    • 3. Controller action processes the request, interacts with the model, and prepares data for the view.

    • 4. View template is rendered with the data from the controller.

    • 5. Response ...

  • Answered by AI
  • Q2. Code Merge Sort using Ruby
  • Ans. 

    Implement Merge Sort algorithm in Ruby

    • Divide the array into two halves recursively

    • Merge the sorted halves back together

    • Use a helper method to merge the two halves

  • Answered by AI

Skills evaluated in this interview

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 Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Questions based on pervious project
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

BYJU'S Interview FAQs

How many rounds are there in BYJU'S Associate Software Engineer interview?
BYJU'S interview process usually has 2-3 rounds. The most common rounds in the BYJU'S interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in BYJU'S Associate Software Engineer interview?

Some of the top questions asked at the BYJU'S Associate Software Engineer interview -

  1. What are all join table query and Write an example to join 2 tabl...read more
  2. Settings a server in Express...read more
  3. Manual testing interview questions like sanity, smoke regression etc with basic...read more

Tell us how to improve this page.

BYJU'S Associate Software Engineer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Planet Spark Interview Questions
3.7
 • 366 Interviews
Whitehat jr Interview Questions
3.5
 • 305 Interviews
Unacademy Interview Questions
3.0
 • 208 Interviews
upGrad Interview Questions
3.7
 • 208 Interviews
Vedantu Interview Questions
3.3
 • 193 Interviews
Physicswallah Interview Questions
3.8
 • 193 Interviews
NxtWave Interview Questions
3.8
 • 177 Interviews
Simplilearn Interview Questions
3.2
 • 101 Interviews
View all
BYJU'S Associate Software Engineer Salary
based on 95 salaries
₹4 L/yr - ₹10 L/yr
9% more than the average Associate Software Engineer Salary in India
View more details

BYJU'S Associate Software Engineer Reviews and Ratings

based on 16 reviews

3.7/5

Rating in categories

3.9

Skill development

3.7

Work-life balance

4.0

Salary

2.5

Job security

3.2

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 16 Reviews and Ratings
Business Development Associate
11.5k salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Business Development Manager
4k salaries
unlock blur

₹5.6 L/yr - ₹16.7 L/yr

Business Development Executive
3.3k salaries
unlock blur

₹0.9 L/yr - ₹8 L/yr

Senior Business Development Associate
3k salaries
unlock blur

₹4.3 L/yr - ₹11 L/yr

BDA
2.3k salaries
unlock blur

₹1 L/yr - ₹10 L/yr

Explore more salaries
Compare BYJU'S with

Unacademy

3.0
Compare

Vedantu

3.3
Compare

Toppr

3.4
Compare

Whitehat jr

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