Upload Button Icon Add office photos
Engaged Employer

i

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

Bi3 Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bi3 Technologies Python Software Developer Interview Questions and Answers

Updated 17 Jun 2024

Bi3 Technologies Python Software Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Hackathon 

(1 Question)

  • Q1. Create a video analysis using yolo on given video
  • Ans. 

    Use YOLO for video analysis to detect objects in a given video.

    • Install YOLO and necessary dependencies for video analysis

    • Preprocess the video frames for object detection

    • Run YOLO on each frame to detect objects

    • Draw bounding boxes around detected objects

    • Analyze the results and track objects if needed

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Sorting given numbers
  • Q2. Find the pair of number in the list that their sum is equal to target... Eg: list1=[1,3,5,7,6,8] target: 9 , ans: (8, 1), (6, 3)
  • Ans. 

    Iterate through the list and check for pairs that sum up to the target value.

    • Iterate through the list and for each element, check if the difference between the target and the element is present in a dictionary.

    • If the difference is present in the dictionary, then we have found a pair that sums up to the target.

    • If the difference is not present, add the current element to the dictionary.

    • Return the pairs that sum up to the

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Basic hr question s
  • Q2. Sort the given numbers in a list and count the number of inversions for each number
  • Ans. 

    Sort a list of numbers and count inversions for each number

    • Sort the list of numbers using a sorting algorithm like merge sort or bubble sort

    • For each number, count the number of elements that are greater than it but appear before it in the sorted list

    • Return the list of numbers with their corresponding inversion counts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in python libraries, and python problem solving, sorting and searching algorithms are very important

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. 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 - Coding Test 

Mcqs on javascript,. 1 coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Campus recruitment
1 online coding
2 technical rounds DSA
1 tech managerial
1 hr

Os, DBMS, DSA, stacks, trees,
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There are three sections: -
1. Quants
2. English
3. Reasoning
All sections are accessible medium but you have maintained the speed and accuracy.
after that coding snippet are in java/python.

Round 2 - Coding Test 

Code snippets are there in coding sections.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all basic concepts and try to do good as well as u know.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Based on JavaScript and Java.

Round 2 - Assignment 

A task based on JavaScript.

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I have no one question?Only I have an doubt I'm selected or no selected...

I applied via LinkedIn and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Testing basics turnaround questions
  • Q2. Python basics and team building questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics tharowly rest will fall in place
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 - Coding Test 

Coding test in any language

Round 3 - Group Discussion 

Any topics for the GD

Round 4 - One-on-one 

(4 Questions)

  • Q1. Experience about the java script
  • Q2. My work experience about the java scirpt
  • Q3. Palindrome in any code language
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindromes

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
  • Q4. Other general maths programming questions

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions to start with. then as rounds proceeds you can see the questions being more application oriented.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 3 rounds of technical interview. One of the toughest interview panel I have come across. It is important to know the technical concept as well as the scenarios where you will be using it.

They give enough time and keep you comfortable. All you have to do is solve it meticulously and they are more in to the approach than the solutions.

All the best.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Coding Test 

1st round we had 3 coding question that has to be written(Easy,Medium,Hard)

Round 3 - Group Discussion 

We had Gd with self intro

Round 4 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. He gave me a coding question

Bi3 Technologies Interview FAQs

How many rounds are there in Bi3 Technologies Python Software Developer interview?
Bi3 Technologies interview process usually has 3 rounds. The most common rounds in the Bi3 Technologies interview process are Technical.
What are the top questions asked in Bi3 Technologies Python Software Developer interview?

Some of the top questions asked at the Bi3 Technologies Python Software Developer interview -

  1. Find the pair of number in the list that their sum is equal to target... Eg: li...read more
  2. Sort the given numbers in a list and count the number of inversions for each nu...read more
  3. Create a video analysis using yolo on given vi...read more

Tell us how to improve this page.

Bi3 Technologies Python Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 28 Interviews
Bonami Software Interview Questions
4.1
 • 23 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
Ivanti Interview Questions
3.5
 • 14 Interviews
WinZO Interview Questions
4.0
 • 14 Interviews
SentientGeeks Interview Questions
4.2
 • 13 Interviews
TestVagrant Interview Questions
3.4
 • 13 Interviews
View all
Associate Software Engineer
10 salaries
unlock blur

₹5.2 L/yr - ₹5.4 L/yr

Software Developer
6 salaries
unlock blur

₹4.5 L/yr - ₹7.5 L/yr

Data Engineer
5 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Junior Software Developer
4 salaries
unlock blur

₹3.8 L/yr - ₹5 L/yr

Associate Software Developer
3 salaries
unlock blur

₹2.3 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Bi3 Technologies with

NexTurn

4.1
Compare

Kanerika Software

4.5
Compare

Smarter BIZ Technologies

3.2
Compare

Nxtra Data

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