Upload Button Icon Add office photos

Nous Infosystems

Compare button icon Compare button icon Compare

Filter interviews by

Nous Infosystems Interview Questions and Answers

Updated 24 Mar 2025
Popular Designations

22 Interview questions

A Technical Lead was asked 3mo ago
Q. Describe IOC in ASP.NET Core.
Ans. 

Inversion of Control (IoC) in ASP.NET Core promotes loose coupling and enhances testability through dependency injection.

  • IoC is a design principle that transfers the control of object creation to a container.

  • ASP.NET Core uses Dependency Injection (DI) as its primary IoC mechanism.

  • Services are registered in the Startup class using 'services.AddTransient', 'services.AddScoped', or 'services.AddSingleton'.

  • Example: 's...

View all Technical Lead interview questions
A Technical Lead was asked 3mo ago
Q. What is the difference between in-memory and distributed caching in ASP.NET Core?
Ans. 

In-memory caching stores data in the application's memory, while distributed caching stores data across multiple servers for scalability.

  • In-Memory Caching: Data is stored in the memory of the application server, providing fast access but limited by server memory capacity.

  • Distributed Caching: Data is stored across multiple servers, allowing for larger datasets and improved fault tolerance, e.g., using Redis or Memc...

View all Technical Lead interview questions
A Technical Lead was asked 3mo ago
Q. What is Garbage Collection and how does it work?
Ans. 

Garbage Collection is an automatic memory management process that reclaims memory occupied by objects no longer in use.

  • Garbage Collection identifies and frees memory that is no longer referenced by the program.

  • It helps prevent memory leaks, which occur when memory is allocated but not released.

  • Common algorithms include Mark-and-Sweep, Reference Counting, and Generational Collection.

  • For example, in Java, the JVM au...

View all Technical Lead interview questions
A Senior Front end Developer was asked 9mo ago
Q. What are the differences between setTimeout, setInterval, and setImmediate?
Ans. 

setTimeout executes a function once after a specified time, setInterval executes a function repeatedly at specified intervals, setImmediate executes a function immediately after the current event loop.

  • setTimeout executes a function once after a specified delay.

  • setInterval executes a function repeatedly at specified intervals.

  • setImmediate executes a function immediately after the current event loop.

  • Example: setTime...

View all Senior Front end Developer interview questions
A Senior Front end Developer was asked 9mo ago
Q. What is the difference between map and filter?
Ans. 

Map is used to transform each element of an array, while filter is used to select elements based on a condition.

  • Map applies a function to each element of an array and returns a new array with the results.

  • Filter creates a new array with only the elements that pass a certain condition.

  • Example: map - [1, 2, 3].map(x => x * 2) returns [2, 4, 6].

  • Example: filter - [1, 2, 3].filter(x => x > 1) returns [2, 3].

View all Senior Front end Developer interview questions
A Senior Software Engineer was asked 11mo ago
Q. Write a code snippet to find the 3rd largest salary.
Ans. 

Code snippet to find 3rd largest salary

  • Sort the salaries in descending order

  • Skip duplicates while iterating through the sorted salaries

  • Return the third unique salary

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What are the concepts of OOPs?
Ans. 

OOPs concepts refer to Object-Oriented Programming principles such as inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implementatio...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. What types of threads are you familiar with?
Ans. 

Types of threads include user threads and kernel threads.

  • User threads are managed by user-level threads library and are created by the application.

  • Kernel threads are managed by the operating system and are created and managed by the kernel.

  • Examples include POSIX threads (pthread) for user threads and Windows threads for kernel threads.

View all Senior Software Engineer interview questions
A Softwaretest Engineer was asked
Q. Can you provide coding samples to predict the outcome?
Ans. 

Using coding samples to predict outcomes is a common practice in software testing.

  • Utilize machine learning algorithms to analyze historical data and predict future outcomes

  • Implement regression analysis to identify patterns and trends in the data

  • Use decision trees or neural networks to classify data and make predictions

  • Evaluate the accuracy of the predictions using metrics like precision, recall, and F1 score

View all Softwaretest Engineer interview questions
A Senior Test Engineer was asked
Q. What is the IDisposable method?
Ans. 

IDisposable method is used to release unmanaged resources in .NET applications.

  • IDisposable interface is used to release unmanaged resources like file handles, database connections, etc.

  • It contains a single method Dispose() which should be implemented to release resources.

  • It is recommended to use IDisposable along with using statement for proper resource management.

  • Example: FileStream class in C# implements IDispos...

View all Senior Test Engineer interview questions

Nous Infosystems Interview Experiences

43 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. They literally demotivated me just to hire me for low salary . They

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't even send a proper offer letter eve after getting your adhar and other details threw a declaration form. And they quotes really low salary. Waste of my time and I got so depressed after the interview process since they demotivated me a lot. Every job seeer learns when given an opportunity you need not talk nonsense for what they are today.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Basic testing question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Collection, stream API, spring boot
  • Q2. Micro services, design patterns
  • Q3. Design patterns
  • Q4. Lamda expresssion
  • Q5. Write code snippet to find 3rd largest salary
  • Ans. 

    Code snippet to find 3rd largest salary

    • Sort the salaries in descending order

    • Skip duplicates while iterating through the sorted salaries

    • Return the third unique salary

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between setTimeout , setInterval , setImmediate ?
  • Ans. 

    setTimeout executes a function once after a specified time, setInterval executes a function repeatedly at specified intervals, setImmediate executes a function immediately after the current event loop.

    • setTimeout executes a function once after a specified delay.

    • setInterval executes a function repeatedly at specified intervals.

    • setImmediate executes a function immediately after the current event loop.

    • Example: setTimeout((...

  • Answered by AI
  • Q2. Difference between map and filter?
  • Ans. 

    Map is used to transform each element of an array, while filter is used to select elements based on a condition.

    • Map applies a function to each element of an array and returns a new array with the results.

    • Filter creates a new array with only the elements that pass a certain condition.

    • Example: map - [1, 2, 3].map(x => x * 2) returns [2, 4, 6].

    • Example: filter - [1, 2, 3].filter(x => x > 1) returns [2, 3].

  • Answered by AI

Skills evaluated in this interview

Test Engineer Interview Questions & Answers

user image yuvaraj m u

posted on 16 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about your self and testing concepts
  • Ans. 

    I am a dedicated Test Engineer with a strong understanding of testing concepts and methodologies.

    • I have experience in creating test plans, test cases, and executing tests to ensure software quality.

    • I am proficient in using testing tools such as Selenium, JIRA, and TestRail.

    • I have a solid understanding of different types of testing like functional, regression, and performance testing.

    • I am skilled in identifying and repo...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

An aptitude test was conducted that involved logical thinking, grammar, and general aptitude.

QA Engineer Interview Questions & Answers

user image sreekala p

posted on 17 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Selection sort, Search algorithms

Round 2 - Case Study 

QA test case excenarios

Round 3 - HR 

(3 Questions)

  • Q1. Salary negotiations,
  • Q2. Career path descriptions
  • Q3. About probationary period, designation after Probation period etc
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Playwright with javascript and coding
Round 2 - Technical 

(1 Question)

  • Q1. Playwrights architeccture
Round 3 - One-on-one 

(2 Questions)

  • Q1. No rounds exist
  • Q2. . . . . no rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
If you get selected don't keep the hopes untill getting offer letter.
Always keep optional offers
Because I had this situation where all rounds of interview completed and waited for offer the almost 5 days but finaly the output is project is on hold and so not approved.

So be careful before joining.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

Asked to create a E-Commerce website.

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

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts, write test scenarios, code refactoring
  • Q2. What isIDisposable method
  • Ans. 

    IDisposable method is used to release unmanaged resources in .NET applications.

    • IDisposable interface is used to release unmanaged resources like file handles, database connections, etc.

    • It contains a single method Dispose() which should be implemented to release resources.

    • It is recommended to use IDisposable along with using statement for proper resource management.

    • Example: FileStream class in C# implements IDisposable ...

  • Answered by AI
  • Q3. Interface vs abstractclass
  • Ans. 

    Interface defines a contract for classes to implement, while abstract class provides partial implementation.

    • Interface can have only abstract methods, while abstract class can have both abstract and concrete methods.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used for achieving multiple inheritance in Java.

    • Abstract classes are used when some common functionality...

  • Answered by AI

Skills evaluated in this interview

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 Nous Infosystems?
Ask anonymously on communities.

Nous Infosystems Interview FAQs

How many rounds are there in Nous Infosystems interview?
Nous Infosystems interview process usually has 2-3 rounds. The most common rounds in the Nous Infosystems interview process are Technical, HR and Resume Shortlist.
How to prepare for Nous Infosystems 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 Nous Infosystems. The most common topics and skills that interviewers at Nous Infosystems expect are Javascript, SQL, HTML, Analytical and Automation Testing.
What are the top questions asked in Nous Infosystems interview?

Some of the top questions asked at the Nous Infosystems interview -

  1. What is Garbage Collection and how does it wor...read more
  2. 1.Appium architecture . 2.Appium 1x to 2x differences. 3. Android and IOS diffe...read more
  3. Difference between in-memory and distributed caching in Asp.Net Co...read more
How long is the Nous Infosystems interview process?

The duration of Nous Infosystems interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 39 interview experiences

Difficulty level

Easy 11%
Moderate 84%
Hard 5%

Duration

Less than 2 weeks 78%
2-4 weeks 17%
4-6 weeks 6%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
3i Infotech Interview Questions
3.4
 • 151 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
Sify Technologies Interview Questions
3.8
 • 131 Interviews
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all

Nous Infosystems Reviews and Ratings

based on 375 reviews

3.9/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.5

Salary

3.8

Job security

3.9

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 375 Reviews and Ratings
Manager / Senior Manager - Operation & strategy

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

AccelQ Test Automation Engineer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
455 salaries
unlock blur

₹14.3 L/yr - ₹26 L/yr

Software Engineer
310 salaries
unlock blur

₹3.3 L/yr - ₹10.8 L/yr

Senior Test Engineer
265 salaries
unlock blur

₹11.4 L/yr - ₹18 L/yr

Technical Lead
132 salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Test Engineer
120 salaries
unlock blur

₹3.9 L/yr - ₹8 L/yr

Explore more salaries
Compare Nous Infosystems with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview