Upload Button Icon Add office photos

Filter interviews by

Flexcar Interview Questions and Answers

Updated 23 Apr 2024

Flexcar Interview Experiences

Popular Designations

3 interviews found

Software Developer Interview Questions & Answers

user image akansha mishra

posted on 23 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Two DSA question based on dp and recurssion

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string find the depth of string
  • Ans. 

    The depth of a string is the number of nested levels of parentheses in the string.

    • Iterate through the characters of the string and keep track of the current depth using a counter variable.

    • Increment the counter when an opening parenthesis is encountered and decrement it when a closing parenthesis is encountered.

    • Return the maximum depth reached during the iteration as the final depth of the string.

  • Answered by AI
  • Q2. Consecutive integer pair expect one find that gfg question
Round 3 - Technical 

(2 Questions)

  • Q1. Right view of binary tree
  • Ans. 

    The right view of a binary tree shows the rightmost nodes at each level from top to bottom.

    • Traverse the tree in a level order manner and keep track of the rightmost node at each level.

    • Use a queue to store nodes at each level and update the rightmost node as you traverse.

    • Example: For a binary tree with root node 1 and right children 3 and 4, the right view would be [1, 3, 4].

  • Answered by AI
  • Q2. Question based o n thread synchronization
Round 4 - HR 

(1 Question)

  • Q1. Normal family background question

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview Questions & Answers

user image Anonymous

posted on 3 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected
Round 1 - Coding Test 

I was asked 2 medium level DSA problems and expectation was to cover every edge case while writing code

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare topics like Stack, Graph DFS, 1D - DP questions , matrix
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Was alright. Needed some time to practice.

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself and your projects

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Jobs at Flexcar

View all

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Good, it's easy to Crack. Should know atleast basics about your branch.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

Interview Questionnaire 

3 Questions

  • Q1. How u will use this opportunity?
  • Q2. What is ur basic knowledge on this company?
  • Q3. This is the company which have a gd fait and to get job in this company is not a piece of cake. This type of opportunities get once in a blue moon. So i should use this opportunity.

I applied via Walk-in and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Where do you want to see yourself after 5 years?
  • Q2. What are your preferences?
  • Q3. If given a chance on what do you want to make changes on the project if you've been assigned to achieve positive results with fewer efforts?
  • Q4. What are your expectations?
  • Q5. How do you want a corporate structure to be?
  • Q6. Why did you leave your last company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions asked to a fresher I would expect those to be a friendly manner and allow him to speak what he can and not just the questions you ask.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Flexcar Interview FAQs

How many rounds are there in Flexcar interview?
Flexcar interview process usually has 2-3 rounds. The most common rounds in the Flexcar interview process are Coding Test, HR and Technical.
How to prepare for Flexcar interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Flexcar. The most common topics and skills that interviewers at Flexcar expect are Automotive, SQL, Agile, Automation and Data Analysis.
What are the top questions asked in Flexcar interview?

Some of the top questions asked at the Flexcar interview -

  1. given a string find the depth of str...read more
  2. right view of binary t...read more
  3. consecutive integer pair expect one find that gfg quest...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

SALARIES

Vem Technologies

INTERVIEWS

Bristlecone

No Interviews

INTERVIEWS

Bristlecone

No Interviews

INTERVIEWS

Bristlecone

No Interviews

INTERVIEWS

Vem Technologies

10 top interview questions

INTERVIEWS

Full Time

No Interviews

SALARIES

Flexcar

Tell us how to improve this page.

Flexcar Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Zoomcar Interview Questions
3.6
 • 21 Interviews
Revv Interview Questions
3.7
 • 5 Interviews
Carzonrent Interview Questions
3.5
 • 3 Interviews
Myles Cars Interview Questions
4.6
 • 1 Interview
Voler Cars Interview Questions
3.6
 • 1 Interview
View all

Flexcar Reviews and Ratings

based on 5 reviews

3.0/5

Rating in categories

3.2

Skill development

4.5

Work-life balance

3.9

Salary

2.6

Job security

2.6

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 5 Reviews and Ratings
Ruby on Rails Developer ( SDE III )

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Software Development Engineer II
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Flexcar with

Zoomcar

3.6
Compare

Revv

3.7
Compare

Drivezy

3.5
Compare

Myles Cars

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