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 Lead Engineer Interview Questions and Answers for Experienced

Updated 2 Mar 2022

Nowfloats Technologies Lead Engineer Interview Experiences for Experienced

1 interview found

I applied via Company Website and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about data structures and algorithms
  • Q2. Questions about system design
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions about programming and basics of computer science
  • Q2. Questions on team structure and management

Interview Preparation Tips

Interview preparation tips for other job seekers - Be analytical, be clear with your basics on systems design and programming.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. They just asked about basic details , qualifications, professional experience, project domain, and ctc, expected ctc etc
  • Q2. Next round simillar

Interview Preparation Tips

Topics to prepare for PolicyBazaar Senior Engineer interview:
  • master your skill related deta
Interview preparation tips for other job seekers - enquire well then plan to go not much i like

I applied via Job Portal and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Less technical more on process

Interview Preparation Tips

Interview preparation tips for other job seekers - They require people who knows all the technology like routing switching wireless firewall SD WAN

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Data Structures
  • Q2. Algorithms knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DSA and be thorough with projects.

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Android components, lifecycle, providers, receivers, fragments, view components, Ui design related questions.

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

Interview Questionnaire 

3 Questions

  • Q1. Your Personal Details, Your Qualifications?
  • Ans. This answer must be basied on you resume.
  • Answered Anonymously
  • Q2. Why IndiaMart?
  • Ans. This type of question are based on you knowledge and your experiences
  • Answered Anonymously
  • Q3. What are you skills and how you would implement them while working with us?
  • Ans. For this you need to know you Positive Point and Negative Point which are totally based on your behavior and Personality
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Natural and Original while interviewing

I applied via Referral and was interviewed in May 2021. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The interview consisted a appitude test and second round was english speaking assessment test online , if you clear both the test, they will share the documentation link

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was easy.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Data Structures like Array, Stack, Queue.. etc., Questions related to Algorithms Like Dynamic Programming and Questions from DBMS.

I applied via Campus Placement and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Graph Question:- There is a chessboard. It is different from the normal chessboard. White and black blocks can be anywhere. Source and destination block are given. I was asked to find the path with a mini...
  • Q2. Find the sum of k smallest number in a BST.
  • Ans. 

    Find sum of k smallest numbers in a BST.

    • Traverse the BST in-order and add the k smallest numbers to a sum variable.

    • Use a priority queue to keep track of the k smallest numbers.

    • If k is greater than the number of nodes in the BST, return the sum of all nodes.

    • If k is 0, return 0.

  • Answered by AI
  • Q3. System design of BookMyShow. Design the algorithm and database for the seat booking system. How this the system will handle the case when the payment gets failed. Again he asked me to write the query for...
  • Ans. 

    Design algorithm and database for seat booking system of BookMyShow and handle failed payments.

    • Create a database with tables for movies, theaters, seats, bookings, and payments

    • Use a locking mechanism to prevent double booking of seats

    • If payment fails, release the locked seats and notify the user

    • Write a query to get the timestamp in SQL: SELECT CURRENT_TIMESTAMP;

  • Answered by AI
  • Q4. Write the code for the time stamp in C.
  • Ans. 

    Code for time stamp in C

    • Use the time.h header file

    • Call the time() function to get the current time in seconds

    • Convert the time to a string using strftime() function

    • Use the format string to specify the desired format of the time stamp

  • Answered by AI
  • Q5. Write the code for rearranging the array in consecutive pair multiplication. For example consider an array with 10 element A0, A1, A2......A9. The resultant array will be A0*A1, A1*A2, A2*A3, and so on. Th...
  • Ans. 

    Rearrange array in consecutive pair multiplication in descending order.

    • Create a new array to store the multiplied values

    • Use a loop to iterate through the original array and multiply consecutive pairs

    • Write a compare function to sort the new array in descending order

  • Answered by AI
  • Q6. Write the code to rearrange the array in maximum-minimum form.
  • Ans. 

    Code to rearrange an array in maximum-minimum form.

    • Sort the array in descending order.

    • Create a new array and alternate between adding the maximum and minimum values from the sorted array.

    • Return the new array.

    • Time complexity: O(nlogn)

    • Space complexity: O(n)

  • Answered by AI
  • Q7. What is stoi function (stoi() function)? Its uses and code to Implement stoi function.
  • Ans. 

    stoi() function converts a string to an integer.

    • stoi() is a C++ function that takes a string as input and returns an integer.

    • It is used to convert a string of digits into an integer.

    • It can also handle negative numbers and ignore leading whitespace.

    • Example: int num = stoi("123"); // num is now 123

  • Answered by AI
  • Q8. Write code for Longest Common Substring. (time limit for writing this code was 5-6 minutes)
  • Ans. 

    Code for finding the longest common substring in an array of strings.

    • Iterate through the first string and check for all possible substrings

    • Check if the substring is present in all other strings

    • Keep track of the longest common substring found so far

    • Return the longest common substring

  • Answered by AI
  • Q9. Q: What is a Transaction in DBMS and ACID properties? Q: What is Thread and how it is different from the Process? Q: What are some Linux commands. Write any 5 commands? Q: Why sudo is used for commands?...
  • Ans. 

    Answers to common technical questions in a software engineering interview

    • A transaction in DBMS is a sequence of operations that must be treated as a single unit of work. ACID properties ensure reliability and consistency of transactions.

    • A thread is a lightweight process that shares memory and resources with other threads in the same process. A process is a separate instance of a program.

    • Common Linux commands include ls...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you speak.

Take your step forward. Try to be firstly interviewed if choice arrives ( They get screwed up at the end and ask questions that the previous candidates failed ).

Before approaching the solution to be clear with edge test-cases. Once you are completely sure then come up with an approach.

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. A brief introduction about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. Just a normal conversation and self handling situation

Interview Preparation Tips

Interview preparation tips for other job seekers - just be confident and go thru,questions asked are easy but your confidence matter

Nowfloats Technologies Interview FAQs

How many rounds are there in Nowfloats Technologies Lead Engineer interview for experienced candidates?
Nowfloats Technologies interview process for experienced candidates usually has 2 rounds. The most common rounds in the Nowfloats Technologies interview process for experienced candidates are Technical and One-on-one Round.
What are the top questions asked in Nowfloats Technologies Lead Engineer interview for experienced candidates?

Some of the top questions asked at the Nowfloats Technologies Lead Engineer interview for experienced candidates -

  1. Questions about programming and basics of computer scie...read more
  2. Questions about data structures and algorit...read more
  3. Questions about system des...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
PolicyBazaar Interview Questions
3.6
 • 349 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Matrimony.com Interview Questions
4.2
 • 88 Interviews
Vyapar Interview Questions
3.5
 • 53 Interviews
View all
Nowfloats Technologies Lead Engineer Salary
based on 6 salaries
₹22.5 L/yr - ₹25 L/yr
49% more than the average Lead Engineer Salary in India
View more details
Business Development Manager
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Development Manager
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Branch Manager
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Sales Consultant
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nowfloats Technologies with

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

Info Edge

3.9
Compare

Matrimony.com

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