Upload Button Icon Add office photos

Filter interviews by

Blue Ball Technologies Software Developer Interview Questions and Answers

Updated 1 Nov 2022

Blue Ball Technologies Software Developer Interview Experiences

4 interviews found

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 

Gud and coding questionals of all program

Round 3 - HR 

(2 Questions)

  • Q1. About your core And coding and queations Abput youraelf and know programing langauage
  • Q2. Aboyt yourself And programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Laearn codingGBs zbznnsns s. S s sbvsvsbsb znow. Si sia ka a aka s

I applied via Walk-in and was interviewed in Aug 2022. There were 3 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 

Simple knowledge, questions, coding

Round 3 - Coding Test 

Java oops html collection of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well have a nice day study well and explore the your dreams

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Round 1 - Assignment 
Round 2 - Technical 

(1 Question)

  • Q1. Java written test for logics, web app development nice professional interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent company to start career

Interview Questionnaire 

1 Question

  • Q1. What is jdbc?
  • Ans. 

    JDBC stands for Java Database Connectivity. It is a Java API for connecting and executing queries on a database.

    • JDBC is used to connect Java applications to a database.

    • It provides a standard set of interfaces for accessing databases.

    • JDBC can be used with various databases such as MySQL, Oracle, and SQL Server.

    • Example: Class.forName("com.mysql.jdbc.Driver"); Connection con=DriverManager.getConnection("jdbc:mysql://local

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare jdbc and learn how to create website using html css and jdbc

Skills evaluated in this interview

Interview questions from similar companies

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

They discussed some easy questions on Node JS and Dp and heap , binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What is multithreading and explain its usecases.
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.

    • It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.

    • Multithreading can help improve responsiveness i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare cs fundamentals as well.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

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

I applied via campus placement at Siddhartha Institute of Engineering & Technology, Hyderabad and was interviewed in May 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 - Aptitude Test 

Communication skills and basic knowledge on java,

Round 3 - HR 

(2 Questions)

  • Q1. Why you preferred this job in genpact
  • Q2. Basically now a days genpact company is best in past all preferred for tcs, but in my servey genpact company is best because it gives best position for my life. Mostly i love this company where there is a ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Bee patience And smart work.. If you have dowts share your ideas with seniors
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was in the evening. Coding platform was good. There were 3 coding questions only in the screening round

  • Q1. Triple Sum

    It was Todd’s Birthday, So Bojack decided to give Todd a Binary tree with ‘N’ nodes. But the binary tree was too big to keep in his house, so Bojack decided to give exactly three nodes from that...

  • Ans. 

    The task is to determine if it is possible to select three nodes from a binary tree such that their sum equals a given value.

    • Traverse the binary tree and store all the node values in an array

    • Use three nested loops to iterate through all possible combinations of three nodes

    • Check if the sum of the three nodes equals the given value

    • If a valid combination is found, return True

    • If no valid combination is found, return False

  • Answered by AI
  • Q2.  Inorder Traversal

    You have been given a Binary Tree of 'N' nodes, where the nodes have integer values. Your task is to find the In-Order traversal of the given binary tree.

    For example :
    For the...
  • Ans. 

    The task is to find the in-order traversal of a given binary tree.

    • Implement a recursive function to perform in-order traversal of the binary tree

    • Start from the left subtree, then visit the root, and finally visit the right subtree

    • Use an array to store the values of the nodes in the in-order traversal

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was conducted in day time. Interviewer shared the jio's platform link where question was there and a function was there which I needed to complete while sharing my screen. Interviewer was very nice in behaviour

  • Q1. Check Whether Binary tree Is Complete

    You are given a binary tree. Your task is to check whether the given binary tree is a Complete Binary tree or not.

    A Complete Binary tree is a binary tree whose ever...

  • Ans. 

    The task is to check whether a given binary tree is a complete binary tree or not.

    • A complete binary tree is a binary tree where every level, except possibly the last, is completely filled.

    • All nodes in the last level are placed at the left end.

    • To check if a binary tree is complete, we can perform a level order traversal and check if any null nodes appear before all non-null nodes in the last level.

    • If any null nodes appe...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was conducted in early evening, again it consist of one coding question and some Basic OOP question.

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

    The task is to find all possible paths for a rat to reach its destination in a maze.

    • The maze is represented as a square matrix of 0s and 1s.

    • The rat starts at (0, 0) and the destination is at (N-1, N-1).

    • The rat can move in four directions: up, down, left, and right.

    • Use backtracking to explore all possible paths.

    • Print the paths in alphabetical order.

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was conducted at night like it was 8.00pm . HR was very nice. She asked managerial questions only and asked about my hobbies, experiences, why I want to join jio etc.

  • Q1. Basic HR question

    Why do you want to join jio?

  • Ans. 

    I want to join Jio because of its innovative technology and vast opportunities for growth.

    • Jio is known for its cutting-edge technology and I want to be a part of that innovation.

    • Jio offers a wide range of career opportunities and growth prospects.

    • Jio's strong market presence and success make it an exciting company to work for.

    • Jio's focus on digital transformation aligns with my passion for technology.

    • Jio's commitment t...

  • Answered by AI
  • Q2. Basic HR Question

    What will you do if there is some conflict in a team were you working?r

  • Ans. 

    In case of conflict in a team, I would first try to understand the root cause and then facilitate open communication and collaboration to resolve the conflict.

    • Listen to all parties involved and understand their perspectives

    • Encourage open and respectful communication

    • Facilitate a discussion to identify the root cause of the conflict

    • Promote collaboration and finding common ground

    • Propose potential solutions and encourage c...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 7 CGPAJio Private Limited interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Dynamic Programming, Backtracking, Binary Search Trees, Binary SearchTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve leetcode problems.
Tip 2 : Don't run for multiple languages , any one language is enough
Tip 3 : Maintain Consistency

Application resume tips for other job seekers

Tip 1 : Make it single page.
Tip 2 : Only write key points in resume and don't write any false point

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them.

    • It helps to decouple the code and makes it more testable and maintainable.

    • It allows for easier swapping of dependencies without changing the code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database connection ob...

  • Answered by AI
  • Q2. What is the use of bean factory
  • Ans. 

    Bean factory is used for creating and managing instances of beans in Spring framework.

    • Bean factory is responsible for creating and managing instances of beans defined in the Spring configuration file.

    • It provides a way to decouple the configuration and specification of dependencies from the actual application code.

    • Bean factory supports different scopes of beans such as singleton, prototype, request, session, etc.

    • It also...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the full-stack development. On all the questions

Skills evaluated in this interview

Blue Ball Technologies Interview FAQs

How many rounds are there in Blue Ball Technologies Software Developer interview?
Blue Ball Technologies interview process usually has 2-3 rounds. The most common rounds in the Blue Ball Technologies interview process are Coding Test, Resume Shortlist and Aptitude Test.
What are the top questions asked in Blue Ball Technologies Software Developer interview?

Some of the top questions asked at the Blue Ball Technologies Software Developer interview -

  1. What is jdb...read more
  2. Java written test for logics, web app development nice professional interv...read more
  3. About your core And coding and queations Abput youraelf and know programing l...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Blue Ball Technologies interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Blue Ball Technologies Software Developer Reviews and Ratings

based on 2 reviews

4.3/5

Rating in categories

4.3

Skill development

4.3

Work-Life balance

4.3

Salary & Benefits

4.3

Job Security

4.3

Company culture

4.3

Promotions/Appraisal

4.3

Work Satisfaction

Explore 2 Reviews and Ratings
HR Executive
4 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Software Developer
3 salaries
unlock blur

₹2.5 L/yr - ₹4.1 L/yr

HR Recruiter
3 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Blue Ball Technologies with

White Oval Technologies

4.1
Compare

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview