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

Clear (1)

Box8 Sde1 Interview Questions and Answers

Updated 27 Oct 2022

Box8 Sde1 Interview Experiences

2 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 27 Oct 2022

I was interviewed in Apr 2022.

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 Resume tips
Round 2 - Coding Test 

Hackerrank test of 1.5 hrs. It had 2 questions of medium level.

Round 3 - Technical 

(1 Question)

  • Q1. Coding question, puzzles and Projects' discussion
Round 4 - Technical 

(1 Question)

  • Q1. Projects' discussion, 1 coding question, System design question and previous experiences based questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and stay calm. If any topic asked in the interview is not known to you, you can let them know that you aren't confident in that topic.

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

Sde1 Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2022

I applied via Campus Placement

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 Resume tips
Round 2 - Coding Test 

It had both aptitude and coding problems

Round 3 - Technical 

(1 Question)

  • Q1. They started with general introduction and why I wanted to join Box8. They had quick look at my projects and then started with DSA problems

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong hold over data structures and algorithms.

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Interview questions from similar companies

Sde1 Interview Questions & Answers

Swiggy user image Anonymous

posted on 16 Jul 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Design splitwise. Low Level question. More like Machine Coding

Round 2 - Coding Test 

Question on Strings and DP

Round 3 - HM Round 

(2 Questions)

  • Q1. DynamoDB Working
  • Q2. General Discussion regarding projects in previous firm

Sde1 Interview Questions & Answers

Swiggy user image Anonymous

posted on 6 Feb 2023

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

I applied via Referral and was interviewed before Feb 2022. There were 2 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Asked Likes and dislikes
  • Q2. Question related to company

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn and grow, and work hard and work hard , Make

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: They selected 10 students from our college from CS and IT .They are looking for guys with extra projects done during college .App development will be a bonus ,contribution to open source and competitive programming will help for shortlisting.
Some of my friends had research papers published and they too got selected.

Round: Test
Experience: Have to write code snippet for 4 questions in 45 minutes
1.Difference between hour hand and minute hand
2.longest palindromic sub string.
3.Product Array puzzle
4.Some question related to matrix

Tips: All question were from geeksforgeeks
So practice it well ..u will make through it

Round: Test
Experience: Long Discussion on projects
They will scan each and every line of your Resume ,so dont write bullshits..
I wrote about interest in AI and got screwed..Discussion on college projects and final year project.
Then asked me to design a snake and ladder game OOPS concepts
Told me to find sum of all elements of sub matrix..(hint pre-processing the matrix)
Asked me about sessions and cookies
Gave a query to write on database indexing (dont remember exactly)
Asked me the code of the difference between hour hand and minute hand and extended it wid the second hand
Asked me as how to implement a dictionary
asked about TRIES ,CODE SNIPPET ON THE SHARED DOCS
One of my friend was asked to implement (set) of STL
Tips: The interviewer was cool guy..helped me a lot always made me comfortable.Interact with them as much as possible

Round: Test
Experience: Wid the CTO of the company .
Started wid the projects again .ACID properties,Database transactions,Concurrency Control
Optimization in database.
Then he asked me to code a function
Given a hash function applied on letters of English words ,un-hash it.Took me 45 minutes to reach the solution ,he helped me a lot.
Asked me to write the code for diameter of a binary tree
Asked me write the code for Boolean Matrix
One of my friend was asked to a question in which there was a bug in a m*n matrix and we have to find the bug(hint dfs or bfs)
Tips: keep calm ,,just keep talking ad he will help u a lot...

Round: HR
Experience: This was the toughest round for me...I had cleared all the rounds but they rejected me in the HR round ,,,dont know where I screwed..Learn every thing of Zomato..
They offered me an internship and thereafter they would look to give a PPO ...!!!lets see what happens

Skills: Coding Skills And Knowledge On Data Structures
Duration: 3
College Name: NIT Srinagar

Interview Questionnaire 

9 Questions

  • Q1. Write a regex for email validation?
  • Ans. 

    Regex for email validation

    • Start with a string of characters followed by @ symbol

    • Followed by a string of characters and a period

    • End with a string of characters with a length of 2-6 characters

    • Allow for optional subdomains separated by periods

    • Disallow special characters except for . and _ in username

  • Answered by AI
  • Q2. Parse the XML? and store the output in JSON. Discussed different approaches?
  • Q3. Print prime numbers in a given range and optimize the solution?
  • Ans. 

    Print prime numbers in a given range and optimize the solution.

    • Use Sieve of Eratosthenes algorithm to generate prime numbers efficiently

    • Start with a boolean array of size n+1, mark all as true

    • Loop through the array and mark all multiples of each prime as false

    • Print all the indexes that are still marked as true

  • Answered by AI
  • Q4. Puzzle – 25 horses – 5 lanes, find fastest 3 horses?
  • Q5. Web related questions on Sessions and cookies?
  • Q6. A lot of discussion on my resume, experience etc
  • Q7. Find angle between hour hand and minute hand in clock if time is given? Write a program or pseudo code?
  • Ans. 

    Find angle between hour and minute hand in a clock given the time.

    • Calculate the angle made by the hour hand with respect to 12 o'clock position

    • Calculate the angle made by the minute hand with respect to 12 o'clock position

    • Find the difference between the two angles and take the absolute value

    • If the angle is greater than 180 degrees, subtract it from 360 degrees to get the smaller angle

  • Answered by AI
  • Q8. A hash function was written to convert a string into a hash. Write a un-hash function to revert it(from hash to string)?
  • Ans. 

    To un-hash a string, use a reverse algorithm to convert the hash back to the original string.

    • Create a reverse algorithm that takes the hash as input and outputs the original string

    • Use the same logic as the hash function but in reverse order

    • If the hash function used a specific algorithm, use the inverse of that algorithm to un-hash the string

  • Answered by AI
  • Q9. He discussed about expectations and role. Asked me if I have any questions. He said to me “yaha aana hai to marwani padegi. tyar ho”? I smiled and asked what are the work timings? He said 9-9 and I was kin...

Interview Preparation Tips

General Tips: I applied through a recruiter. Then I got a call from Zomato HR. It was for LAMP developer profile. She asked me about my profile and also shared some expectations from the role. She asked me to come for F2F rounds to take the process further
Skills: Web development, JSON, Algorithm
College Name: na
Motivation: Overall process was not very tough. But they have start up culture. People work their for 11-12 hours a day. Sometimes on Saturday as well. So people who are geeks or have nothing in life to do except their job can go and join

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tell me about your self Why do you want to work in Oyo What is the life in Bangalore
  • Ans. 

    I am a dedicated professional with experience in management. I want to work in Oyo for its innovative approach to hospitality. Life in Bangalore is vibrant and diverse.

    • I have a strong background in management and leadership roles

    • I am attracted to Oyo for its innovative technology-driven approach to hospitality

    • Bangalore offers a vibrant cultural scene with diverse food options and entertainment

    • The city is known for its

  • Answered by AI
  • Q2. Same question
  • Q3. About salary

Analyst Interview Questions & Answers

Oyo Rooms user image Shobhit Shrivas

posted on 1 Nov 2015

I applied via Campus Placement

Interview Questionnaire 

7 Questions

  • Q1. I was asked 2 questions from a course called principle of economics, such as what is elasticity etc
  • Q2. It was again from my course work they asked me how to solve linear programming problem graphically
  • Q3. Then they asked me to tell me about my self
  • Q4. They asked me to estimate number of microwaves manufactured in india per year
  • Q5. Then I was asked what is my biggest achivement till now
  • Q6. Then I was asked if I have any question for them
  • Q7. He gave me 15 min to convence him so that he hirs me for his company

Interview Preparation Tips

Round: Resume Shortlist
Experience: They were mainly looking for people who has or worked in Start ups or who has some good PORs. They also shortlisted students with CGPA of more than 7.5.
Tips: Try taking good PORs and maintain a healthy CGPA. Make a one page resume.

Round: Technical Interview
Experience: It was good. This was my first interview, I was bit nurvous for obvious reasons but controlled my emotions perfectly. As interview progressed things started becoming normal.
Tips: Be confidant of what ever you speak. Try hidding you nervousness, its okay if you are not able to answer any question but make strong comeback in next.

Round: HR Interview
Experience: I was very confidant of myself and told some 8-9 qualities that I have and gave examples of where I used them in past.
Tips: Again be very confidant. Its okay if you fumble in between but make strong comeback. look into the eyes of interviewer it shows you are confidant. Don't lie, be yourself.

General Tips: Keep working hard, there is no subsitute of hardwork, even in IITs. And don't forget sometimes you have to loose small battels to win Wars.
All the best:)
Skills:
Duration: 8-10weeks
College Name: IIT Madras
Motivation: Oyo is progressing very fast and I wanted to be the part of there amazing journey.
Funny Moments: I kept looking into the eyes of both of my interviewer just to show them I was very confidant but the reality is I was very nervous and I was bluffing them:). After interview I had a headache.

Analyst Interview Questions & Answers

Oyo Rooms user image Sushant Dogra

posted on 2 Nov 2015

I applied via Campus Placement

Interview Preparation Tips

Round: Puzzle Interview
Experience: basic Guesstimation questtions,
for eg. estimate the no of sleeping all over the world right now.

Tips: Walk the interviewer through your thinking process.
donot make vague guesses.

Round: HR Interview
Experience: 1 Tell us 5 reasons why we should hire you.
2 being an electrical engineering student, why have you applied for a analytic s/operations job profile.

Skills: Ability To Cope Up With Stress, Guesstimation Cases
Duration: 2
College Name: IIT Madras

Interview Preparation Tips

Round: Group Discussion
Experience: 06 girls and 11 boy including me were present..when we all entered in confrence hall ..Miss Pavitra (HR ) did welcome us and offred some water. Topic was mentioned on board n gave 5 min to make bullet point. GD was about to start n there are so many over excited people started the topic .Time was spending like bullet train and i was thinking what time i start bcoz no one were allowing me to speak.at point i cauhght them let start..i made bullet point about pro and cons and i was describing as much i can..
Tips: Feel free mind n be composed..neither over excitec
Duration: 30 minutes

Round: Problem Statement
Experience: Boring introduction and situation activity
Tips: Nothing..you guys are smart.

Round: Test
Experience: Simple mathematic .profit n loss..n 2 days store operation work
Tips: Nothing
Duration: 9 hours
Total Questions: 20

College Name: IHM JAIPUR
Contribute & help others!
anonymous
You can choose to be anonymous

Box8 Interview FAQs

How many rounds are there in Box8 Sde1 interview?
Box8 interview process usually has 3-4 rounds. The most common rounds in the Box8 interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Box8 Sde1 interview?

Some of the top questions asked at the Box8 Sde1 interview -

  1. Projects' discussion, 1 coding question, System design question and previous ex...read more
  2. Coding question, puzzles and Projects' discuss...read more

Recently Viewed

INTERVIEWS

Plaid

No Interviews

INTERVIEWS

ToneTag

No Interviews

Tell us how to improve this page.

ServiceNow

Our employees have rated us 4.1 on AmbitionBox

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
Zomato Interview Questions
3.8
 • 309 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
Box8 Sde1 Salary
based on 5 salaries
₹11 L/yr - ₹23.5 L/yr
16% less than the average Sde1 Salary in India
View more details
Operations Manager
134 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Store Manager
72 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Operations Manager
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Operations Manager
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
22 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent