Upload Button Icon Add office photos

Luxoft

Compare button icon Compare button icon Compare

Filter interviews by

Luxoft PMO Analyst Interview Questions and Answers

Updated 14 Mar 2022

Luxoft PMO Analyst Interview Experiences

1 interview found

PMO Analyst Interview Questions & Answers

user image Anonymous

posted on 14 Mar 2022

I applied via Naukri.com and was interviewed in Feb 2022. 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. What was the most challenging part of your work?
  • Q2. Multitasking and Time Management

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with your answers.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Role and responsibilities of PMo
  • Q2. What is dashboard
  • Ans. 

    A dashboard is a visual representation of data that provides a quick overview of key performance indicators and metrics.

    • Dashboards typically consist of charts, graphs, and tables to display data in a concise and easy-to-understand format.

    • They are used to track progress, identify trends, and make informed decisions based on real-time data.

    • Examples of dashboards include project status dashboards, financial performance da

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - Assignment 

Project Management topics on dealing with project deadline and report

Round 3 - HR 

(2 Questions)

  • Q1. Prior experience and exposure on project management skills
  • Ans. Explain the whole SDLC process management
  • Answered Anonymously
  • Q2. Exposure on Ms package and Jira tool
  • Ans. 

    Proficient in Ms package and experienced in using Jira tool

    • Proficient in Microsoft Office suite including Excel, Word, and PowerPoint

    • Experience in using Jira for project management and issue tracking

    • Ability to create reports and analyze data using Excel

    • Familiarity with Agile methodologies and using Jira for sprint planning

    • Strong communication skills to collaborate with team members and stakeholders

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - TCS is good to learn
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Where do you see yourself in 5 years
  • Q2. Why do you want to join TCS
Round 2 - Technical 

(2 Questions)

  • Q1. What is CAB, why is it required?
  • Ans. 

    CAB stands for Change Advisory Board, it is required to review and approve changes to the IT environment.

    • CAB is a group of individuals responsible for assessing, prioritizing, and authorizing changes to the IT infrastructure.

    • It ensures that proposed changes are thoroughly evaluated for potential impacts and risks before implementation.

    • CAB helps in maintaining the stability and integrity of the IT environment by prevent...

  • Answered by AI
  • Q2. What is change management?
  • Ans. 

    Change management is the process of planning, implementing, and controlling changes to ensure successful project outcomes.

    • Change management involves identifying, documenting, and communicating changes within an organization.

    • It includes assessing the impact of changes on stakeholders and managing resistance to change.

    • Change management also involves training employees on new processes and systems to ensure successful ado...

  • Answered by AI

I applied via Walk-in and was interviewed before May 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Keep confident about your interview and your experience should be explaine clearly.
  • Q2. Where things you had done about your job role responsibility would explain clearly

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice when you giving an a interview don't be nerves and do be prepared well while interview going on don't be in hurry manner it's big as mistake in your life while giving interview.

Interview Questionnaire 

2 Questions

  • Q1. About digital marketing. questions about AI,IOT and how they are being used. About half an hour long interview mostly on these topics. In addition, questions related to search engine optimisation and socia...
  • Q2. Salary discussion.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Previous work experience and the projects I worked on.

Interview Questionnaire 

2 Questions

  • Q1. Why should I hire you
  • Q2. Tell them something which you r confident as your strength and you have an upper hand ... Anything close to you any learning which you apply in life

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and relaxed... What has to happen wil happen.

Analyst Interview Questions & Answers

TCS user image Anonymous

posted on 26 Mar 2015

Interview Questionnaire 

16 Questions

  • Q1. Tell me about yourself?
  • Q2. Are you 100% honest ?
  • Q3. What are ur favorite subjects?
  • Q4. What do you mean by Multithreading in java?
  • Ans. 

    Multithreading in Java refers to the concurrent execution of two or more parts of a program for maximum utilization of CPU.

    • Multithreading allows multiple threads to run concurrently within a single program.

    • It improves the performance of the program by utilizing the CPU more efficiently.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Multithreading can be used for tasks such as backg...

  • Answered by AI
  • Q5. What are the different CpU scheduling policies? who does the cpu scheduling?
  • Ans. 

    CPU scheduling policies include FCFS, SJF, Round Robin, Priority, and Multilevel Queue. The operating system does the scheduling.

    • FCFS (First Come First Serve)

    • SJF (Shortest Job First)

    • Round Robin

    • Priority

    • Multilevel Queue

    • Operating system does scheduling

  • Answered by AI
  • Q6. What is Jvm? who manages the thread Jvm or OS?
  • Ans. 

    Jvm is Java Virtual Machine. It manages threads on its own.

    • Jvm is a virtual machine that executes Java bytecode.

    • It provides a runtime environment for Java programs.

    • Jvm manages threads on its own using its own thread scheduler.

    • Jvm is platform-independent and provides a layer of abstraction between the Java code and the underlying operating system.

    • Examples of popular JVM implementations include Oracle's HotSpot and OpenJ

  • Answered by AI
  • Q7. Semaphore?synchronisation in java? Mutex?
  • Q8. Explain tree traversals technique with example??
  • Ans. 

    Tree traversal is a technique to visit all nodes of a tree in a specific order.

    • There are three types of tree traversals: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, and then the right subtree.

    • Preorder traversal visits the root, then the left subtree, and then the right subtree.

    • Postorder traversal visits the left subtree, then the right subtree, and then the root.

    • For exampl...

  • Answered by AI
  • Q9. What is the difference between arraylist and vector? how to traverse a vector?
  • Ans. 

    ArrayList and Vector are both dynamic arrays, but Vector is synchronized and slower. Traversing a Vector is similar to an ArrayList.

    • ArrayList is not synchronized, while Vector is synchronized.

    • ArrayList is faster than Vector, but Vector is thread-safe.

    • To traverse a Vector, we can use a for loop or an iterator, similar to an ArrayList.

    • Example: Vector v = new Vector<>(); for(String s : v) { //do something }

Answered by AI
  • Q10. Why TCS?
  • Ans. 

    TCS is a leading global IT services company with a strong reputation and diverse opportunities for growth.

    • TCS has a strong reputation in the IT industry

    • TCS offers diverse opportunities for growth and learning

    • TCS has a global presence and works with top clients

    • TCS has a strong focus on innovation and technology

    • TCS provides a supportive and inclusive work environment

  • Answered by AI
  • Q11. Any five tata group companies other than TCS?
  • Q12. What is the Tata‘s product used in every house?
  • Ans. 

    Tata Salt is the product used in every house.

    • Tata Salt is a brand of salt produced by Tata Chemicals.

    • It is the market leader in India with a 27% market share.

    • Tata Salt has been fortified with iodine to help address iodine deficiency in India.

    • It is available in various sizes and packaging options to suit different needs.

    • Tata Salt has won several awards for its quality and innovation.

  • Answered by AI
  • Q13. What‘s your hobby and passion?
  • Ans. 

    My hobby and passion is photography.

    • I love capturing moments and telling stories through my photographs.

    • I enjoy exploring different techniques and experimenting with composition.

    • Photography allows me to express my creativity and view the world from unique perspectives.

    • I have participated in several photography competitions and my work has been featured in local exhibitions.

    • Some of my favorite subjects to photograph are

  • Answered by AI
  • Q14. In your views who should be the captain of Indian cricket team?
  • Q15. What are the qualities of a good leader ?
  • Ans. 

    A good leader possesses qualities such as strong communication skills, empathy, integrity, and the ability to inspire and motivate others.

    • Strong communication skills: A good leader is able to effectively convey their ideas and instructions to their team members.

    • Empathy: A good leader understands and considers the feelings and perspectives of their team members, fostering a positive and supportive work environment.

    • Integ...

  • Answered by AI
  • Q16. Worst situation you have ever faced in your life ?
  • Ans. 

    Being stranded in a foreign country with no money or means to communicate

    • Lost my wallet with all my money and identification

    • Couldn't speak the local language to ask for help

    • Had to rely on the kindness of strangers for assistance

  • Answered by AI

    Interview Preparation Tips

    Round: Test
    Experience: There were no technical questions. Only quantitative questions was there. Questions were not very tough.
    Tips: Just have a look at RS Aggarwal book or any other aptitude book , you will easily get through it.
    Duration: 80 minutes

    Round: Other Interview
    Experience: There were different panels , having three persons in each panel. It was basically HR , TECh, MR interview altogether. Even some of the students were called for one to one tech interview and later they were called for hr and mr round.

    Skills: JAVA, C/C++
    College Name: NA

    Skills evaluated in this interview

    Analyst Interview Questions & Answers

    TCS user image Priya Prabhu

    posted on 24 Sep 2015

    Interview Questionnaire 

    1 Question

    • Q1. Tell me about your project
    • Ans. 

      I worked on a project analyzing customer data to identify trends and improve marketing strategies.

      • Used data analysis techniques to identify patterns and correlations in customer behavior

      • Developed predictive models to forecast customer preferences and optimize marketing campaigns

      • Collaborated with cross-functional teams to implement data-driven strategies and measure their impact

      • Conducted A/B testing to evaluate the effe

    • Answered by AI

    Interview Preparation Tips

    Round: Technical Interview
    Experience: comfortable
    Tips: study the project well, final year project as well as the mini projects done in the semesters

    General Tips: study the project details, basic core languages of your stream
    Skill Tips: study the project details very well
    Skills: Ability To Deliver On A Project
    College Name: Vidyalankar Institute Of Technology

    Analyst Interview Questions & Answers

    TCS user image Anonymous

    posted on 13 May 2018

    Interview Preparation Tips

    Round: Test
    Experience: Aptitude

    Round: Group Discussion
    Experience: They will observe way of talking, way of making points to concerns etc

    Luxoft Interview FAQs

    How many rounds are there in Luxoft PMO Analyst interview?
    Luxoft interview process usually has 2 rounds. The most common rounds in the Luxoft interview process are Resume Shortlist and Technical.
    How to prepare for Luxoft PMO Analyst 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 Luxoft. The most common topics and skills that interviewers at Luxoft expect are Agile, Analytical Skills, Back Office, Change Management and Data Processing.

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    LTIMindtree Interview Questions
    3.8
     • 2.9k Interviews
    Mphasis Interview Questions
    3.4
     • 796 Interviews
    GlobalLogic Interview Questions
    3.7
     • 587 Interviews
    EPAM Systems Interview Questions
    3.7
     • 539 Interviews
    Synechron Interview Questions
    3.5
     • 363 Interviews
    Movate Interview Questions
    3.3
     • 256 Interviews
    Globant Interview Questions
    3.8
     • 172 Interviews
    View all
    Senior Software Engineer
    465 salaries
    unlock blur

    ₹9.9 L/yr - ₹36 L/yr

    Senior Consultant
    355 salaries
    unlock blur

    ₹14 L/yr - ₹35 L/yr

    Consultant
    268 salaries
    unlock blur

    ₹8.5 L/yr - ₹25.8 L/yr

    Software Engineer
    208 salaries
    unlock blur

    ₹4.5 L/yr - ₹18.4 L/yr

    Senior Software Developer
    136 salaries
    unlock blur

    ₹11.1 L/yr - ₹38.7 L/yr

    Explore more salaries
    Compare Luxoft with

    Accenture

    3.8
    Compare

    EPAM Systems

    3.7
    Compare

    GlobalLogic

    3.7
    Compare

    LTIMindtree

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