Upload Button Icon Add office photos

Filter interviews by

FloBiz Software Developer Intern Interview Questions and Answers

Updated 23 Dec 2024

FloBiz Software Developer Intern Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction about self

Interview questions from similar companies

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

I applied via campus placement at Midnapore College, Midnapore 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 - Aptitude Test 

Basic aptitude and reasoning questions. Along with one or two short coding questions

Round 3 - Technical 

(3 Questions)

  • Q1. Questions based on your skills
  • Q2. Questions based on your projects.
  • Q3. Some general coding and technical questions which will show the skillset of the student
Round 4 - HR 

(1 Question)

  • Q1. General questions like why work here, will you give your best etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Just give your interviews properly, showcase your skills, so that the hiring team and the interviewers acknowledge you

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing was 10:00 AM. Platform was good.

  • Q1. 

    Subarray With Given Sum Problem Statement

    Given an array ARR of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exis...

  • Ans. Bruteforce Approach
    • In this approach, we will traverse all the subarrays and for each subarray, we will check whether the sum of the elements of the subarray matches with the given sum.
    • To traverse all the subarrays we will use two nested loops.
    • The outer loop will select the start index and the inner loop will fix the end index of the subarray. While incrementing the inner pointer(inner loop pointer) we will also maintai...
  • Answered Anonymously
  • Q2. 

    Remove Consecutive Duplicates Problem Statement

    Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

    Input:

    String S

    Output:

    Output string

    Constr...

  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in MumbaiEligibility criteriaAbove 8 CGPAGoComet interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data structure questions.
Tip 2 : Do some projects.
Tip 3 : Have knowledge of DBMS.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They ask generally about yourself and your experience background
Round 2 - Technical 

(3 Questions)

  • Q1. Most of the question related to NLP.
  • Q2. What is the order of efficiency among MobileNet, DenseNet, and EfficientNet?
  • Ans. 

    EfficientNet is the most efficient, followed by MobileNet and then DenseNet.

    • EfficientNet is the most efficient among the three models due to its use of compound scaling and efficient building blocks.

    • MobileNet is less efficient than EfficientNet but more efficient than DenseNet, as it uses depthwise separable convolutions to reduce computational cost.

    • DenseNet is the least efficient among the three models, as it has a hi...

  • Answered by AI
  • Q3. Did they request me to write a lambda function in python? How handle the files using pandas
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It includes multiple-choice questions for the field you are applying to.

Round 2 - Coding Test 

Some basic data structure and algorithm questions; you can choose your preferred language to code.

Round 3 - HR 

(2 Questions)

  • Q1. What type of company do you prefer to work for?
  • Q2. What is JIT in Java?
Round 4 - One-on-one 

(2 Questions)

  • Q1. What is time complexity, and how can it be reduced?
  • Q2. What are the advantages and disadvantages of different search methods?

Interview Preparation Tips

Topics to prepare for Relinns Technologies Software Engineer Trainee interview:
  • Java
  • OOPS
  • DSA
Interview preparation tips for other job seekers - Ensure you have a comprehensive understanding of your field for which you are applying. Additionally, prepare for Data Structures and Algorithms (DSA); while advanced coding may not be necessary, it is essential to know all DSA concepts thoroughly.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
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.

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

(1 Question)

  • Q1. Implement producer consumer pattern using Goroutines.
  • Ans. 

    Implement producer consumer pattern using Goroutines

    • Create a channel to communicate between producer and consumer goroutines

    • Use goroutines to run producer and consumer functions concurrently

    • Ensure proper synchronization using channels and wait groups

    • Handle closing of channels to avoid deadlocks

  • Answered by AI
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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions were easy and basics

Round 2 - Technical 

(2 Questions)

  • Q1. They asked about projects, SQL basics, oops concepts and about java concepts
  • Q2. It was an easy and average interview

FloBiz Interview FAQs

How many rounds are there in FloBiz Software Developer Intern interview?
FloBiz interview process usually has 1 rounds. The most common rounds in the FloBiz interview process are One-on-one Round.

Tell us how to improve this page.

FloBiz Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Business Development Executive
83 salaries
unlock blur

₹2.4 L/yr - ₹4.5 L/yr

Team Lead
37 salaries
unlock blur

₹3.6 L/yr - ₹7.5 L/yr

City Manager
17 salaries
unlock blur

₹6 L/yr - ₹8.2 L/yr

Senior Business Consultant
12 salaries
unlock blur

₹3.2 L/yr - ₹5.6 L/yr

Inside Sales Associate
8 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Explore more salaries
Compare FloBiz with

Razorpay

3.6
Compare

Paytm

3.3
Compare

Mobikwik

4.0
Compare

PhonePe

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