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 10 Dec 2024

iManage (NetRights Technologies Private Limited) Interview Experiences

Popular Designations

3 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.

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

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

15mins each code merge two array

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)
iManage (NetRights Technologies Private Limited) Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed 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

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Interview questions from similar companies

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.

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

Interview Preparation Tips

Round: Resume Shortlist
Experience: A telephonic of technical round basics about C concepts and Embedded C Concepts in order to call for next round .

I was interviewed before Feb 2016.

Interview Questionnaire 

1 Question

  • Q1. Enter a question

Interview Preparation Tips

Round: Resume Shortlist
Experience: Tell in detail what all happened during this round
Tips: Provide tips specifically for this round

Round: Technical Interview
Experience: Tell in detail what all happened during this round
Tips: Provide tips specifically for this round

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

Interview Preparation Tips

College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

11 Questions

  • Q1. Hobbies: Drawing. Asked about drawing and pencil shading. Draw in next 5 mins something great to impress me else rejected
  • Q2. Sketch my face
  • Q3. If you are told to do a job of a peon for the company will you?
  • Q4. Remove all the pcs from the lab and keep in other lab RIGHT NOW?
  • Ans. 

    Yes, I can remove all the pcs from the lab and keep them in another lab right now.

    • Ensure all the necessary equipment and tools are available for the move

    • Coordinate with the lab staff to ensure a smooth transition

    • Label and document each PC for easy identification and setup in the new lab

    • Ensure proper packaging and handling to prevent any damage during the move

  • Answered by AI
  • Q5. Impress me with your talents
  • Q6. If a person asks you on a construction site to pick up bricks will you?
  • Q7. How crazy are you?
  • Q8. Show me how crazy are you in next 5 mins?
  • Q9. Write down Fibonacci series and also explain pseudo code for it?
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • The first two numbers of the series are always 0 and 1

    • The next number is the sum of the previous two numbers

    • The series goes on infinitely: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...

    • Pseudo code: 1. Initialize variables a=0, b=1, c=0 2. Print a and b 3. Repeat steps 4-6 until desired number of terms 4. c=a+b 5. Pr

  • Answered by AI
  • Q10. Write algorithm for matrix multiplication?
  • Ans. 

    Algorithm for matrix multiplication

    • Create a result matrix with dimensions of the two input matrices

    • Iterate through each row and column of the result matrix

    • For each element in the result matrix, multiply corresponding row in first matrix with corresponding column in second matrix

    • Add the products obtained in the previous step to get the final value for the element

  • Answered by AI
  • Q11. Explain your project and which algorithm you used in it. Why that algorithm?
  • Ans. 

    I worked on a project that involved sentiment analysis of customer reviews using Naive Bayes algorithm.

    • The project involved collecting customer reviews from various sources.

    • Preprocessing the data by removing stop words, stemming, and tokenizing.

    • Used Naive Bayes algorithm for sentiment analysis.

    • The algorithm was chosen because of its simplicity and effectiveness in text classification tasks.

    • The accuracy of the model was

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: Confused

If they say do you have any questions?
NEVER ASK about your performance in that round.

Round: Technical Interview
Experience: Good
Tips: Interview depends on your basic knowledge

Skills: Presence Of Mind, Technical Skills, Analytical Skills
College Name: Vidyalankar Institute Of Technology
Motivation: Got rejected for TCS aptitude.
Funny Moments: Whole HR interview

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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. Node Js in depth architect...read more
  2. Database architecture in de...read more
  3. It was in depth interview. Please go through basics at very very deep le...read more

Recently Viewed

LIST OF COMPANIES

Premium Transmission

Overview

REVIEWS

ProSIM R&D

No Reviews

COMPANY BENEFITS

Adrosonic

No Benefits

SALARIES

ClearTax

LIST OF COMPANIES

ProSIM R&D

Overview

REVIEWS

Unbxd

No Reviews

SALARIES

ProSIM R&D

No Salaries

COMPANY BENEFITS

ProSIM R&D

No Benefits

REVIEWS

ClearTax

No Reviews

DESIGNATION

Tell us how to improve this page.

iManage (NetRights Technologies Private Limited) Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all

iManage (NetRights Technologies Private Limited) Reviews and Ratings

based on 25 reviews

4.5/5

Rating in categories

4.0

Skill development

4.6

Work-life balance

3.9

Salary

4.5

Job security

4.5

Company culture

3.7

Promotions

4.3

Work satisfaction

Explore 25 Reviews and Ratings
Senior Software Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cloud Operations Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Contract Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

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

Zoho

4.3
Compare

Freshworks

3.5
Compare

TCS

3.7
Compare

Infosys

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