Upload Button Icon Add office photos

Lionbridge Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Lionbridge Technologies Project Manager Interview Questions and Answers

Updated 3 Feb 2025

Lionbridge Technologies Project Manager Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(1 Question)

  • Q1. Basic questions
Round 2 - Technical 

(1 Question)

  • Q1. About your work history and project management
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. How can you generate revenue ? How can you benefit as a PM? Roles and responsibilities of a PM?

Project Manager Interview Questions Asked at Other Companies

Q1. What is success & what is failure to you? How do you handle f ... read more
asked in HCLTech
Q2. How did you manage the software release and deployment
Q3. If you have 1 kg of cotton and 1 kg of iron which is heavier?
asked in Infosys
Q4. What is the difference between scrum master and product manager
Q5. 1. Fundamentals of estimation techniques. 2. Which all pm tools h ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Walk through about yourself Experience and skills set Project management experience Challenge and difficulty faces in managing project Strong area
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced project manager with a background in IT and a proven track record of delivering successful projects on time and within budget.

    • Over 5 years of experience managing IT projects

    • Strong leadership and communication skills

    • Expertise in project planning, budgeting, and risk management

    • Successfully led a team to implement a new CRM system, resulting in a 20% increase in sales

  • Answered by AI
  • Q2. What is your salary expectation
  • Ans. 

    My salary expectation is based on my experience, skills, and the market rate for the position.

    • Research the average salary for Project Managers in your area to ensure your expectations are realistic

    • Consider your level of experience and any additional qualifications that may warrant a higher salary

    • Be prepared to negotiate based on the overall compensation package offered by the company

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t apply it’s a shit company
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Work experience and Background
  • Q2. Basic questions, written test, email writing and essays

Interview Questionnaire 

1 Question

  • Q1. Technical questions relevant to the field
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. General discussion about candidate introduction and company introduction
  • Q2. Tell me about your self
Round 2 - Technical 

(4 Questions)

  • Q1. Self introduction and then audit related questions of quality , information security etc.
  • Q2. How you are performing internal audit
  • Ans. 

    I perform internal audits by conducting thorough reviews of company processes, policies, and controls.

    • I start by understanding the objectives and scope of the audit.

    • I gather relevant documentation and data to analyze.

    • I conduct interviews with key personnel to gain insights.

    • I assess the effectiveness of internal controls and identify any weaknesses or gaps.

    • I document my findings and recommendations in a comprehensive re...

  • Answered by AI
  • Q3. What is meant by CIA related to information security management system
  • Ans. 

    CIA in information security management system refers to Confidentiality, Integrity, and Availability.

    • Confidentiality ensures that information is only accessible to authorized individuals.

    • Integrity ensures that information is accurate, complete, and unaltered.

    • Availability ensures that information is accessible and usable when needed.

    • These three principles form the foundation of a secure information system.

    • For example, e...

  • Answered by AI
  • Q4. Quality objectives like SMART its meaning

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Audit related question. Audit plan /schedule , Internal audit confirmation from stakeholders, conduct internal audit , audit findings, audit report preparation, CAP wrt Internal audit and its evidence etc..

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Aptitude and coding questions both were included

Round 2 - Technical 

(3 Questions)

  • Q1. Patterns ans series questions were asked
  • Q2. Data types in Javascript
  • Ans. 

    Javascript has various data types including string, number, boolean, object, array, null, and undefined.

    • Data types in Javascript include string, number, boolean, object, array, null, and undefined.

    • Strings are sequences of characters enclosed in quotes.

    • Numbers can be integers or floating-point numbers.

    • Booleans represent true or false values.

    • Objects are collections of key-value pairs.

    • Arrays are ordered collections of val...

  • Answered by AI
  • Q3. Difference between let and var
  • Ans. 

    let is block scoped while var is function scoped in JavaScript.

    • let was introduced in ES6 while var has been around since the beginning of JavaScript.

    • Variables declared with let are only accessible within the block they are declared in.

    • Variables declared with var are accessible throughout the function they are declared in.

    • Using let can help prevent variable hoisting issues.

    • let is preferred over var for variable declarat

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

  • Answered by AI
  • Q2. What is Encapsulation
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C#,Mvc core,SQL server,vue js,
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Lionbridge Technologies Interview FAQs

How many rounds are there in Lionbridge Technologies Project Manager interview?
Lionbridge Technologies interview process usually has 1-2 rounds. The most common rounds in the Lionbridge Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for Lionbridge Technologies Project Manager 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 Lionbridge Technologies. The most common topics and skills that interviewers at Lionbridge Technologies expect are Budgeting, Project Management, Forecasting, Management and Production Management.

Tell us how to improve this page.

Lionbridge Technologies Project Manager Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Aptara Interview Questions
3.3
 • 62 Interviews
MPS Limited Interview Questions
3.6
 • 23 Interviews
Hurix Systems Interview Questions
3.7
 • 18 Interviews
Content Whale Interview Questions
3.7
 • 13 Interviews
QBS Learning Interview Questions
2.7
 • 5 Interviews
White Globe Interview Questions
2.8
 • 4 Interviews
MediaMonks Interview Questions
3.5
 • 3 Interviews
View all
Lionbridge Technologies Project Manager Salary
based on 205 salaries
₹4.1 L/yr - ₹14 L/yr
44% less than the average Project Manager Salary in India
View more details

Lionbridge Technologies Project Manager Reviews and Ratings

based on 21 reviews

3.1/5

Rating in categories

3.0

Skill development

2.7

Work-life balance

2.5

Salary

3.4

Job security

2.7

Company culture

2.2

Promotions

2.6

Work satisfaction

Explore 21 Reviews and Ratings
Associate Project Manager
813 salaries
unlock blur

₹3.8 L/yr - ₹9.4 L/yr

Senior Project Coordinator
238 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Project Manager
205 salaries
unlock blur

₹4.1 L/yr - ₹14 L/yr

Project Coordinator
101 salaries
unlock blur

₹2.2 L/yr - ₹5.5 L/yr

Software Engineer
90 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Lionbridge Technologies with

Aptara

3.3
Compare

MPS Limited

3.6
Compare

Crimson Interactive

2.8
Compare

Hurix Systems

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