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 Front end Developer Interview Questions and Answers for Experienced

Updated 11 Mar 2021

Nowfloats Technologies Front end Developer Interview Experiences for Experienced

1 interview found

I applied via Referral and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Confidential

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice experience.
1st and 2nd round was html,css,js only. 3 round was bit of react.js and 2 aptitude questions based on number series.

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

I applied via Company Website and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Assignment 

Create a small appilcation and send the code via email

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - To be good with all basics

Front end Developer Interview Questions Asked at Other Companies for Experienced

asked in JUSPAY
Q1. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q2. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
asked in JUSPAY
Q3. Path Existence in Directed Graph Given a directed and unweighted ... read more
Q4. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
asked in Nutanix
Q5. Implement a calculator class that supports chaining operations li ... read more
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Assignment 

They discuss the coding capabilities, and personal things discussion so company never face any loss.

Round 2 - Coding Test 

Coding related output based questions and answers.

Round 3 - Group Discussion 

They discuss codding based questions and too much personal things, they project manager will visite to our basic things like house, family, Current financial condition so on...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be friendly with hr or project manager, keep discuss only technology relevant nor too much personal.

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 5 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 - Aptitude Test 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 3 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 4 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 5 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Assignment 

We were to make a go Lang api using one of the frameworks the company has made named go-fr

Round 2 - Technical 

(1 Question)

  • Q1. I was asked 3 questions that were easy they were adding two linked list, tortoise and hare method to find the mid of the linked list and 2 sum problem. On top of that verbal skills were also tested as o wa...
Round 3 - Technical 

(1 Question)

  • Q1. The round tested my Go Lang skills and the questions were generally from the assignment and some HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do easy to medium leetcode and SQL as well also prepare for networking and Operating system
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Strings related coding question
Round 2 - Technical 

(1 Question)

  • Q1. Files, os and db related questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa questions asked and java basic questions

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Consist 3 coding questions medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about java concept
  • Q2. Sql query basics
Round 3 - Technical 

(2 Questions)

  • Q1. Asked medium to advance level oops java concept
  • Q2. Deep discussion over project
Round 4 - Technical 

(2 Questions)

  • Q1. Hard level linked list questions
  • Q2. Advanced level sql query
  • Ans. 

    An advanced SQL query can involve complex joins, subqueries, and aggregations to extract meaningful insights from data.

    • Use JOINs to combine data from multiple tables. Example: SELECT * FROM orders JOIN customers ON orders.customer_id = customers.id;

    • Utilize subqueries for filtering results. Example: SELECT * FROM products WHERE id IN (SELECT product_id FROM order_items WHERE quantity > 5);

    • Implement GROUP BY for aggre...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and oop concepts well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question around priority queue
  • Q2. Decode strings leetcode
  • Ans. 

    Decode strings involves interpreting encoded patterns like '3[a2[c]]' to produce 'accaccacc'.

    • Use a stack to handle nested structures. Example: For '2[abc]', push '2' and 'abc' onto the stack.

    • Iterate through the string, building numbers and characters. Example: '3[a2[c]]' becomes '3', 'a', '2', 'c'.

    • When encountering ']', pop from the stack until '[' is found, then repeat the string as per the number. Example: '2[c]' bec...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. System design questions scenario based
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multidimensional tree
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Questions trees and graphs.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be focused, motivated, and have faith

Nowfloats Technologies Interview FAQs

How to prepare for Nowfloats Technologies Front end Developer interview for experienced candidates?
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 Nowfloats Technologies. The most common topics and skills that interviewers at Nowfloats Technologies expect are Angular, DSA and React.Js.

Tell us how to improve this page.

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Tata nexarc Interview Questions
3.1
 • 25 Interviews
Twilio Interview Questions
3.9
 • 24 Interviews
View all
Nowfloats Technologies Front end Developer Salary
based on 6 salaries
₹3.8 L/yr - ₹9 L/yr
At par with the average Front end Developer Salary in India
View more details
Business Development Manager
95 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