Upload Button Icon Add office photos
Engaged Employer

i

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

Nouveau labs Verified Tick

Compare button icon Compare button icon Compare
2.3

based on 9 Reviews

Filter interviews by

Nouveau labs Software Engineer Interview Questions and Answers

Updated 5 Jan 2022

Nouveau labs Software Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Given an api, return it's output for 5 entries.
  • Ans. 

    Return output of given api for 5 entries.

    • Identify the API and its input parameters

    • Write a loop to call the API with different inputs

    • Store the output in an array or list

    • Return the first 5 entries of the array/list

  • Answered by AI
  • Q2. Sort a list of dictionaries based on a key
  • Ans. 

    Sort a list of dictionaries based on a key

    • Use the sorted() function with a lambda function to specify the key

    • Use the itemgetter() function from the operator module for better performance

    • Use the reverse parameter to sort in descending order

  • Answered by AI
  • Q3. Merge two sorted lists
  • Ans. 

    Merge two sorted lists

    • Create a new list to store the merged result

    • Compare the first elements of both lists and add the smaller one to the new list

    • Continue comparing and adding elements until one list is exhausted

    • Add the remaining elements of the other list to the new list

    • Return the merged list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for a problem solver, not someone who mugs up all complex DP algos. Be honest during the interview, if you know how to solve then only explain your approach & solution.

Skills evaluated in this interview

Interview questions from similar companies

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

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btw vite and webpack
  • Q2. What is currying in js
Round 2 - Technical 

(2 Questions)

  • Q1. What is currying in javascript?
  • Q2. Diff btw webpack and vite

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover the basics of javascript. Learn about polyfills.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was relatively straightforward, consisting of both aptitude and technical questions, with a difficulty level ranging from easy to medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write a code on basic DSA concept
  • Q2. Then was asked basic questions on DSA and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good understanding of everything you mentioned on your resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test was of moderate level.

Round 2 - Coding Test 

It checked on the concepts of oops

Round 3 - HR 

(1 Question)

  • Q1. How will you deal with tight delivery time.
  • Ans. 

    I will prioritize tasks, communicate effectively with team members, and utilize time management techniques to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller manageable chunks

    • Communicate effectively with team members to coordinate efforts

    • Utilize time management techniques such as Pomodoro technique or Agile methodologies

    • Identify and eliminate any potential roadblocks or bott...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. What is the difference between classes and struct
  • Ans. 

    Classes are reference types while structs are value types.

    • Classes support inheritance while structs do not.

    • Classes have default access modifier as internal while structs have it as private.

    • Classes have a destructor while structs do not.

    • Classes are allocated on heap while structs are allocated on stack.

    • Classes can be null while structs cannot.

  • Answered by AI
  • Q2. Dispatch Queue vs operations
  • Ans. 

    Dispatch Queue is a thread-safe way to execute tasks asynchronously, while Operations are a way to encapsulate tasks.

    • Dispatch Queue is a high-level API for managing concurrent operations.

    • Operations are objects that encapsulate a single task or multiple tasks.

    • Dispatch Queue is simpler to use and recommended for most use cases.

    • Operations provide more control over task dependencies and cancellation.

    • Both can be used togeth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and problem-solving and is tested.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There are three sections: -
1. Quants
2. English
3. Reasoning
All sections are accessible medium but you have maintained the speed and accuracy.
after that coding snippet are in java/python.

Round 2 - Coding Test 

Code snippets are there in coding sections.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all basic concepts and try to do good as well as u know.

Nouveau labs Interview FAQs

How to prepare for Nouveau labs Software Engineer 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 Nouveau labs. The most common topics and skills that interviewers at Nouveau labs expect are Data Structures, Distribution System, Java, Linux and MySQL.
What are the top questions asked in Nouveau labs Software Engineer interview?

Some of the top questions asked at the Nouveau labs Software Engineer interview -

  1. Given an api, return it's output for 5 entri...read more
  2. Sort a list of dictionaries based on a ...read more
  3. Merge two sorted li...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Nouveau labs interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Nouveau labs Software Engineer Salary
based on 30 salaries
₹7 L/yr - ₹19 L/yr
35% more than the average Software Engineer Salary in India
View more details

Nouveau labs Software Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

2.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
30 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹9 L/yr - ₹23.3 L/yr

Lead Engineer
7 salaries
unlock blur

₹13.2 L/yr - ₹37 L/yr

Senior Leader Engineer
6 salaries
unlock blur

₹30.5 L/yr - ₹41 L/yr

Software Developer
5 salaries
unlock blur

₹6.5 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Nouveau labs with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

TCS

3.7
Compare

Wipro

3.7
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