Upload Button Icon Add office photos

Filter interviews by

BigBinary Software Engineer Interview Questions and Answers for Freshers

Updated 14 Dec 2023

BigBinary Software Engineer Interview Experiences for Freshers

1 interview found

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

I applied via Referral and was interviewed before Dec 2022. There were 4 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 

DSA questions of medium to hard level

Round 3 - Technical 

(2 Questions)

  • Q1. System Design of URL shortner
  • Ans. 

    System design of URL shortener

    • Use a database to store original URLs and corresponding short URLs

    • Generate short URLs using a unique algorithm (e.g. base62 encoding)

    • Implement a redirect service to redirect short URLs to original URLs

    • Consider scalability and performance by using caching and load balancing

    • Ensure security by validating and sanitizing input URLs

  • Answered by AI
  • Q2. DSA questions based on arrays
Round 4 - HR 

(1 Question)

  • Q1. Conversation with HR about the company and offer

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions on node js
  • Q2. Coding round which had 2 questions
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 - Aptitude Test 

General quants reasoning verbal questions

Round 3 - Coding Test 

Simple pattern questions and small prgms

Round 4 - HR 

(3 Questions)

  • Q1. General questions describing ur personality , integrity and also ur responsibility
  • Q2. Tell me about ur self
  • Q3. How will u face controversy in work place

Interview Preparation Tips

Interview preparation tips for other job seekers - practice practice practice till u succeed and do not loose ur hope

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed in Apr 2022. There were 5 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 - Aptitude Test 

Basic aptitude questions. Just keep a track of time

Round 3 - Coding Test 

2nd round is coding round. You can expect Leetcode medium questions. The topics asked are Linked list, Trees and arrays.

Round 4 - Coding Test 

3rd round is again the Coding Test. Level of questions is Leetcode Medium to Leetcode Hard. Topics covered are Trees, Doubly Linked List, Dp etc.

Round 5 - Technical 

(2 Questions)

  • Q1. 4th round is an hour-long technical interview. The interviewer will start by asking about your introduction and you can expect some questions about your introduction or projects. The rest of the time is gi...
  • Q2. The questions were House Robber 3 from leetcode and some questions based on the binary array.

Interview Preparation Tips

Topics to prepare for Josh Technology Group Software Engineer interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - Just focus on Data structure and Algorithms. During the coding rounds keep track of time.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Alien Dictonary
  • Q2. All Palindromic substrings
  • Ans. 

    Find all palindromic substrings in a given string.

    • Iterate through each character in the string and expand around it to find palindromic substrings.

    • Store all palindromic substrings in an array of strings.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked about data structure and algo

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

I applied via LinkedIn and was interviewed in Feb 2023. There were 2 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 - One-on-one 

(5 Questions)

  • Q1. Introduce yourself- basic introduction
  • Q2. What projects have you worked on
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracking system.

    • Developed a web application for a retail company to manage inventory and sales.

    • Created a mobile app for a fitness tracking system that allows users to track their workouts and set goals.

    • Contributed to a team project for building a chatbot using natural language processing.

    • Implemented a data ...

  • Answered by AI
  • Q3. Difference between various programming languages
  • Ans. 

    Programming languages differ in syntax, features, and purpose.

    • Syntax: how code is written and structured

    • Features: what the language can do and how it does it

    • Purpose: what the language is best suited for

    • Examples: Java for enterprise applications, Python for data science, JavaScript for web development

  • Answered by AI
  • Q4. Why did you applied for Software Development Intern position?
  • Ans. 

    I applied for the Software Development Intern position because I am passionate about coding and want to gain practical experience in software development.

    • Passionate about coding

    • Desire to gain practical experience

    • Interest in software development

    • Opportunity to learn and grow

    • Aligns with my career goals

  • Answered by AI
  • Q5. Have you ever faced any problem or issue during your project and how did you resolved them?
  • Ans. 

    Yes

    • During a project, I faced a problem with integrating a third-party API.

    • I resolved the issue by thoroughly analyzing the API documentation and troubleshooting the code.

    • Another problem I encountered was a performance bottleneck in the application.

    • To resolve it, I used profiling tools to identify the bottleneck and optimized the code accordingly.

    • Additionally, I faced a challenge with a database query that was returning...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GAO Tek Software Developer Intern interview:
  • BASICS OF SOFTWARE ENGINEEERING/
Interview preparation tips for other job seekers - 1. BE CONFIDENT
2. BE HONEST
3. REPLY WITH SMILE AND TAKE YOUR TIME
4. EXPLAIN CLEARLY
5. SHOW INTEREST AND JUSTIFY HOW YOU WILL BE TAKING ADVANTAGE OF THIS OPPORTUNITY

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. Merge overlapping intervals

    Given 'N' number of intervals, where each interval contains two integers denoting the boundaries of the interval. The task is to merge all the overlapping intervals and ...

  • Ans. Brute Force
    1. We are given the function MERGEINTERVALS(), which takes a 2D vector representing the vector of intervals and returns another 2D vector which is the vector of merged intervals.
    2. We create another function ISOVERLAP() to check if the current interval overlaps with the other interval.
    3. Now we create an empty 2D vector “RES” to store finally merged intervals and another boolean vector “VIS” to mark if the current in...
  • Answered by CodingNinjas
  • Q2. Rat in a Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • 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 by CodingNinjas
  • Q3. Permutations of a String

    You are given a string 'STR' consisting of lowercase English letters. Your task is to return all permutations of the given string in lexicographically increasing order.

    S...

  • Ans. Backtracking

    The idea is to fix a character at a position and then find the permutations for rest of the characters.

    Make a list ‘ans’ which will contain the permutations of the given string.

     

    Algorithm:

    Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index  ‘l’ and ends at index  ‘r’.

    • Call the function: generatePermutai...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure. 
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals

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

Round 1 - Aptitude Test 

Any type of questions may ask

Round 2 - Coding Test 

Any type

Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Where do you see yourself in 5 years?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very useful to use for freshers

BigBinary Interview FAQs

How many rounds are there in BigBinary Software Engineer interview for freshers?
BigBinary interview process for freshers usually has 4 rounds. The most common rounds in the BigBinary interview process for freshers are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in BigBinary Software Engineer interview for freshers?

Some of the top questions asked at the BigBinary Software Engineer interview for freshers -

  1. System Design of URL short...read more
  2. DSA questions based on arr...read more

Tell us how to improve this page.

BigBinary Software Engineer Salary
based on 83 salaries
₹9 L/yr - ₹30 L/yr
128% more than the average Software Engineer Salary in India
View more details

BigBinary Software Engineer Reviews and Ratings

based on 12 reviews

3.4/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

4.3

Salary

2.0

Job security

3.3

Company culture

3.7

Promotions

3.2

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
83 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

QA Automation Engineer
11 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹27 L/yr - ₹47 L/yr

Software Developer
9 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

QA Engineer
5 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Explore more salaries
Compare BigBinary with

ThoughtWorks

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

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