Upload Button Icon Add office photos

Filter interviews by

PrepBytes Interview Questions and Answers

Updated 15 Feb 2023

PrepBytes Interview Experiences

Popular Designations

3 interviews found

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

I applied via Company Website and was interviewed before Feb 2022. There were 2 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 - One-on-one 

(5 Questions)

  • Q1. Some backend questions like what is middleware
  • Q2. Json Web Token token
  • Q3. What is the Path for localhost
  • Ans. 

    The path for localhost is typically http://localhost:portNumber

    • The default port number for HTTP is 80

    • The port number can be changed in the server configuration

    • Examples: http://localhost:8080, http://localhost:3000

  • Answered by AI
  • Q4. What is Cors Operation
  • Ans. 

    CORS (Cross-Origin Resource Sharing) is a security feature that allows web pages to make requests to a different domain.

    • CORS is used to prevent malicious websites from accessing sensitive data on other websites.

    • It is implemented by adding special headers to HTTP requests and responses.

    • CORS can be configured on the server-side to allow or deny access from specific domains.

    • Examples of CORS-enabled resources include fonts...

  • Answered by AI
  • Q5. Implementation of CORS & middleware
  • Ans. 

    CORS is implemented using middleware to allow cross-origin requests.

    • CORS (Cross-Origin Resource Sharing) is a security feature that allows resources to be shared across different domains.

    • Middleware is a software layer that sits between the application and the server, allowing for additional functionality to be added.

    • To implement CORS, middleware is used to add the necessary headers to the response, allowing cross-origi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In my time interview is going pretty easy to hire.

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic simple question

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence and communication skills

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (51)

Intern Interview Questions & Answers

user image Anonymous

posted on 5 May 2021

I was interviewed before May 2020.

Interview Questionnaire 

1 Question

  • Q1. About past experiences and basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate difficulty

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Equation, ratio and proportion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Realted to my previous job

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in answering to the interviewer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Create specific components
  • Ans. 

    Creating specific components for software development

    • Identify the requirements for the component

    • Design the component architecture

    • Implement the component using appropriate programming languages and tools

    • Test the component for functionality and performance

    • Integrate the component into the larger software system

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

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 

In first round, interviewer asked 2 coding questions and to write code on the call itslef.

Round 3 - Technical 

(2 Questions)

  • Q1. HLD - High level Design
  • Q2. Design a system similar to BookMyShow
  • Ans. 

    Design a system similar to BookMyShow for booking tickets for events and movies.

    • User registration and login system

    • Event and movie listing with details and show timings

    • Seat selection and booking process

    • Payment gateway integration

    • Booking history and ticket download option

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. LLD - Low level design
Round 5 - Technical 

(1 Question)

  • Q1. Database schema design

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Technical Project discussion

I was interviewed in Feb 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

In the first inerview round, I was asked two problems, that were based on Data Structures. 

I realized a key point in this round : that sometimes, the interviewer is wrong, and you are right. Still, you should not argue with the interviewer, rather, just accept, and move on. 

This happened in the first coding problem itself, when, I actually used a "map" in c++. The interviewer asked me, to use an "unordered map" Instead of map, saying, that using an unordered map would make the insertion cost O(1) instead of O(log(n)). I refused to this by saying, that using unordered map is risky, as in case of a lot of collisions, it could go O(n). 

Still, the interviewer said, that I were wrong, and said that he had done some competitive programming himself, and he never faced a TLE verdict because of using unordered map. 

And I knew very well, that an Anti-Hash-Test could be created, to enforce a TLE verdict. The interviewer went on to saying that "every competitive programmer in the world would never use a map, rather, always use unordered map".

I slightly smiled to this, but agreed, and later cleared that interview, because of the smooth second problem.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Determine if two strings are anagrams of each other by checking if they can be rearranged to form the other string.

    • Create a frequency map of characters for both strings and compare them.

    • Sort both strings and compare them.

    • Use a set to store characters and their counts for each string, then compare the sets.

  • Answered by AI
  • Q2. 

    Distribute N Candies Among K People

    Explanation: Sanyam wishes to distribute 'N' candies among 'K' friends. The friends are arranged based on Sanyam's order of likeness. He initially distributes candies s...

  • Ans. 

    Distribute N candies among K friends in Sanyam's order of likeness, incrementing distribution by K each round.

    • Distribute candies starting from 1st friend, incrementing by K each round

    • If remaining candies are fewer than what a friend is supposed to receive, stop distribution

    • Output the number of candies each friend ends up with at the end of distribution

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

I were asked several questions involving DBMS. I was given data of patients of entire country, and was asked to make a dataBase for the same.

  • Q1. How would you create a database to store the data of all the patients in a country?

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Maharaja Surajmal Institute Of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaGeeksforGeeks interview preparation:Topics to prepare for the interview - Data Structures, Competitive Coding, Algorithms, Dynamic Programming, GraphsTime required to prepare for the interview - 2 yearsInterview preparation tips for other job seekers

Tip 1 : I did a lot of problems on Codeforces, Codechef and other online platforms
Tip 2 : Apart from normal CP, it is better to do some interview prep separately
Tip 3 : Must note - you need to have development skills as well to clear the projects and DBMS interview.

Application resume tips for other job seekers

Tip 1 : Make a 1 page resume only
Tip 2 : It is good to have some projects and decent ranks on your resume

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic react questions
Round 2 - Coding Test 

Basic DSA Questions of array

PrepBytes Interview FAQs

How many rounds are there in PrepBytes interview?
PrepBytes interview process usually has 2 rounds. The most common rounds in the PrepBytes interview process are Resume Shortlist and One-on-one Round.
How to prepare for PrepBytes interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at PrepBytes. The most common topics and skills that interviewers at PrepBytes expect are Javascript, Startup, AWS, Algorithms and B2B Sales.
What are the top questions asked in PrepBytes interview?

Some of the top questions asked at the PrepBytes interview -

  1. What is the Path for localh...read more
  2. What is Cors Operat...read more
  3. Implementation of CORS & middlew...read more

Tell us how to improve this page.

PrepBytes Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Unacademy Interview Questions
3.0
 • 206 Interviews
upGrad Interview Questions
3.7
 • 198 Interviews
Simplilearn Interview Questions
3.2
 • 101 Interviews
Coding Ninjas Interview Questions
3.8
 • 49 Interviews
GeeksForGeeks Interview Questions
3.2
 • 39 Interviews
HackerRank Interview Questions
4.2
 • 23 Interviews
InsanelyGood Interview Questions
4.1
 • 19 Interviews
InterviewBit Interview Questions
3.6
 • 8 Interviews
CodeChef Interview Questions
3.2
 • 1 Interview
LeetCode Interview Questions
5.0
 • 1 Interview
View all

PrepBytes Reviews and Ratings

based on 33 reviews

3.7/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.8

Salary

3.4

Job security

3.8

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 33 Reviews and Ratings
Sales Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PrepBytes with

GeeksForGeeks

3.2
Compare

CodeChef

3.2
Compare

HackerRank

4.2
Compare

InterviewBit

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