Upload Button Icon Add office photos

Filter interviews by

Elevate Services Legal Consultant Interview Questions and Answers

Updated 6 Mar 2023

Elevate Services Legal Consultant Interview Experiences

2 interviews found

I applied via Referral and was interviewed in Mar 2021. There were 5 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 - HR 

(1 Question)

  • Q1. Basic questions about experience and current company
Round 3 - Assignment 

Contract will be given for extraction

Round 4 - One-on-one 

(1 Question)

  • Q1. All questions were about resume and past experience
Round 5 - HR 

(1 Question)

  • Q1. Hr will discuss the CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t join elevate if you are doing On roll/ regular/ permanent job. If Elevate/Sumati hires for temporary period, don’t expect to get on roll position.

I applied via Company Website and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introduction and legal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a Contractual job and wear formals while going for interview, feel free to interact with your intetviewer and there was a system test also only wanted to test your skills and knowledge.

Legal Consultant Interview Questions Asked at Other Companies

Q1. Can parties choose an applicable law in the contract of a country ... read more
Q2. What laws or legal subjects are you interested in ?
Q3. If your FIR is not registered what is further process.
asked in FastInfo
Q4. Under what provision condonement of delay application is filed?
asked in FastInfo
Q5. What’s the limitation period for filing consumer complaint?

Interview questions from similar companies

Interview Preparation Tips

Round: Interview
Experience: They asked to write 2 codes on recursion. Then some questions on resume. I asked them about the job profile and after knowing that they were hiring candidates for frontend programming, about which they didn’t mention in JAF. I told them that I was not interested in frontend development. And didn’t even answer any question after that. Unfortunately, I was selected.

General Tips: Plan your schedule judiciously keeping your capacity in mind. There is no point of making ideal plans and then not able to do even 50% of it.
Don’t get into unnecessary arguments or debate with people.
Don’t think about what others are doing. Focus on your preparation.
How you carry yourself matters. So, make sure you portray yourself in the way you want the other person to perceive you.
Be selective while applying for companies.
College Name: IIT Kanpur
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2023. There were 7 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Regarding work experience and expectations
  • Q2. Can i join immediately after 2 days
Round 2 - HR 

(2 Questions)

  • Q1. Are you aware about the timining
  • Ans. 

    Yes, I am aware of the timing for the project deadlines and meetings.

    • I am diligent in keeping track of deadlines and meeting schedules

    • I use calendar tools and reminders to stay organized

    • I communicate with team members to ensure everyone is aware of timing expectations

  • Answered by AI
  • Q2. Terms & Condition
Round 3 - HR 

(2 Questions)

  • Q1. Documentation Process
  • Q2. Submission Of Documents
Round 4 - HR 

(2 Questions)

  • Q1. Dicussion on rules & regulations
  • Q2. Joining date
Round 5 - HR 

(2 Questions)

  • Q1. Company Identity Card
  • Q2. Bike sticker
Round 6 - Joined 

(2 Questions)

  • Q1. Informed about company
  • Q2. Working startegy
Round 7 - Joining 

(2 Questions)

  • Q1. Date of Joining
  • Ans. 

    I joined the company on January 15, 2010.

    • Joined on January 15, 2010

    • Have been with the company for over 10 years

    • Started in a junior position and worked my way up to Senior Executive

  • Answered by AI
  • Q2. Start to work

Interview Preparation Tips

Interview preparation tips for other job seekers - Enjoying Working with company from last 1 year

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.

I appeared for an interview before Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DBMS.

  • Q1. What is data integrity?
  • Ans. 

    Data integrity refers to the accuracy, consistency, and reliability of data throughout its lifecycle.

    • Data integrity ensures that data is accurate and consistent in storage and transmission.

    • It involves maintaining the quality and reliability of data over time.

    • Methods for ensuring data integrity include checksums, encryption, and error detection codes.

    • Examples of data integrity violations include data corruption, unautho

  • Answered by AI
  • Q2. What is a trigger in the context of a database management system?
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers are used to enforce business rules, maintain data integrity, and automate repetitive tasks.

    • They can be triggered by INSERT, UPDATE, or DELETE operations on a table.

    • Examples of triggers include auditing changes to a table, updating related tables when a record is modified, or enforcing referential

  • Answered by AI
  • Q3. What is the difference between clustered and non-clustered indexes in a database management system?
  • Ans. 

    Clustered indexes physically order the data in the table, while non-clustered indexes do not.

    • Clustered indexes determine the physical order of data in the table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are faster for retrieval of data, especially range queries, compared to non-clustered indexes.

    • Non-clustered indexes are stored se...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DBMS.

  • Q1. What is the difference between UNION and UNION ALL in SQL?
  • Ans. 

    UNION combines and removes duplicates, UNION ALL combines without removing duplicates.

    • UNION merges the result sets of two or more SELECT statements and removes duplicates.

    • UNION ALL merges the result sets of two or more SELECT statements without removing duplicates.

    • UNION is slower than UNION ALL as it involves removing duplicates.

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column...

  • Answered by AI
  • Q2. What are the functions of a cursor in PL/SQL?
  • Ans. 

    A cursor in PL/SQL is used to retrieve and process multiple rows of data one at a time.

    • Allows iteration over a result set

    • Retrieves data row by row

    • Can be used to update or delete rows in a table

    • Must be declared, opened, fetched, and closed

  • Answered by AI
  • Q3. Write a SQL query to fetch the nth highest salary from a table.
  • Ans. 

    SQL query to fetch the nth highest salary from a table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to fetch the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a managerial round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - SQL, Database Management Systems, OOPS, DSA, System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. C c++ javascript HTML Java
  • Q2. What sir or mum required Is

Interview Preparation Tips

Interview preparation tips for other job seekers - My name is Saurabh Saxena
I live in nadaiya rampur Post govindpur tilhar shahjahanpur Uttar Pradesh
I have a complete graduation BCA

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Machine Learning, statistics, PowerBI, Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview questions based on the skills mentioned in your resume.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was Technical + Aptitude MCQ round.The technical section consisted if MCQ related to DSA,OS,DBMS.The aptitude section consisted of questions related to basic mathematics.

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the given criteria.

    • Consider the ratings of adjacent students to decide the number of candies to distribute.

    • Calculate the total candies req...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was a technical interview testing the basic skills of OS and DBMS of candidates along with few project discussions from your CV.

  • Q1. Can you write 15 Linux commands along with their functions?
  • Ans. 

    List of 15 Linux commands with their functions

    • ls - list directory contents

    • pwd - print working directory

    • cd - change directory

    • mkdir - make a new directory

    • rm - remove files or directories

    • cp - copy files and directories

    • mv - move or rename files and directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • ps - display information about running processes

    • top - display and update sorted information about pr...

  • Answered by AI
  • Q2. What are DDL (Data Definition Language) and DML (Data Manipulation Language)?
  • Ans. 

    DDL is used to define the structure of database objects, while DML is used to manipulate data within those objects.

    • DDL includes commands like CREATE, ALTER, DROP to define database objects like tables, indexes, etc.

    • DML includes commands like INSERT, UPDATE, DELETE to manipulate data within tables.

    • Example of DDL: CREATE TABLE employees (id INT, name VARCHAR(50));

    • Example of DML: INSERT INTO employees VALUES (1, 'John Doe

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as System Engineer in BangaloreEligibility criteriaAbove 8 CGPACerner Corporation interview preparation:Topics to prepare for the interview - Data Structures, DBMS, Linux, Algorithms,Cloud computing, Operating systemsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be clear about the concepts of Linux and shell scripting.
Tip 2 : Learn about the basics of Data structures and Algorithm.
Tip 3 : Be prepared to explain your projects mentioned in your CV.

Application resume tips for other job seekers

Tip 1 : Use professional Keywords in your resume.
Tip 2 : Don't mention anything you are not confident in.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Ques. related about security, troubleshooting, installation & Maintenance. both windows and linux.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good experience candidate must have basic knowledge of all basic fundamentals in windows and linux too.
and candidate have also good knowledge in networking, hardware and software.

Elevate Services Interview FAQs

How many rounds are there in Elevate Services Legal Consultant interview?
Elevate Services interview process usually has 5 rounds. The most common rounds in the Elevate Services interview process are HR, Resume Shortlist and Assignment.
How to prepare for Elevate Services Legal Consultant 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 Elevate Services. The most common topics and skills that interviewers at Elevate Services expect are Legal, Consulting, Excel, Legal Services and MIS.
What are the top questions asked in Elevate Services Legal Consultant interview?

Some of the top questions asked at the Elevate Services Legal Consultant interview -

  1. Introduction and legal questi...read more
  2. Hr will discuss the ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.2
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 167 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 115 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
EbixCash Limited Interview Questions
4.0
 • 103 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
View all
Elevate Services Legal Consultant Salary
based on 45 salaries
₹2 L/yr - ₹5 L/yr
48% less than the average Legal Consultant Salary in India
View more details

Elevate Services Legal Consultant Reviews and Ratings

based on 14 reviews

3.3/5

Rating in categories

2.8

Skill development

3.5

Work-life balance

3.7

Salary

1.3

Job security

3.2

Company culture

2.0

Promotions

2.9

Work satisfaction

Explore 14 Reviews and Ratings
Legal Associate
73 salaries
unlock blur

₹2.9 L/yr - ₹5.5 L/yr

Senior Legal Associate
60 salaries
unlock blur

₹3.7 L/yr - ₹7.5 L/yr

Functional Consultant
50 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Legal Consultant
45 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Team Lead
45 salaries
unlock blur

₹6 L/yr - ₹19.2 L/yr

Explore more salaries
Compare Elevate Services with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Chetu

3.2
Compare

R Systems International

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