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.1

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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at GLA Institute of Technology and Management, Mathura and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

30min Pseudo Code,Ratio and Proportion

Round 2 - Coding Test 

1 hour Array,HashMap

Round 3 - Technical 

(4 Questions)

  • Q1. Write a program a string is Anagram or not
  • Ans. 

    Program to check if a string is an Anagram or not

    • Create a function that takes in two strings as input

    • Sort the characters in both strings and compare if they are equal

    • Return true if they are anagrams, false otherwise

  • Answered by AI
  • Q2. How to connect mongodb with database
  • Ans. 

    To connect MongoDB with a database, you need to use the MongoDB URI and a MongoDB client library.

    • Use the MongoDB URI to specify the connection details such as host, port, username, password, and database name

    • Install a MongoDB client library like Mongoose for Node.js or pymongo for Python

    • Use the client library to establish a connection to the MongoDB database and perform CRUD operations

  • Answered by AI
  • Q3. What is event listener
  • Ans. 

    An event listener is a function that waits for a specific event to occur and then triggers a response.

    • Event listeners are commonly used in web development to handle user interactions like clicks, keypresses, etc.

    • They are attached to specific elements and listen for events to occur on those elements.

    • Once the event occurs, the listener executes a callback function to respond to the event.

    • Example: Adding a click event lis...

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

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. How to reverse a string without using extra space
  • Ans. 

    Use two pointers to swap characters in place

    • Initialize two pointers, one at the beginning of the string and one at the end

    • Swap characters at the two pointers and move them towards each other until they meet or cross

    • Repeat the process until the entire string is reversed

  • Answered by AI
  • Q2. Find a number that not present in array in O(N) time complexity array contain only 0 to n numbers
  • Ans. 

    Use bitwise XOR operation to find the missing number in O(N) time complexity.

    • Iterate through the array and XOR all the elements with their indices and the array length.

    • The missing number will be the result of XORing all the elements with their indices and the array length.

  • Answered by AI
  • Q3. Why should you join this company
  • Q4. How many interview have you give previously and why you get rejected

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 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.

People are getting interviews through

based on 1 Fluper interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Equifax Interview Questions
3.4
 • 28 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 & Benefits

4.2

Job Security

4.2

Company culture

4.2

Promotions/Appraisal

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
31 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.8
Compare

Techugo

4.1
Compare

Konstant Infosolutions

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview