Upload Button Icon Add office photos
Engaged Employer

i

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

Fluper Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 274 Reviews

Filter interviews by

Fluper Mean Stack Developer Interview Questions and Answers

Updated 31 May 2021

Fluper Mean Stack Developer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Oracle questions
  • Q2. Basic programming like string reverse matrix multiplication etc

Interview Preparation Tips

Interview preparation tips for other job seekers - This is my first company normal basic fresher level questions asked

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. SDLC process and how it is implemented in project
  • Q2. About projects, it's Objective, the role I have worked, output
  • Q3. Data structure, DBMS concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Net core architecture and features
  • Q2. API structure and implementation
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Have to solve 2 coding questions on coding platform

Round 2 - Technical 

(5 Questions)

  • Q1. Oops concept in java, its significance
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation hides the internal state of an object and restricts access to it.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction focuses on the essential characteristics

  • Answered by AI
  • Q2. Thread life cycle
  • Q3. How microservices communicates
  • Ans. 

    Microservices communicate through lightweight protocols like HTTP, messaging queues, and RPC.

    • HTTP: RESTful APIs are commonly used for communication between microservices.

    • Messaging queues: Services can communicate asynchronously through message brokers like RabbitMQ or Kafka.

    • RPC (Remote Procedure Call): Services can directly call each other's functions over the network.

  • Answered by AI
  • Q4. Questions about Collection, hashmap
  • Q5. Java 8 features, lambda, stream api coding question
Round 3 - Technical 

(6 Questions)

  • Q1. Project specific questions
  • Q2. @autowired, @qualifier, @primary, @transient, @volatile keyword
  • Q3. Use of static keyword
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

  • Answered by AI
  • Q4. Dynamic method dispatch
  • Q5. DB connections flow in spring boot
  • Ans. 

    DB connections flow in Spring Boot involves configuring data source, creating connection pool, and managing transactions.

    • Configure data source in application.properties or application.yml

    • Use @EnableJpaRepositories to enable JPA repositories

    • Create connection pool using HikariCP or Tomcat JDBC

    • Manage transactions using @Transactional annotation

  • Answered by AI
  • Q6. Rest vs Soap web services
  • Ans. 

    REST is lightweight, uses standard HTTP methods, and is more flexible. SOAP is more rigid, uses XML, and has built-in security features.

    • REST uses standard HTTP methods like GET, POST, PUT, DELETE for communication.

    • SOAP uses XML for communication and has built-in security features like WS-Security.

    • REST is more lightweight and flexible, making it easier to work with in modern web development.

    • SOAP is more rigid and has a ...

  • Answered by AI

Skills evaluated in this interview

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

'write a code for reverse the array without using in build function

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The first round was an aptitude test. There were 30 questions with 1 marks for each.

Round 2 - Coding Test 

After being selected from the first round the second round was the Coding test there were 6 sets and 1 set had 3 questions. they told me to do it in an online compiler without an internet connection.

Round 3 - Technical 

(1 Question)

  • Q1. After being selected from the coding test. They took technical interviews and asked very basic questions like oops and all but they were doing cross-questioning.

Interview Questionnaire 

5 Questions

  • Q1. When you meet any clients direct or over to phone what is your present ation ?
  • Q2. Depends on business strategy. Which type of business they're handle and business description, then terms and conditions then over all details
  • Q3. As a Software Testing Engineer What assurance you will give?
  • Ans. 

    I will assure that the software meets the requirements and is free from defects.

    • I will conduct thorough testing to ensure all functionalities work as expected.

    • I will use various testing techniques such as black box, white box, and regression testing.

    • I will document all test cases and results for future reference.

    • I will work closely with developers to ensure timely resolution of any defects found.

    • I will continuously mon...

  • Answered by AI
  • Q4. Typing and Software Engineer Development what is the relationship both of them?
  • Q5. Software Engineer and MBA both relation what advantage will give?

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. OOPS concepts
  • Q2. Multithreading, concurrency
  • Q3. Nth max salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for Java in detail

I applied via Naukri.com and was interviewed before Nov 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 - Technical 

(2 Questions)

  • Q1. Ask basic questions related to mendix
  • Q2. Microflow, nanoflow, association visibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont stress just give your best.
Basics need to be perfect
Interview experience
4
Good
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 - Technical 

(2 Questions)

  • Q1. What is HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap allows quick access to values based on their keys

    • Keys must be unique and values can be duplicated

    • HashMap is not thread-safe and requires synchronization for concurrent access

    • Java's HashMap implementation uses hashing to distribute keys across buckets

  • Answered by AI
  • Q2. It’s a collection framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.

Skills evaluated in this interview

Fluper Interview FAQs

How to prepare for Fluper Mean Stack Developer 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 Fluper. The most common topics and skills that interviewers at Fluper expect are MongoDB, Mean Stack, Angularjs, Node.Js and Angular.
What are the top questions asked in Fluper Mean Stack Developer interview?

Some of the top questions asked at the Fluper Mean Stack Developer interview -

  1. Basic programming like string reverse matrix multiplication ...read more
  2. Oracle questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Equifax Interview Questions
3.3
 • 29 Interviews
View all
Fluper Mean Stack Developer Salary
based on 25 salaries
₹1 L/yr - ₹6.4 L/yr
34% less than the average Mean Stack Developer Salary in India
View more details

Fluper Mean Stack Developer Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

4.7

Skill development

4.2

Work-life balance

4.5

Salary

4.2

Job security

4.2

Company culture

4.2

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Android Developer
33 salaries
unlock blur

₹1.4 L/yr - ₹7.1 L/yr

IOS Developer
30 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Mean Stack Developer
25 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Business Analyst
20 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

UI/UX Designer
18 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Explore more salaries
Compare Fluper with

Ranosys Technologies

3.6
Compare

SPARX IT Solutions

3.6
Compare

Techugo

4.1
Compare

Konstant Infosolutions

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