Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Codilar Technologies Team. If you also belong to the team, you can get access from here

Codilar Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Codilar Technologies Legal Intern Interview Questions and Answers

Updated 22 Jan 2025

Codilar Technologies Legal Intern Interview Experiences

1 interview found

Legal Intern Interview Questions & Answers

user image Anonymous

posted on 22 Jan 2025

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

I was interviewed in Jul 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your understanding of the company?
  • Ans. 

    The company is a leading law firm specializing in various legal services such as corporate law, litigation, and intellectual property.

    • Specializes in corporate law, litigation, and intellectual property

    • Provides legal services to clients in various industries

    • Has a team of experienced attorneys and legal professionals

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your expectations for your work-life balance?
  • Ans. 

    I expect to maintain a healthy work-life balance by setting boundaries and prioritizing self-care.

    • Setting clear boundaries between work and personal life

    • Prioritizing self-care activities such as exercise, hobbies, and spending time with loved ones

    • Communicating openly with supervisors about workload and deadlines

    • Utilizing time management techniques to maximize productivity during work hours

  • Answered by AI

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's online coding test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is JS and how it works
  • Ans. 

    JS stands for JavaScript, a high-level programming language used for creating interactive websites and web applications.

    • JS is a client-side scripting language that runs in the browser.

    • It is used to add interactivity, animations, and dynamic content to websites.

    • JS can be used alongside HTML and CSS to create responsive and user-friendly web applications.

    • Example: document.getElementById('demo').innerHTML = 'Hello World';

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not join this company.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

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

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 3 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 Resume tips
Round 2 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

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

I was interviewed in Oct 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Aptitude Test 

Easy to medium
profit and loss questions
Permutation and combination

Round 3 - Aptitude Test 

Easy to medium
45 mins

Round 4 - Technical 

(4 Questions)

  • Q1. Basic concept of Oops Java basic
  • Q2. Constructor Overloading
  • Q3. Operator overloading in Java?
  • Ans. 

    Operator overloading allows operators to be redefined for user-defined types in Java.

    • Operator overloading is not supported in Java as it can lead to ambiguity and confusion.

    • Java does not allow custom operators to be defined or existing operators to be overloaded.

    • Instead of operator overloading, Java provides method overloading where methods with the same name but different parameters can be defined.

  • Answered by AI
  • Q4. Define java and it's features
  • Ans. 

    Java is a high-level, object-oriented programming language known for its platform independence and robust features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for modular and reusable code

    • Java is known for its robust standard library, which includes tools for networking, I/O, and more

    • It supports multithreading, allowing for concurrent e...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Introduction Present events

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude questions.

Round 2 - HR 

(2 Questions)

  • Q1. What's your strength ?
  • Ans. 

    My strength lies in my problem-solving skills and ability to learn quickly.

    • Strong problem-solving skills

    • Quick learner

    • Adaptability to new technologies

    • Ability to work well under pressure

  • Answered by AI
  • Q2. Are you willing to work under pressure?
  • Ans. 

    Yes, I am comfortable working under pressure and have experience delivering high-quality work in tight deadlines.

    • I have successfully completed projects with tight deadlines in my previous roles.

    • I am able to prioritize tasks effectively and remain focused under pressure.

    • I thrive in challenging situations and see them as opportunities to showcase my skills.

    • I have experience working on urgent bug fixes and resolving issue

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have a good carrier then don't go there.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 45 questions in total: 20 questions on aptitude and 25 questions on basic C, C++, and Java.

Round 2 - One-on-one 

(1 Question)

  • Q1. TWO person was taking interview , one is HR AND TECHNICAL PERSON , THEY ASK ME TELL ME ABOUT YOUR SELF, WHAT ARE THE QUALITY OF TEAM LEADER, ARE YOU COMFORTABLE IF WE HIRE YOU AS A TESTER AND TECHNICAL ...
Round 1 - Coding Test 

Work well on loops and you will do well enough in the interview.

Round 2 - Coding Test 

It was good

Round 3 - Technical 

(1 Question)

  • Q1. Some devs will ask questions
Round 4 - Assignment 

Salary discusiion

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice interview you will crack it
Contribute & help others!
anonymous
You can choose to be anonymous

Codilar Technologies Interview FAQs

How many rounds are there in Codilar Technologies Legal Intern interview?
Codilar Technologies interview process usually has 2 rounds. The most common rounds in the Codilar Technologies interview process are One-on-one Round and HR.

Recently Viewed

COMPANY BENEFITS

Nuclear Power Corporation of India

No Benefits

INTERVIEWS

Intellect

No Interviews

JOBS

Blue Yonder

No Jobs

SALARIES

Codilar Technologies

INTERVIEWS

Škoda Auto Volkswagen

No Interviews

INTERVIEWS

Molex

No Interviews

INTERVIEWS

Škoda Auto Volkswagen

No Interviews

SALARIES

Codilar Technologies

INTERVIEWS

Škoda Auto Volkswagen

No Interviews

INTERVIEWS

Intellect

No Interviews

Tell us how to improve this page.

Codilar Technologies Legal Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Webkul Software Interview Questions
3.8
 • 58 Interviews
NexTurn Interview Questions
4.1
 • 27 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.3
 • 22 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
Knoldus Inc Interview Questions
3.9
 • 20 Interviews
View all

Codilar Technologies Legal Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
66 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Codilar Technologies with

DCKAP

4.8
Compare

Vinculum Solutions

3.0
Compare

i95Dev

3.0
Compare

Ranosys Technologies

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