Upload Button Icon Add office photos
Engaged Employer

i

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

Box8 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Box8 Software Developer Intern Interview Questions and Answers

Updated 19 Oct 2024

Box8 Software Developer Intern Interview Experiences

1 interview found

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

I applied via campus placement at Malviya National Institute of Technology (NIT), Jaipur and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

3 coding questions, 1.5 hr

Interview Preparation Tips

Topics to prepare for Box8 Software Developer Intern interview:
  • DSA
  • Web Development

Interview questions from similar companies

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 11 am. Platform was quite well.

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously
  • Q2. 

    Minimum Cost to Destination

    You are given an NxM matrix consisting of '0's and '1's. A '1' signifies that the cell is accessible, whereas a '0' indicates that the cell is blocked. Your task is to compute ...

  • Ans. Backtracking

    Maintain a visited array and try to explore all the possibilities with the help of backtracking.

    1. Start with (0, 0) and mark it as visited and try to move in all 4 directions.
    2. Say at any point we are at (i, j) then the cost of reaching (x,y) will be the minimum of these four cases.
      1. Option 1 -  Left: cost of reaching from (i, j-1)
      2. Option 2 - Right: cost of reaching from (i, j+1)
      3. Option 3 - Up: 1 + cost of rea...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice data structure based questions.
Tip 2 : OOPS is very important.
Tip 3 : Prepare OS and DBMS for mcq.:

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Keep it short.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Use of model in laravel
  • Ans. 

    Models in Laravel are used to interact with the database and represent data.

    • Models in Laravel are used to perform database operations such as retrieving, inserting, updating, and deleting data.

    • Models help in organizing and structuring the data in the application.

    • Models in Laravel follow the MVC (Model-View-Controller) pattern.

    • Example: Creating a User model in Laravel to interact with the users table in the database.

  • Answered by AI
  • Q2. SQL get highest salary for employee
Round 2 - Technical 

(2 Questions)

  • Q1. SQL joins and types of joins
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • F...

  • Answered by AI
  • Q2. What is self join and realted question
Round 3 - HR 

(1 Question)

  • Q1. Previous projects and contributions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Coding question based on Linked List Arrays

Round 3 - One-on-one 

(1 Question)

  • Q1. DSA and DBMS were asked
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Software development lifecycle
  • Ans. 

    Software development lifecycle is a process of planning, designing, developing, testing, deploying, and maintaining software.

    • It involves various stages such as planning, analysis, design, implementation, testing, deployment, and maintenance.

    • Each stage has its own set of activities and deliverables.

    • It helps in ensuring that the software is developed efficiently and meets the requirements of the stakeholders.

    • It also help...

  • Answered by AI
  • Q2. App security & deployment in play store
  • Ans. 

    App security is crucial for deployment in Play Store. Follow best practices to ensure secure deployment.

    • Use HTTPS for all network communication

    • Implement secure authentication and authorization mechanisms

    • Regularly update and patch the app to fix security vulnerabilities

    • Use code obfuscation and encryption to protect against reverse engineering

    • Conduct regular security audits and penetration testing

    • Follow Google Play Store

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from basic
Prepare from your resume
Prepare from the projects you have worked

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Math Reasoning, Probability, Graph and pie charts, Indices, Trignometry, Geometry

Round 3 - Group Discussion 

Verbal communication and english speaking, grammer,

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and have the confidence on self. Be good listener.

I was interviewed in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. 

    Cycle Detection in a Directed Graph

    Given a directed graph, you need to determine whether or not the graph contains a cycle.

    Your function should return true if there is at least one cycle in the graph; ...

  • Ans. 

    I used DFS from every unvisited node. There is a cycle in a graph only if there is a back edge present in the graph.
    To find the back edge to any of its ancestor keep a visited array and if there is a back edge to any visited node then there is a loop and return true.

  • Answered Anonymously
  • Q2. 

    Next Permutation Problem Statement

    Given a permutation of ‘N’ integers, rearrange them to generate the lexicographically next greater permutation. A sequence is a permutation if it contains all integers f...

  • Ans. 

    Traverse from right and find the first item that is not following the descending order.
    Swap the found character with closest greater (or smallest greater) element on right side of it.
    After swapping, sort the string after the position of character found.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Validate BST Problem Statement

    Given a binary tree with N nodes, determine whether the tree is a Binary Search Tree (BST). If it is a BST, return true; otherwise, return false.

    A binary search tree (BST)...

  • Ans. 

    I gave him two three approaches.
    Brute force
    using utility class
    using in-order traversal:

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaBTech(IT, EC), Dual (IT & EC) with no active backlog.OYO interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Oops, System Design, Data Base, NetworksTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare Data Structures
Tip 2 : Solve atleast 300-400 problems
Tip 3 : Prepare computer science subjects for solving MCQ's

Application resume tips for other job seekers

Tip 1 : Projects around oops would be great
Tip 2 : Be confident about everything you write

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Php ,Oops
Round 2 - Technical 

(1 Question)

  • Q1. Security questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Join if you don't have only offer in your hand
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Bhagwan Parshuram Institute of Technology, Delhi and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Hard difficulty level DSA test, main emphasis on trees and graphs

Round 3 - Technical 

(3 Questions)

  • Q1. Project related questions
  • Q2. Questions on Javascript
  • Q3. Questions on Core subjects

Interview Preparation Tips

Topics to prepare for Chaayos Software Engineer interview:
  • DSA
  • OS
  • OOPS
  • Javascript
Interview preparation tips for other job seekers - Please prepare for DSA and Core subjects very well

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test was scheduled at 2:30 PM, IST. The test was conducted online, due to the ongoing pandemic situation. Webcam was required to be switched on during the complete duration of the test. I had solved 2/2 coding questions with all test cases successfully passing. Out of the 10 MCQ questions, I had done 6. Around 90 students sat for the online coding round, 19 were shortlisted for the interview. Those who had solved both coding questions were called for interview.

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Q2. 

    Problem Statement: Minimum Cost to Buy Ninja Blades

    Ninja Yuki wants to purchase ninja blades at the Spring Fair in his village. Initially, he has 0 blades, and his goal is to buy 'N' blades. The merchant...

Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a pure DSA based round. Two questions were asked in this round. The interviewer was quite good, and helped in between.

  • Q1. 

    First Unique Character in a Stream Problem Statement

    Given a string A consisting of lowercase English letters, determine the first non-repeating character at each point in the stream of characters.

    Examp...

  • Q2. 

    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...

Round 3 - Video Call 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

This round was also again focused on DSA. Two interviewers were present. This round was very extensive and everything was asked in depth as well as they asked to write the codes as well for all the questions. I was also asked to explain my projects, they were based on ML. Many aspects of OOPs, POP, memory allocation was asked as well.

  • Q1. 

    Maximum Sum of Index-Multiplied Rotations

    Given an array ARR of size N, determine the maximum sum of i * ARR[i] possible through any number of rotations. Both left and right rotations are allowed, and can...

  • Q2. 

    Averages of Levels in Binary Tree Problem Statement

    Given an arbitrary binary tree consisting of 'N' nodes numbered from 1 to 'N'. Each node is associated with a positive integer value. Your task is to ca...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 6.45 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, Machine Learning, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Primary skill to be developed is problem solving, i.e proficient in data structures and algorithms.
Tip 2 : After this, practice competitive programming, start giving contests, this will make you faster.
Tip 3 : Then take any technology, e.g., machine learning, web development etc., make few but good projects using these technologies.

Application resume tips for other job seekers

Tip 1 : Make it short, 1-2 pages max. Only mention those projects that you know the best.
Tip 2 : While mentioning projects, do mention numbers in them, like what was the accuracy(in case of ML projects).

Final outcome of the interviewSelected

Skills evaluated in this interview

Box8 Interview FAQs

How many rounds are there in Box8 Software Developer Intern interview?
Box8 interview process usually has 1 rounds. The most common rounds in the Box8 interview process are Coding Test.

Tell us how to improve this page.

Box8 Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
Zomato Interview Questions
3.7
 • 308 Interviews
Oyo Rooms Interview Questions
3.3
 • 217 Interviews
McDonald's Interview Questions
4.1
 • 121 Interviews
Hyatt Regency Interview Questions
4.1
 • 43 Interviews
Pizza Hut Interview Questions
3.9
 • 41 Interviews
JW Marriott Interview Questions
4.2
 • 39 Interviews
Ihg Group Interview Questions
3.9
 • 35 Interviews
View all
Operations Manager
134 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Store Manager
72 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Senior Operations Manager
53 salaries
unlock blur

₹3.6 L/yr - ₹9.2 L/yr

Junior Operations Manager
27 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Business Analyst
22 salaries
unlock blur

₹7 L/yr - ₹17 L/yr

Explore more salaries
Compare Box8 with

Faasos Food Services

4.1
Compare

InnerChef

4.5
Compare

EAT.

4.1
Compare

Swiggy

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