Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by iManage (NetRights Technologies Private Limited) Team. If you also belong to the team, you can get access from here

Filter interviews by

iManage (NetRights Technologies Private Limited) Interview Questions and Answers

Updated 29 Apr 2025
Popular Designations

5 Interview questions

A DevOps Site Reliability Engineer was asked 3mo ago
Q. What is the chmod command, and how is it used?
Ans. 

The chmod command changes file permissions in Unix/Linux systems, controlling read, write, and execute access.

  • chmod uses symbolic (rwx) or numeric (0-7) modes to set permissions.

  • Example: 'chmod 755 file.txt' grants full access to the owner and read/execute to others.

  • Symbolic example: 'chmod u+x script.sh' adds execute permission for the user.

  • Permissions are divided into three categories: user (u), group (g), and o...

View all DevOps Site Reliability Engineer interview questions
A Site Reliability Engineer was asked 3mo ago
Q. What is the chmod command in Linux, and how do you use it?
Ans. 

The chmod command in Linux changes file permissions for users, groups, and others.

  • Syntax: chmod [options] mode file(s)

  • Mode can be specified in symbolic (rwx) or numeric (octal) format.

  • Example: chmod 755 myfile.txt sets read, write, execute for owner, read and execute for group and others.

  • Example: chmod u+x myscript.sh adds execute permission for the user.

View all Site Reliability Engineer interview questions
A Site Reliability Engineer was asked 3mo ago
Q. What is a Linux virtual memory system?
Ans. 

Linux virtual memory system manages memory allocation, swapping, and paging to optimize performance and resource utilization.

  • Virtual memory allows the system to use disk space as an extension of RAM.

  • It enables processes to use more memory than physically available by swapping pages in and out.

  • The Linux kernel uses a page table to map virtual addresses to physical addresses.

  • Swapping can lead to performance degradat...

View all Site Reliability Engineer interview questions
A Senior Software Engineer was asked
Q. Node Js in depth architecture
Ans. 

Node.js architecture involves event-driven, non-blocking I/O model, single-threaded event loop, and asynchronous programming.

  • Event-driven architecture allows Node.js to handle multiple connections efficiently.

  • Non-blocking I/O model ensures that Node.js can handle many concurrent connections without getting blocked.

  • Single-threaded event loop processes all I/O operations asynchronously, improving performance.

  • Asynchr...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Database architecture in depth
Ans. 

Database architecture involves the design, structure, and organization of databases to ensure efficient data storage and retrieval.

  • Database architecture includes defining data models, schemas, indexing, and relationships.

  • It involves choosing the right database management system (e.g. relational, NoSQL) based on requirements.

  • Performance tuning, scalability, and security are key considerations in database architectu...

View all Senior Software Engineer interview questions

iManage (NetRights Technologies Private Limited) Interview Experiences

5 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. All about SDLC and STLC
  • Q2. All about Pattern coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and present yourself well.
Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What is the chmode command in Linux, and how do you use it?
  • Ans. 

    The chmod command in Linux changes file permissions for users, groups, and others.

    • Syntax: chmod [options] mode file(s)

    • Mode can be specified in symbolic (rwx) or numeric (octal) format.

    • Example: chmod 755 myfile.txt sets read, write, execute for owner, read and execute for group and others.

    • Example: chmod u+x myscript.sh adds execute permission for the user.

  • Answered by AI
  • Q2. What is a Linux virtual memory system?
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What is the Linux virtual memory system?
  • Q2. What is the chmod command, and how is it used?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

15mins each code merge two array

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

I appeared for an interview in Aug 2023.

Round 1 - Technical 

(5 Questions)

  • Q1. It was in depth interview. Please go through basics at very very deep level
  • Q2. Javascript basic questions
  • Q3. Prototype based questions
  • Q4. Node Js in depth architecture
  • Ans. 

    Node.js architecture involves event-driven, non-blocking I/O model, single-threaded event loop, and asynchronous programming.

    • Event-driven architecture allows Node.js to handle multiple connections efficiently.

    • Non-blocking I/O model ensures that Node.js can handle many concurrent connections without getting blocked.

    • Single-threaded event loop processes all I/O operations asynchronously, improving performance.

    • Asynchronous...

  • Answered by AI
  • Q5. Database architecture in depth
  • Ans. 

    Database architecture involves the design, structure, and organization of databases to ensure efficient data storage and retrieval.

    • Database architecture includes defining data models, schemas, indexing, and relationships.

    • It involves choosing the right database management system (e.g. relational, NoSQL) based on requirements.

    • Performance tuning, scalability, and security are key considerations in database architecture.

    • Ex...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about iManage (NetRights Technologies Private Limited)?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.

Interview Questionnaire 

9 Questions

  • Q1. Questions related to the work done at my previous company
  • Q2. Find if a given directed graph is cyclic or not
  • Ans. 

    To check if a directed graph is cyclic or not

    • Use Depth First Search (DFS) algorithm to traverse the graph

    • Maintain a visited set to keep track of visited nodes

    • Maintain a recursion stack to keep track of nodes in the current DFS traversal

    • If a node is visited and is already in the recursion stack, then the graph is cyclic

    • If DFS traversal completes without finding a cycle, then the graph is acyclic

  • Answered by AI
  • Q3. You have a stream of bytes from which you can read one byte at a time. You only have enough space to store one byte. After processing those bytes, you have to return a random byte. Note: The probability of...
  • Ans. 

    Return a random byte from a stream of bytes with equal probability.

    • Create a variable to store the count of bytes read

    • Create a variable to store the current random byte

    • For each byte read, generate a random number between 0 and the count of bytes read

    • If the random number is 0, store the current byte as the random byte

    • Return the random byte

  • Answered by AI
  • Q4. Find if a given Binary Tree is BST or not
  • Q5. Devise an algorithm to determine the Nth-to-Last element in a singly linked list of unknown length. If N = 0, then your algorithm must return the last element. You should parse the list only once
  • Ans. 

    Algorithm to find Nth-to-Last element in a singly linked list of unknown length

    • Traverse the list and maintain two pointers, one at the beginning and one at Nth node from beginning

    • Move both pointers simultaneously until the second pointer reaches the end of the list

    • The first pointer will be pointing to the Nth-to-Last element

    • If N=0, return the last element

    • Parse the list only once

  • Answered by AI
  • Q6. Given an array of integers, print all possible permutations. Also explain your approach
  • Ans. 

    Print all possible permutations of an array of integers

    • Use recursion to swap elements and generate permutations

    • Start with the first element and swap it with each subsequent element

    • Repeat the process for the remaining elements

    • Stop when all elements have been swapped with the first element

    • Print each permutation as it is generated

  • Answered by AI
  • Q7. Design a Stack DS that also prints in O(1) the minimum element you pushed in the stack
  • Ans. 

    Design a stack that prints the minimum element pushed in O(1)

    • Use two stacks, one for storing elements and another for storing minimums

    • When pushing an element, compare it with the top of minimum stack and push the smaller one

    • When popping an element, pop from both stacks

    • To get the minimum element, just return the top of minimum stack

  • Answered by AI
  • Q8. Given a linked list with loop, how would you find the starting point of the loop ?
  • Ans. 

    To find the starting point of a loop in a linked list, use Floyd's cycle-finding algorithm.

    • Use two pointers, one moving at twice the speed of the other.

    • When they meet, move one pointer to the head of the list and keep the other at the meeting point.

    • Move both pointers one step at a time until they meet again, which is the starting point of the loop.

  • Answered by AI
  • Q9. Find a number a matrix mat[m][n] where all the rows and columns are sorted non-decreasingly. What will be the complexity of the solution
  • Ans. 

    To find a number in a matrix where all rows and columns are sorted non-decreasingly. Complexity of the solution.

    • Use binary search to find the number in each row and column

    • Start from the top-right corner or bottom-left corner to optimize search

    • Time complexity: O(m log n) or O(n log m) depending on the starting corner

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: Na

Skills evaluated in this interview

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2022.

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 

(1 Question)

  • Q1. Linked list (detect loop, reverse, delte a node) tree (height, DFS) graph theory concept C++ basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Total 3 round of Technical interviews.

Interview Preparation Tips

Interview preparation tips for other job seekers - C++ basics, Algo and Data structure and some basic concept of graph theory.

I applied via Company Website and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Can you walk me through your resume?

Interview Preparation Tips

Interview preparation tips for other job seekers - You will be asked only on the skills you have mentioned in your CV. Prepare well before the interview. People who had taken the interview was my current manager and senior manager. They are very friendly with everyone. Just keep in mind that you have to perform in such a way like you are talking to a friend. All the very best.

iManage (NetRights Technologies Private Limited) Interview FAQs

How many rounds are there in iManage (NetRights Technologies Private Limited) interview?
iManage (NetRights Technologies Private Limited) interview process usually has 1 rounds. The most common rounds in the iManage (NetRights Technologies Private Limited) interview process are Technical and Coding Test.
How to prepare for iManage (NetRights Technologies Private Limited) 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 iManage (NetRights Technologies Private Limited). The most common topics and skills that interviewers at iManage (NetRights Technologies Private Limited) expect are Cloud, Career Development, Python, Agile and Computer science.
What are the top questions asked in iManage (NetRights Technologies Private Limited) interview?

Some of the top questions asked at the iManage (NetRights Technologies Private Limited) interview -

  1. What is the chmode command in Linux, and how do you use ...read more
  2. What is the chmod command, and how is it us...read more
  3. What is a Linux virtual memory syst...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 5 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Fingent Interview Questions
4.1
 • 25 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
Eagleview Interview Questions
3.3
 • 21 Interviews
Khoros Interview Questions
3.8
 • 20 Interviews
3Pillar Global Interview Questions
3.1
 • 20 Interviews
Bottomline Interview Questions
3.3
 • 20 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Fourkites Interview Questions
3.7
 • 18 Interviews
ValGenesis Interview Questions
3.1
 • 17 Interviews
View all

iManage (NetRights Technologies Private Limited) Reviews and Ratings

based on 29 reviews

4.4/5

Rating in categories

3.9

Skill development

4.6

Work-life balance

3.8

Salary

4.6

Job security

4.6

Company culture

3.7

Promotions

4.3

Work satisfaction

Explore 29 Reviews and Ratings
Security Compliance Analyst

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Staff Frontend Engineer (Angular)

Kolkata,

Mumbai

+5

2-6 Yrs

Not Disclosed

Senior Backend Developer (Dot Net)

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
Devops Engineer
7 salaries
unlock blur

₹7.1 L/yr - ₹10 L/yr

Cloud Operations Engineer
6 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Senior Contract Analyst
5 salaries
unlock blur

₹11.8 L/yr - ₹12 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹21.2 L/yr - ₹36.3 L/yr

Senior Cloud Operations Engineer
4 salaries
unlock blur

₹13 L/yr - ₹19.2 L/yr

Explore more salaries
Compare iManage (NetRights Technologies Private Limited) with

Yodlee

3.9
Compare

Fingent

4.1
Compare

Bravura Solutions

3.8
Compare

Eagleview

3.4
Compare
write
Share an Interview