Upload Button Icon Add office photos
Engaged Employer

i

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

Nowfloats Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nowfloats Technologies Software Engineer Interview Questions and Answers

Updated 1 Mar 2024

Nowfloats Technologies Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Himjyoti Sarma

posted on 1 Mar 2024

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

I applied via Instahyre and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me your Past experience and Proficiency
  • Q2. Basic About yourself
Round 2 - Coding Test 

Normal coding round with CSS and OOPS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - As a Freshers you should join and Will be able to learn a lot

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Nowfloats Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

Low level Design Problem in Java

Round 2 - Technical 

(1 Question)

  • Q1. Data Structures - Graph Problem DFS
Round 3 - Coding Test 

System Design with few details

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. They asked to design a database table
  • Ans. 

    Design a database table for managing user accounts in a web application.

    • Table Name: Users

    • Columns: id (INT, Primary Key), username (VARCHAR), password (VARCHAR), email (VARCHAR), created_at (TIMESTAMP)

    • Indexes: Create an index on username for faster lookups.

    • Constraints: Ensure email is unique and validate password strength.

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. Laravel Nova task
  • Q2. Php basic questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is the DOM ?
  • Q2. What is SSR?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Jul 2022. There were 6 interview rounds.

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 - Coding Test 

There is 4 coding question all are on DSA.

Round 3 - Group Discussion 

They give one topic. and provide 10 to 15 minutes to think.

Round 4 - Technical 

(1 Question)

  • Q1. He is giving one coding question. ask some language questions.
Round 5 - Technical 

(2 Questions)

  • Q1. DSA question and databases question
  • Q2. SQL question, stack, queue, and LinkedList are all the things we know from the scretch
Round 6 - HR 

(1 Question)

  • Q1. They introduce the company details and normal question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do more and more practice for DSA. and solve the coding questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Ai technologies trend?
  • Ans. 

    AI technologies are rapidly evolving, impacting various sectors with advancements in machine learning, natural language processing, and automation.

    • Increased use of AI in healthcare for diagnostics, e.g., IBM Watson Health.

    • Growth of natural language processing, exemplified by OpenAI's ChatGPT.

    • Expansion of AI in autonomous vehicles, like Tesla's self-driving technology.

    • AI-driven personalization in e-commerce, such as Ama...

  • Answered by AI
  • Q2. Pyqs of zopsmart
  • Ans. 

    Zopsmart's pyqs involve Python-related questions assessing coding skills and problem-solving abilities.

    • Understand Python data structures: lists, dictionaries, sets, and tuples.

    • Practice common algorithms: sorting, searching, and recursion.

    • Familiarize with Python libraries: NumPy for numerical data, Pandas for data manipulation.

    • Solve coding challenges on platforms like LeetCode or HackerRank to improve problem-solving sk...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - no
Are these interview questions helpful?

I applied via Referral and was interviewed before Jun 2021. There were 3 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. The first round was a detailed discussion on one of my previous projects(almost 35 minutes, went to maximum possible depth) and one DSA question. Please prepare your resume projects very well.
  • Q2. The question was a stack bases leetcode medium question.
Round 3 - Technical 

(1 Question)

  • Q1. This was the final round. It again a follow up of the first one. Started with a project discussion(did not go that much of depth as first one) . Again one DSA question was there to solve(they make you writ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be through with your resume.
2. Practice DSA regularly.
3. Know your projects ver well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

20 questions aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. DSA question to sort the array
  • Q2. Coding question to print all the prime numbers form 0 to n
  • Ans. 

    This code prints all prime numbers from 0 to n using the Sieve of Eratosthenes algorithm.

    • A prime number is greater than 1 and has no divisors other than 1 and itself.

    • Use the Sieve of Eratosthenes for efficient prime number generation.

    • Initialize a boolean array to track prime status for numbers 0 to n.

    • Iterate through the array, marking non-prime numbers as false.

    • Example: For n = 10, the output will be 2, 3, 5, 7.

  • Answered by AI
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 Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
  • Ans. 

    The toughest challenge I faced was leading a project with tight deadlines and team conflicts, which tested my leadership and problem-solving skills.

    • Led a team of 5 developers on a critical project with a 3-month deadline.

    • Faced conflicts between team members due to differing opinions on technology stack.

    • Implemented regular stand-up meetings to improve communication and resolve issues.

    • Utilized Agile methodologies to adap...

  • Answered by AI

Nowfloats Technologies Interview FAQs

How many rounds are there in Nowfloats Technologies Software Engineer interview?
Nowfloats Technologies interview process usually has 2 rounds. The most common rounds in the Nowfloats Technologies interview process are HR and Coding Test.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Nowfloats Technologies Software Engineer Salary
based on 59 salaries
₹4.8 L/yr - ₹11.3 L/yr
14% less than the average Software Engineer Salary in India
View more details

Nowfloats Technologies Software Engineer Reviews and Ratings

based on 14 reviews

2.6/5

Rating in categories

3.1

Skill development

2.8

Work-life balance

2.7

Salary

2.2

Job security

2.7

Company culture

2.2

Promotions

2.6

Work satisfaction

Explore 14 Reviews and Ratings
Business Development Manager
97 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software Engineer
59 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Senior Business Development Manager
39 salaries
unlock blur

₹4.8 L/yr - ₹7.7 L/yr

Branch Manager
19 salaries
unlock blur

₹7 L/yr - ₹11.5 L/yr

Sales Manager
16 salaries
unlock blur

₹4.5 L/yr - ₹8.1 L/yr

Explore more salaries
Compare Nowfloats Technologies with

Vyapar

3.5
Compare

ShopKirana

3.8
Compare

Tata nexarc

3.1
Compare

Classplus

3.4
Compare
write
Share an Interview