Upload Button Icon Add office photos
Engaged Employer

i

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

Testbook.com Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 562 Reviews

Filter interviews by

Testbook.com Software Engineer Interview Questions and Answers

Updated 30 Dec 2024

Interview questions from similar companies

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Android architecture mvvm mvc kotlin
  • Q2. Coroutines flows
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Binary trees: if symmetric, easy string question using hashmap
  • Q2. If we are hosting a live test how to show real time ranking, HLD for this and what algorithms can we use
Round 2 - Technical 

(1 Question)

  • Q1. Database schema design for a feature where user can be free, gold, platinum.
  • Ans. 

    Use a user table with a column for user type (free, gold, platinum)

    • Create a user table with columns for user ID, name, email, user type

    • Use a separate table for user types with columns for type ID and type name

    • Establish a one-to-many relationship between user and user type tables

    • Example: user table - user_id, name, email, type_id; user_type table - type_id, type_name

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. HLD for live rank dashboard for a live test where millions of users are doing test
  • Ans. 

    High-level design for a live rank dashboard for a live test with millions of users.

    • Use a scalable architecture to handle millions of users concurrently.

    • Implement real-time data processing to update ranks dynamically.

    • Utilize caching mechanisms to improve performance and reduce load on the database.

    • Design a user-friendly interface with intuitive data visualization.

    • Include features for filtering, sorting, and searching to

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

It was a mix of mathematical aptitude, logical ability, and puzzles along with 2 programming questions of easy and medium level. Time was enough and no sectional time was present. 1-2 MCQs on SQL were also present.

This round was immediately followed by an SHL aptitude test which was basically a quick limited time check of your verbal ability and math because many questions were to be done in 1 hour.

  • Q1. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    You need to make the modifications in the input matrix.
    You do not need to print anything, it has already been taken care of.

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Easy

It was an online video interview round on HackerEarth with simultaneous code option. It was mostly justifying your resume in the first 15 minutes. After that OOPS was majorly asked. Basics of programming including questions on STL were asked. A class which required inheritance was asked by the interviewer to write. I was helped by the interviewer if i got stuck somewhere, Some questions on implementation of hashmaps and priority queues were also asked. A puzzle was asked which luckily struct to me at that moment.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as Software Engineer in DelhiEligibility criteria7 CGPAToppr interview preparation:Topics to prepare for the interview - DBMS, OOPS, Data structures, Dynamic Programming, Graphs, Algorithms, Sorting searching, Compiler designTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Never give up
Tip 2 : When u start a topic, don't move on to next topic before you are 100% confident in previous topic
Tip 3 : Try to give maximum time on basics of a topic especially OOPS
Tip 4 - Practice Atleast 250 Questions
Tip 5 - Ex- Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Write only those things in resume in which you are 100% confident
Tip 2 : Write maximum projects you have and be ready to explain them thoroughly
Tip 3 : Don't make any silly spelling mistakes on resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. About cypress and manual
Round 2 - One-on-one 

(1 Question)

  • Q1. Cultural fit interview
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is OOPS concepts.
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. What is PDO and uses in PHP.
  • Ans. 

    PDO stands for PHP Data Objects, a database access layer providing a uniform method of access to multiple databases.

    • PDO is a PHP extension that provides a data-access abstraction layer.

    • It supports multiple database systems like MySQL, PostgreSQL, SQLite, etc.

    • PDO helps prevent SQL injection attacks by using prepared statements.

    • It allows for error handling and supports transactions.

    • Example: $pdo = new PDO('mysql:host=loc...

  • 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 2023. 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 - Coding Test 

1 OA round followed by DSA questions , MCQ on development

Round 3 - Assignment 

2 After clearing OA , A assignment was given on FULL stack and you have to complete it within 2 days process.

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed in Aug 2022. There were 4 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 

2 coding questions with aptitude question(logical aptitude and quantitative aptitude)

Round 3 - Coding Test 

This was a Machine Coding. We need to design a system and then they will check our design by running test cases. It was 2.5 hrs long.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Basic questions on computer core subjects(Deadlock, Networking, Tcp connection, process scheduling etc, DNS Lookup etc)
  • Q2. Questions on React, Node and the libraries which I used in my project(My project was a full stack project)

Interview Preparation Tips

Topics to prepare for BrightCHAMPS Software Developer interview:
  • Computer Networking
  • Operating Systems
  • Database Management
  • React.Js
  • Data Structures
Interview preparation tips for other job seekers - Prepare your resume well and be prepared for project based questions. ( They will deep dive in that subject). Besides that have a basic understanding of core cs subjects and common dsa problems.

Testbook.com Interview FAQs

How many rounds are there in Testbook.com Software Engineer interview?
Testbook.com interview process usually has 1 rounds. The most common rounds in the Testbook.com interview process are Coding Test.

Tell us how to improve this page.

Testbook.com Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Testbook.com Software Engineer Salary
based on 53 salaries
₹11 L/yr - ₹45.2 L/yr
207% more than the average Software Engineer Salary in India
View more details

Testbook.com Software Engineer Reviews and Ratings

based on 8 reviews

3.8/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.6

Salary

3.8

Job security

3.4

Company culture

3.9

Promotions

3.5

Work satisfaction

Explore 8 Reviews and Ratings
Senior Business Development Associate
125 salaries
unlock blur

₹4.3 L/yr - ₹8.5 L/yr

SME
123 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Business Development Associate
116 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Business Development Executive
69 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Software Developer
59 salaries
unlock blur

₹7.5 L/yr - ₹28.8 L/yr

Explore more salaries
Compare Testbook.com with

BYJU'S

3.1
Compare

Unacademy

3.0
Compare

upGrad

3.7
Compare

MeritNation

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