Upload Button Icon Add office photos

Filter interviews by

Law Firms Intern Interview Questions and Answers for Freshers

Updated 1 Apr 2024

Law Firms Intern Interview Experiences for Freshers

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 1 Apr 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are your qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

In systenic there are 3 rounds
1. coding round (difficulty level - easy-10 min)
2. coding round (difficulty level - medium-30 min)
3. HR + Technical (20 min)

Interview Preparation Tips

Interview preparation tips for other job seekers - In technical interview they ask oop's and database related question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Case Study 

It was regarding the case study of Punjab National Bank and pnbmetlife.

Round 2 - Assignment 

It was regarding basic financial knowledge.

Interview Preparation Tips

Topics to prepare for Pie Infocomm Intern interview:
  • Basic financial knowledge
  • Fintech
Interview preparation tips for other job seekers - Either you have a very strong conceptual knowledge, companies will train you according to their need or a good internship and practical knowledge and skills.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I had a very good experience.

Round 2 - Aptitude Test 

Verbal and logical reasoning questions.

Round 3 - Coding Test 

Data structures and algorithms questions and others.

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

Give the string and array related questions

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Basic Introduction
  • Ans. Start with your name, family details in short, educational details then your current working Role & Responsibility
  • Answered by indispensablejerry
  • Q2. Company 5s policy and
Round 3 - Technical 

(4 Questions)

  • Q1. Welding specially MIG & Spot
  • Q2. Difference between mig & spot consumables, Types of welding machines Basic welding parameters.
  • Ans. 

    MIG consumables are used in MIG welding for continuous wire feeding, while spot consumables are used in spot welding for localized heat application.

    • MIG consumables are used in MIG welding for continuous wire feeding

    • Spot consumables are used in spot welding for localized heat application

    • Types of welding machines include MIG, TIG, stick, and spot welders

    • Basic welding parameters include voltage, current, wire feed speed,

  • Answered by AI
  • Q3. KPI's, Achivement & cost savings
  • Q4. Type of welding Machines Robotic knowledge like Mastring and Trobushooting

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're in weld shop production department then you have to know
1. Basic welding & it's types and parameters.
2. Parameters difference between Pressure & non pressure welding ( non-fusion & fusion welding.)
3. Difference between consumables of mig & spot.
4. Welding defects.
5. Your documents like current force checking, tip dresser working principle.
6. Robotic knowledge Teaching, mastering of robots and Trobushooting.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What was your experience with the online assessment?
  • Ans. 

    The online assessment was a comprehensive evaluation of my coding skills and problem-solving abilities.

    • The assessment included multiple coding challenges that tested my algorithmic thinking.

    • I encountered a mix of data structure problems, such as implementing a binary tree traversal.

    • Time management was crucial; I had to prioritize which problems to tackle first.

    • I appreciated the instant feedback on my submissions, which

  • Answered by AI
  • Q2. What does a daily progress report entail?
  • Ans. 

    A daily progress report summarizes tasks completed, challenges faced, and plans for the next day in a software engineering context.

    • Summary of tasks completed: e.g., 'Implemented user authentication feature.'

    • Challenges faced: e.g., 'Encountered issues with API integration.'

    • Plans for the next day: e.g., 'Work on unit testing for the new feature.'

    • Team collaboration updates: e.g., 'Collaborated with the design team on UI i...

  • Answered by AI
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. How does hash table work?.
  • Ans. 

    A hash table stores key-value pairs for efficient data retrieval using a hash function to compute an index.

    • Uses a hash function to convert keys into array indices.

    • Handles collisions using methods like chaining or open addressing.

    • Example: Inserting key 'apple' might hash to index 3, storing value 'fruit'.

    • Average time complexity for search, insert, and delete is O(1).

    • Resizing may occur when the load factor exceeds a cert

  • Answered by AI
  • Q2. Difference between multithreading and multiprocessing.
  • Ans. 

    Multithreading uses multiple threads within a single process, while multiprocessing uses multiple processes for parallel execution.

    • Multithreading shares the same memory space, making it lightweight and faster for communication.

    • Multiprocessing has separate memory spaces, which can lead to better stability and isolation.

    • Example of multithreading: A web server handling multiple requests simultaneously.

    • Example of multiproc...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal

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 - Aptitude Test 

First round was based on logical questions and was taken on hacker earth

Round 3 - Technical 

(1 Question)

  • Q1. First question was based on rotating a matrix by 90 degrees
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Explain the difference between ArrayList and LinkedList in Java. When would you choose one over the other?
  • Ans. 

    ArrayList uses a dynamic array for storage, while LinkedList uses a doubly linked list structure.

    • ArrayList provides fast random access (O(1)) but slow insertions/deletions (O(n)). Example: accessing elements by index.

    • LinkedList allows fast insertions/deletions (O(1)) but slower random access (O(n)). Example: adding/removing elements at the beginning.

    • ArrayList is preferred when you need frequent access to elements and f...

  • Answered by AI
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? Can you explain how the ReentrantLock compares to synchronized?
  • Ans. 

    Java's synchronized keyword offers thread safety but has limitations compared to ReentrantLock.

    • Advantages of synchronized: Simple to use and understand.

    • Disadvantages of synchronized: Can lead to thread contention and performance issues.

    • ReentrantLock allows more flexibility, such as tryLock() and timed lock attempts.

    • ReentrantLock supports fairness policies, which can help avoid starvation.

    • Synchronized blocks are tied to...

  • Answered by AI
  • Q3. What is the difference between == and .equals() in Java? When should each be used, and what issues can arise from improper usage?
  • Ans. 

    In Java, '==' checks reference equality, while '.equals()' checks value equality. Use them appropriately to avoid bugs.

    • == compares object references, checking if two references point to the same object in memory.

    • Example: String a = new String('test'); String b = new String('test'); a == b returns false.

    • .equals() compares the actual content of the objects, checking if they are logically equivalent.

    • Example: a.equals(b) r...

  • Answered by AI
  • Q4. How does the Java garbage collector work? Can you describe the different types of garbage collection algorithms available in Java?
  • Ans. 

    Java's garbage collector automatically manages memory by reclaiming unused objects, improving performance and preventing memory leaks.

    • Java uses automatic garbage collection to manage memory, freeing developers from manual memory management.

    • The main garbage collection algorithms in Java include: Serial GC, Parallel GC, Concurrent Mark-Sweep (CMS), and G1 GC.

    • Serial GC is a simple, single-threaded collector suitable for s...

  • Answered by AI
  • Q5. What are the main features of Java 8? Can you explain how lambdas and the Stream API have changed the way Java applications are written?
  • Ans. 

    Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and simplify code.

    • Lambdas: Enable concise representation of functional interfaces. Example: (x, y) -> x + y.

    • Stream API: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).

    • Default Methods: Allow adding new methods to interfaces without breakin...

  • Answered by AI
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Provide examples and explain how to handle them properly.
  • Ans. 

    Checked exceptions must be handled or declared, while unchecked exceptions do not require explicit handling.

    • Checked exceptions are subclasses of Exception (excluding RuntimeException). Example: IOException.

    • Unchecked exceptions are subclasses of RuntimeException. Example: NullPointerException.

    • Checked exceptions must be either caught using try-catch or declared in the method signature with throws.

    • Unchecked exceptions can...

  • Answered by AI
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? How does volatile help ensure memory visibility?
  • Ans. 

    The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering of shared variables.

    • The Java Memory Model (JMM) specifies how threads interact through memory and what behaviors are allowed.

    • It defines rules for visibility, atomicity, and ordering of operations in a multithreaded environment.

    • Without proper synchronization, threads may see stale data due to caching or compiler optimizat...

  • Answered by AI
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Provide examples where each should be used.
  • Ans. 

    Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.

    • Method Overloading: Same method name, different parameters (type, number, or both).

    • Example of Overloading: 'int add(int a, int b)' and 'double add(double a, double b)'.

    • Use Overloading for convenience and readability when methods perform similar functions.

    • Method Overriding: Redefi...

  • Answered by AI

Law Firms Interview FAQs

How many rounds are there in Law Firms Intern interview for freshers?
Law Firms interview process for freshers usually has 1 rounds. The most common rounds in the Law Firms interview process for freshers are One-on-one Round.

Tell us how to improve this page.

Law Firms Intern Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

10405090xyzabc Interview Questions
4.0
 • 1.4k Interviews
Bluestock ™ Interview Questions
4.4
 • 49 Interviews
Pie Infocomm Interview Questions
4.5
 • 39 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 36 Interviews
Beyondriffs Interview Questions
4.6
 • 25 Interviews
Birla White Interview Questions
4.2
 • 25 Interviews
FreshToHome Interview Questions
3.5
 • 23 Interviews
View all
Law Firms Intern Salary
based on 17 salaries
₹0.6 L/yr - ₹4.5 L/yr
48% less than the average Intern Salary in India
View more details

Law Firms Intern Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

1.0

Salary

1.0

Job security

3.0

Company culture

1.0

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
Advocate
215 salaries
unlock blur

₹0.7 L/yr - ₹8 L/yr

Legal Associate
211 salaries
unlock blur

₹1.1 L/yr - ₹8 L/yr

Lawyer
136 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Junior Advocate
119 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Associate
115 salaries
unlock blur

₹1.4 L/yr - ₹9 L/yr

Explore more salaries
Compare Law Firms with

Accountant Anywhere Services

4.1
Compare

Vistra Corporate Services

3.6
Compare

Venus Industrial Corporation

4.0
Compare

Birla White

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