Upload Button Icon Add office photos

Filter interviews by

Flyin.com Software Engineer2 Interview Questions and Answers

Updated 26 Oct 2024

Flyin.com Software Engineer2 Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kadane's Algorithm (maximum subarray sum)
  • Ans. 

    Kadane's Algorithm is used to find the maximum sum of a contiguous subarray within an array of integers.

    • Initialize two variables: max_so_far and max_ending_here to track the maximum sum.

    • Iterate through the array and update max_ending_here by adding the current element or starting a new subarray.

    • Update max_so_far if max_ending_here becomes greater than max_so_far.

    • Return max_so_far as the maximum subarray sum.

  • Answered by AI
  • Q2. Find the number of ways to reach to rightmost cell from topmost cell in 2D matrix
  • Ans. 

    The number of ways to reach the rightmost cell from the topmost cell in a 2D matrix can be calculated using dynamic programming.

    • Use dynamic programming to calculate the number of ways to reach each cell in the matrix.

    • At each cell, the number of ways to reach it is the sum of the number of ways to reach the cell above it and the cell to the left of it.

    • The value in the rightmost cell will give the total number of ways to

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Discussion around architecture of current project

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. DSA question to find maximum subarray sum
  • Ans. 

    Find the maximum subarray sum using Kadane's algorithm

    • Initialize max_sum and current_sum to 0

    • Iterate through the array and update current_sum by adding the current element

    • If current_sum becomes negative, reset it to 0

    • Update max_sum if current_sum is greater than max_sum

  • Answered by AI
  • Q2. Explain about the architecture of your project and contribution
  • Ans. 

    The architecture of my project is based on microservices with a combination of front-end and back-end technologies.

    • Utilized microservices architecture to break down the project into smaller, independent services

    • Implemented front-end using React.js for dynamic user interfaces

    • Developed back-end services using Node.js and Express.js for handling business logic and data processing

    • Used Docker for containerization and Kubern...

  • Answered by AI
  • Q3. Core Java Concepts
  • Q4. Microservice and Database locking

Skills evaluated in this interview

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
Q2. How to process large amount of data? Which tool would you prefer?
Q3. Given an integer array , and a target k , we need to find the pai ... read more
Q4. How to find if an array has duplicates, in linear time?
Q5. How will a live migration occur in a production database where 10 ... read more

Interview questions from similar companies

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

(1 Question)

  • Q1. Q1 was about ds algo
Round 2 - Technical 

(1 Question)

  • Q1. Q2 was about lld
Round 3 - Technical 

(1 Question)

  • Q1. Q3 was about lld too
Round 4 - Technical 

(1 Question)

  • Q1. Q4 was about hiring manager round, from resume basically
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Dita-ot, xslt, time duration - 30 minute

Round 2 - HR 

(1 Question)

  • Q1. How soon you can join
Interview experience
1
Bad
Difficulty level
Easy
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 

In Aptitude test in Math & Reasoning &English is be must for 1st round.

Round 3 - Coding Test 

In Coding Round first of all basic programing language C & 2nd One Oops language & DBMS must be knowledge. And then coding profile is above.

Interview Preparation Tips

Interview preparation tips for other job seekers - Dependent on basis his skill, talent, knowledge. Now must be coding knowledge.
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 Dec 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

I like to choose topics java, c, python, html etc

Round 2 - Coding Test 

About java, python, c, c++, html and about coding language

Round 3 - Group Discussion 

Hoe to built skill discussion about problem and how solve it

Interview Preparation Tips

Interview preparation tips for other job seekers - i am fresher here so i don't want to give any tips to any one

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1 : Assignment round- was given a problem statement and app design and was asked to make that app.
  • Q2. 2: Code Discussion round based on the app that I made
  • Q3. 3: Technical 1 questions on basic DSA and deep tech stack based questions on Android everything that you can cover basically for android
  • Q4. 4: Technical 2 questions were high level based on Clean architecture , SOLID principles, Dependency Injection
  • Q5. 5: Managerial round : 30% tech rest was behaviour part and previous organization experiences
  • Q6. Last was salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grip on the tech stack for which you are applying and brush up on DSA concepts and problem solving not very intensive just that you can come up with an approach.

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

Round 1 - Technical 

(1 Question)

  • Q1. Core Java/Java 8 - Collection, Stream API, Method Reference, Framework- Spring basics, Struts2, Hibernate Database - Oracle

Interview Preparation Tips

Topics to prepare for WNS Senior Software Engineer interview:
  • Core Java
  • Java 8
  • Struts2
  • Hibernate
  • Oracle
  • Stream api
Interview preparation tips for other job seekers - Interview difficulty was average. Mostly focused on Basic things.

I applied via Walk-in and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly on database and oops concepts
Round 2 - Technical 

(1 Question)

  • Q1. Database related, oops concepts, and Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DBMS. Mostly company works on database and Application level. .Net and COBOL language

Interview Questionnaire 

1 Question

  • Q1. How to upgrade angular older version project to higher version?
  • Ans. 

    To upgrade an Angular project to a higher version, follow these steps:

    • Check the compatibility of the current project with the target version

    • Update the Angular CLI to the latest version

    • Update the dependencies in package.json

    • Update the Angular framework and related packages

    • Resolve any breaking changes and errors

    • Test the upgraded project thoroughly

  • Answered by AI

Skills evaluated in this interview

Flyin.com Interview FAQs

How many rounds are there in Flyin.com Software Engineer2 interview?
Flyin.com interview process usually has 1-2 rounds. The most common rounds in the Flyin.com interview process are Technical and One-on-one Round.
What are the top questions asked in Flyin.com Software Engineer2 interview?

Some of the top questions asked at the Flyin.com Software Engineer2 interview -

  1. find the number of ways to reach to rightmost cell from topmost cell in 2D matr...read more
  2. DSA question to find maximum subarray ...read more
  3. Kadane's Algorithm (maximum subarray s...read more

Tell us how to improve this page.

Flyin.com Software Engineer2 Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
WNS Interview Questions
3.4
 • 978 Interviews
Google Interview Questions
4.4
 • 870 Interviews
Nagarro Interview Questions
4.0
 • 777 Interviews
View all
Junior Software Developer
4 salaries
unlock blur

₹2.2 L/yr - ₹3.7 L/yr

Product Manager
4 salaries
unlock blur

₹24 L/yr - ₹35.3 L/yr

Junior Software Test Engineer
4 salaries
unlock blur

₹2.7 L/yr - ₹4 L/yr

Software Developer
3 salaries
unlock blur

₹4 L/yr - ₹6.4 L/yr

UI Developer
3 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Flyin.com with

Cognizant

3.8
Compare

Teleperformance

3.9
Compare

Reliance Retail

3.9
Compare

iEnergizer

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