Upload Button Icon Add office photos

Filter interviews by

American Legalnet Interview Questions and Answers

Updated 4 May 2022
Popular Designations

14 Interview questions

A Business Associate was asked
Q. How do you handle difficult stakeholders?
Ans. 

Handling difficult stakeholders requires active listening, clear communication, and finding common ground.

  • Listen actively to their concerns and try to understand their perspective

  • Communicate clearly and transparently, setting expectations and boundaries

  • Find common ground and work towards a mutually beneficial solution

  • Involve them in the decision-making process and keep them informed

  • Be patient and empathetic, but a...

View all Business Associate interview questions
A Senior Software Engineer was asked
Q. How would you solve a deadlock in a SQL server?
Ans. 

Deadlocks can be solved by identifying and breaking the circular wait condition.

  • Identify the processes involved in the deadlock

  • Identify the resources each process is holding and waiting for

  • Break the circular wait condition by releasing one or more resources

  • Use deadlock detection tools to identify and resolve deadlocks

  • Optimize the database design and queries to minimize the occurrence of deadlocks

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is meant by the Repository Pattern?
Ans. 

Repository Pattern is a design pattern that separates data access logic from business logic.

  • It provides a way to access data from a data source without exposing the underlying database or data store.

  • It helps in achieving separation of concerns and makes the code more modular and testable.

  • It can be implemented using interfaces and classes to define a set of methods for data access.

  • Examples include Entity Framework ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is the unit of work in .Net?
Ans. 

Unit of work in .Net is a design pattern that helps manage transactions and database connections.

  • Unit of work is used to group database operations into a single transaction.

  • It helps to ensure data consistency and integrity.

  • It also helps to reduce the number of database connections.

  • Examples of frameworks that implement unit of work are Entity Framework and NHibernate.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What are temporary tables?
Ans. 

Temp tables are temporary tables created in memory or disk for storing data temporarily.

  • Temp tables are used to store intermediate results during complex queries.

  • They are created and destroyed automatically by the system.

  • They can be used to improve query performance by reducing the number of disk I/O operations.

  • They can also be used to simplify complex queries by breaking them down into smaller, more manageable pa...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What are magic tables?
Ans. 

Magic tables are temporary tables created by SQL Server to hold inserted, deleted or updated data during a trigger execution.

  • Magic tables are used in SQL Server triggers to access the data that caused the trigger to fire.

  • They are created automatically by SQL Server and contain the inserted, deleted or updated data.

  • They are named 'inserted' and 'deleted' and can be referenced in the trigger code.

  • Magic tables are us...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is the difference between a static class and a singleton class?
Ans. 

Static class cannot be instantiated and has only static members, while singleton class allows only one instance to be created and provides a global point of access to it.

  • Static class cannot be inherited, while singleton class can be

  • Static class members are accessed using class name, while singleton class instance is accessed using getInstance() method

  • Static class is used for utility classes, while singleton class ...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. What is meant by Identity Provider?
Ans. 

An Identity Provider (IdP) is a service that authenticates users and provides identity information to other applications.

  • IdP is responsible for verifying user identities and providing access tokens.

  • It allows users to log in to multiple applications using a single set of credentials.

  • Examples of IdPs include Google, Facebook, and Microsoft Azure Active Directory.

  • IdP uses protocols such as SAML, OAuth, and OpenID Con...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is the difference between JIT and AOT compilers in Angular?
Ans. 

JIT compiles code at runtime while AOT compiles code during build time.

  • JIT stands for Just-In-Time compilation and compiles code at runtime.

  • AOT stands for Ahead-Of-Time compilation and compiles code during build time.

  • JIT is used in development mode while AOT is used in production mode.

  • JIT compiles templates and components on the fly while AOT compiles them before runtime.

  • AOT generates smaller and faster code compa...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. How will you handle global exceptions in .Net?
Ans. 

Global exceptions in .Net can be handled using try-catch blocks and application-level exception handlers.

  • Use try-catch blocks to handle exceptions at the method level

  • Use application-level exception handlers to handle exceptions globally

  • Use the Application_Error event in Global.asax to handle unhandled exceptions

  • Log exceptions to a file or database for debugging purposes

  • Display user-friendly error messages to the u...

View all Senior Software Engineer interview questions

American Legalnet Interview Experiences

2 interviews found

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 

(1 Question)

  • Q1. How to handle difficult stakeholders?
  • Ans. 

    Handling difficult stakeholders requires active listening, clear communication, and finding common ground.

    • Listen actively to their concerns and try to understand their perspective

    • Communicate clearly and transparently, setting expectations and boundaries

    • Find common ground and work towards a mutually beneficial solution

    • Involve them in the decision-making process and keep them informed

    • Be patient and empathetic, but also a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through case studies available over internet

I applied via Naukri.com and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

13 Questions

  • Q1. How will you handle Global exceptions in .Net
  • Ans. 

    Global exceptions in .Net can be handled using try-catch blocks and application-level exception handlers.

    • Use try-catch blocks to handle exceptions at the method level

    • Use application-level exception handlers to handle exceptions globally

    • Use the Application_Error event in Global.asax to handle unhandled exceptions

    • Log exceptions to a file or database for debugging purposes

    • Display user-friendly error messages to the user

  • Answered by AI
  • Q2. What is the difference between static class and singleton class
  • Ans. 

    Static class cannot be instantiated and has only static members, while singleton class allows only one instance to be created and provides a global point of access to it.

    • Static class cannot be inherited, while singleton class can be

    • Static class members are accessed using class name, while singleton class instance is accessed using getInstance() method

    • Static class is used for utility classes, while singleton class is us...

  • Answered by AI
  • Q3. What is meant by Repository Pattern
  • Ans. 

    Repository Pattern is a design pattern that separates data access logic from business logic.

    • It provides a way to access data from a data source without exposing the underlying database or data store.

    • It helps in achieving separation of concerns and makes the code more modular and testable.

    • It can be implemented using interfaces and classes to define a set of methods for data access.

    • Examples include Entity Framework in .N...

  • Answered by AI
  • Q4. How will you solve Deadlock in the SQL server
  • Ans. 

    Deadlocks can be solved by identifying and breaking the circular wait condition.

    • Identify the processes involved in the deadlock

    • Identify the resources each process is holding and waiting for

    • Break the circular wait condition by releasing one or more resources

    • Use deadlock detection tools to identify and resolve deadlocks

    • Optimize the database design and queries to minimize the occurrence of deadlocks

  • Answered by AI
  • Q5. If my sp has three select statements one of the statement is taking time to load how will you check
  • Ans. 

    Identify performance issues in a stored procedure with multiple select statements by analyzing execution plans and query performance.

    • Check the execution plan for the slow query using tools like SQL Server Management Studio.

    • Use SQL Server Profiler or Extended Events to monitor query performance and identify bottlenecks.

    • Analyze indexes on the tables involved in the slow query; missing or fragmented indexes can slow down ...

  • Answered by AI
  • Q6. What is meant by Magic tables
  • Ans. 

    Magic tables are temporary tables created by SQL Server to hold inserted, deleted or updated data during a trigger execution.

    • Magic tables are used in SQL Server triggers to access the data that caused the trigger to fire.

    • They are created automatically by SQL Server and contain the inserted, deleted or updated data.

    • They are named 'inserted' and 'deleted' and can be referenced in the trigger code.

    • Magic tables are useful ...

  • Answered by AI
  • Q7. What is meant by Temp tables
  • Ans. 

    Temp tables are temporary tables created in memory or disk for storing data temporarily.

    • Temp tables are used to store intermediate results during complex queries.

    • They are created and destroyed automatically by the system.

    • They can be used to improve query performance by reducing the number of disk I/O operations.

    • They can also be used to simplify complex queries by breaking them down into smaller, more manageable parts.

    • E...

  • Answered by AI
  • Q8. What is the unity of work in .Net
  • Ans. 

    Unit of work in .Net is a design pattern that helps manage transactions and database connections.

    • Unit of work is used to group database operations into a single transaction.

    • It helps to ensure data consistency and integrity.

    • It also helps to reduce the number of database connections.

    • Examples of frameworks that implement unit of work are Entity Framework and NHibernate.

  • Answered by AI
  • Q9. What is meant by cors
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing and is a security feature implemented in web browsers.

    • CORS allows web servers to specify which origins are allowed to access their resources

    • It is used to prevent malicious websites from accessing sensitive data

    • CORS is enforced by web browsers and not by servers

    • It uses HTTP headers to communicate between the server and the browser

  • Answered by AI
  • Q10. What is the difference between JIT and AOT compiler in Angular
  • Ans. 

    JIT compiles code at runtime while AOT compiles code during build time.

    • JIT stands for Just-In-Time compilation and compiles code at runtime.

    • AOT stands for Ahead-Of-Time compilation and compiles code during build time.

    • JIT is used in development mode while AOT is used in production mode.

    • JIT compiles templates and components on the fly while AOT compiles them before runtime.

    • AOT generates smaller and faster code compared t...

  • Answered by AI
  • Q11. What is content negotiation in WebAPI
  • Ans. 

    Content negotiation is the process of selecting the best representation of a resource based on the client's request.

    • It allows clients to specify the format they prefer for the response data.

    • WebAPI uses the Accept header to determine the preferred format.

    • It can be used to support multiple formats like JSON, XML, or plain text.

    • It helps in building flexible and interoperable APIs.

  • Answered by AI
  • Q12. What is the difference between Encapsulation and Abstraction
  • Ans. 

    Encapsulation is hiding the implementation details while Abstraction is hiding the complexity of the system.

    • Encapsulation is achieved through access modifiers like private, protected, and public.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsulation is used to protect the data from outside interference.

    • Abstraction is used to provide a simplified view of the system.

    • Encapsulation is a way to achiev...

  • Answered by AI
  • Q13. What is mean by Identity Provider
  • Ans. 

    An Identity Provider (IdP) is a service that authenticates users and provides identity information to other applications.

    • IdP is responsible for verifying user identities and providing access tokens.

    • It allows users to log in to multiple applications using a single set of credentials.

    • Examples of IdPs include Google, Facebook, and Microsoft Azure Active Directory.

    • IdP uses protocols such as SAML, OAuth, and OpenID Connect ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident if know the answers because the interviewer will confuse you

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about American Legalnet?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

Software Engineer Interview Questions & Answers

American Megatrends user image R. Arockia Ratheesh Sahayaraj

posted on 6 Nov 2015

Interview Preparation Tips

Round: Test
Experience: Only 24 people from my campus attended the placement process of this company.The experience wasn't really good.I wasn't 
short-listed for next round as my CGPA was 7.5 and need was of above 7.5 ,as they were maintaining standards.

Round: Test
Experience: 1.C aps was really tough.
2.Section 2 we had to choose either Microprocessor or Java,I preferred microprocessor . 3.Simple Questions on 8085 and 8086 instruction set was asked.
4.How much memory are there are 20 address lines,
5.Difference between SRAM and DRAM.
6.ROM is used for stack or not.
7.What are contents of Stack Pointer after PUSH and POP operation.
8.What happens after RET instruction?
9.What is CMC equivalent instruction?

Round: Test
Experience: 16 questions on Quant which are :-
Odd number in a series, Area and Volume, Games of Skill, Time and Work, Average, Trains, Boats 
and Streams, Profit and Gain were asked.
If no. of handshakes is 66,find total number of People.?
A lotus in a pond doubles in size everyday,if it fills the pond on 20th day,when will be the pond would be half?
LOGICAL REASONING-
4 men are on the side of a bridge.One torch light is with them and without it they cannot cross 
the bridge.The bridge can withstand only 2 people at a time.The time required by the persons are 1 
min,2 mins,7 mins,10 mins respectively.Find the shortest time required by all of em to cross the
bridge.
(Answer: 17 minutes)

Round: SOFT SKILLS
Experience: scenario based questions were asked:-
1.working on a project in your company and your brother is in urgent need of a project.What will you do?
2.Your friend mails the project details to some other company.what will be you reaction?
3.Your boss allows to take your team members for a treat.Whether you choose costly one or within budget?
4.Your favorite subject in your curriculum and Why?
5.Where you would view yourself in 5 years?
6.What is a dream company in your terms?
7.Any situation were your work was criticized and what was your reaction?

Skills:
College Name: Anna University Chennai
Round 1 - Technical 

(1 Question)

  • Q1. Aura related questions
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 3 - Group Discussion 
Pro Tip by AmbitionBox:
Be a good listener. GDs are not just about speaking. Your listening skills will give you a lot of points to counter and speak when your turn comes.
View all tips
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Na
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.

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 

(2 Questions)

  • Q1. Database Design was asked with
  • Q2. System design networking architecture data pipeline

Interview Preparation Tips

Interview preparation tips for other job seekers - Good process. Smooth and early offer release. Smooth process

Interview Questionnaire 

1 Question

  • Q1. What js difference between === and ==
  • Ans. 

    === compares value and type, while == only compares value

    • === is stricter than == in type checking

    • === returns true only if both operands are of the same type and have the same value

    • == performs type coercion, which can lead to unexpected results

    • For example, '5' == 5 returns true, but '5' === 5 returns false

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics, oops concepts, advance framework

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. C# standard QA,Azure

Interview Preparation Tips

Interview preparation tips for other job seekers - 1)C# program --like find second largest number
2)sql query writing like using group by etc
3)standard C# Q/A
4)Scenario based ques like - how you troubleshoot any web page low performance
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic ques related to resume
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Do you know about GD&T?
  • Q2. Tell me about project you Did.
  • Ans. 

    Led a cross-functional team to develop a scalable web application for real-time data analytics in the finance sector.

    • Designed the architecture using microservices to enhance scalability and maintainability.

    • Implemented a CI/CD pipeline using Jenkins, reducing deployment time by 40%.

    • Collaborated with data scientists to integrate machine learning models for predictive analytics.

    • Conducted code reviews and mentored junior e...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. How much your expectations?
  • Q2. Do you have any questions?
  • Ans. 

    I would like to understand the team's culture, project expectations, and opportunities for growth within the company.

    • What does the typical career progression look like for a Senior Engineer here?

    • Can you describe the team dynamics and collaboration style?

    • What are the current projects the team is working on, and what technologies are being used?

    • How does the company support continuous learning and professional development...

  • Answered by AI

American Legalnet Interview FAQs

How many rounds are there in American Legalnet interview?
American Legalnet interview process usually has 2 rounds. The most common rounds in the American Legalnet interview process are Resume Shortlist and One-on-one Round.
How to prepare for American Legalnet 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 American Legalnet. The most common topics and skills that interviewers at American Legalnet expect are JQuery, Javascript, SQL, Workflow and .Net.
What are the top questions asked in American Legalnet interview?

Some of the top questions asked at the American Legalnet interview -

  1. If my sp has three select statements one of the statement is taking time to loa...read more
  2. what is the difference between JIT and AOT compiler in Angu...read more
  3. What is the difference between static class and singleton cl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Pitney Bowes Interview Questions
3.8
 • 22 Interviews
Dataflow Group Interview Questions
2.9
 • 16 Interviews
Emtec Interview Questions
4.1
 • 14 Interviews
Billennium Interview Questions
4.1
 • 12 Interviews
Solera Interview Questions
3.1
 • 12 Interviews
Belcan Interview Questions
3.7
 • 9 Interviews
View all

American Legalnet Reviews and Ratings

based on 3 reviews

3.8/5

Rating in categories

3.3

Skill development

2.8

Work-life balance

3.5

Salary

3.7

Job security

3.5

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 3 Reviews and Ratings
Senior UX Designer

Hyderabad / Secunderabad

3-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
7 salaries
unlock blur

₹10 L/yr - ₹15.1 L/yr

Senior Software Developer
4 salaries
unlock blur

₹10.8 L/yr - ₹12.7 L/yr

Country Manager
4 salaries
unlock blur

₹40 L/yr - ₹46 L/yr

QA Engineer
3 salaries
unlock blur

₹13.2 L/yr - ₹17.5 L/yr

Senior QA Engineer
3 salaries
unlock blur

₹12.9 L/yr - ₹14 L/yr

Explore more salaries
Compare American Legalnet with

Pitney Bowes

3.8
Compare

Dataflow Group

2.9
Compare

Sagitec Solutions

3.6
Compare

Continuum Managed Services

4.2
Compare
write
Share an Interview