Upload Button Icon Add office photos

Filter interviews by

Axiashift Technical IT Project Manager Interview Questions, Process, and Tips

Updated 22 Jul 2024

Axiashift Technical IT Project Manager Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. Tell me a brief introduction about yourself.
  • Q2. How many projects have you managed till now?
  • Q3. What's your current notice period?
  • Q4. Do you have any experience in delivering AI related projects?
Round 2 - One-on-one 

(4 Questions)

  • Q1. Project management experience and brief summary of few projects that you handled.
  • Q2. How do you ensure adhering to agile values during project execution?
  • Ans. 

    By promoting collaboration, transparency, adaptability, and continuous improvement.

    • Encourage open communication and collaboration among team members

    • Regularly review and adapt project plans based on feedback and changing requirements

    • Promote a culture of continuous improvement and learning

    • Use agile tools and techniques such as daily stand-up meetings, sprint planning, and retrospectives

    • Ensure stakeholders are involved th...

  • Answered by AI
  • Q3. How do you ensure that all stakeholders are on same page before starting the project?
  • Q4. What is your risk management approach?
  • Ans. 

    My risk management approach involves identifying potential risks, analyzing their impact, developing mitigation strategies, and monitoring them throughout the project.

    • Identify potential risks at the beginning of the project

    • Analyze the impact of each risk on project objectives

    • Develop mitigation strategies to address high-priority risks

    • Monitor risks throughout the project lifecycle and adjust strategies as needed

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. How would you approach designing an AI chatbot for customer service?
  • Ans. 

    I would approach designing an AI chatbot for customer service by first understanding the customer needs and preferences.

    • Conduct research to understand customer needs and pain points

    • Identify common customer inquiries and develop responses

    • Implement natural language processing to understand and respond to customer queries

    • Integrate machine learning algorithms to continuously improve chatbot responses

    • Test the chatbot with r...

  • Answered by AI
  • Q2. What do you understand by microservice architecture?
  • Ans. 

    Microservice architecture is an architectural style that structures an application as a collection of loosely coupled services.

    • Each service is self-contained and can be independently deployed, scaled, and maintained.

    • Services communicate with each other over lightweight protocols like HTTP or messaging queues.

    • Microservices allow for flexibility, scalability, and resilience in software development.

    • Examples of companies u...

  • Answered by AI
  • Q3. What are the steps in deploying a product on AWS?
  • Ans. 

    Steps in deploying a product on AWS involve planning, provisioning resources, configuring, testing, and monitoring.

    • Plan the deployment strategy based on requirements and resources available

    • Provision necessary resources such as EC2 instances, S3 buckets, and databases

    • Configure the infrastructure and set up networking, security, and access controls

    • Deploy the application code and perform testing to ensure functionality

    • Mon...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Azure cloud platform tech
  • Q2. Informatica tech stack ques
Round 2 - Technical 

(2 Questions)

  • Q1. Adf tech stack que
  • Q2. Scd type 2 implementation
  • Ans. 

    SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.

    • Identify the columns that need to be tracked for changes

    • Add effective start and end dates to track the validity of each record

    • Insert new records for changes and update end dates for previous records

    • Maintain a surrogate key to uniquely identify each version of the record

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Dw related que ans
  • Q2. Solution design related que
Round 4 - HR 

(2 Questions)

  • Q1. Aspiration from my end
  • Q2. How soon can join
  • Ans. 

    I can join the team within 2 weeks.

    • I can start within 2 weeks of receiving the offer.

    • I need to give notice to my current employer.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join or even I would suggest not to apply or give interview to this pathetic company. I have cleared all my 4 rounds of interview including HR out of which 3 technical and 1 HR. 3 held on video conferencing and one face to face for which I have travelled almost 40 kms from my current location and they said without face to face they cannot proceed hence I had no option left but to travel, then when I entered into the office again put a laptop infront of me which is again video conferencing then I didn't understand why exactly they called me if they want to have it over video online.

Then after putting my lot of time and efforts when finally it comes to release the offer, then they stop picking up the calls and stop responding and the final excuses which I got from them for not releasing the offer is that their software will not allow them to release any offer which is more that 2 days of joining.

Such a pathetic company who even don't know that atleast if you are not releasing the offer, it's your duty to atleast tell the person that either they are not able to provide the compensation as discussed or they are looking parallelly for someone who can settle in less compensation.

Due to all this I have wasted almost my 3-4 weeks of time expecting that I will receive the offer, and didn't focus on other organisations which was ready to provide slightly lower than this.

Hence it's a total scam which is going here suggesting not to get trapped otherwise you will not only waste your time but also other good opportunities as well.

It's a total boycott for me, expecting the same from your end as well, so that they will understand that playing with someone's job is not a joke.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

It had a 2 programs with easy and medium level of coding programs, please go through the recent interview problems asked in wipro

Round 2 - Technical 

(5 Questions)

  • Q1. What is Object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation, inheritance, and polymorphism are key principles of OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q2. What is multi threading
  • Ans. 

    Multi threading is a programming concept where multiple threads within a process execute independently to improve performance.

    • Allows for concurrent execution of tasks within a single process

    • Improves performance by utilizing multiple CPU cores

    • Requires careful synchronization to avoid race conditions

    • Examples include web servers handling multiple requests simultaneously

  • Answered by AI
  • Q3. Why is java not 100% oop
  • Ans. 

    Java is not 100% OOP because it supports primitive data types and static methods.

    • Java has primitive data types like int, double, etc. which are not objects.

    • Java allows static methods which do not require an instance of a class to be called.

    • Java also has the concept of wrapper classes to convert primitive data types to objects.

  • Answered by AI
  • Q4. What are collections in java
  • Ans. 

    Collections in Java are classes and interfaces that provide a way to store and manipulate groups of objects.

    • Collections provide dynamic data structures like List, Set, and Map.

    • They offer methods to add, remove, and manipulate elements in the collection.

    • Examples include ArrayList, LinkedList, HashSet, and HashMap.

  • Answered by AI
  • Q5. Internal working of hash map
  • Ans. 

    A hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collision resolution techniques like chaining or open addressing are used to handle situations where multiple keys hash to the same index.

    • Hash maps typically have O(1) average time complexity for i...

  • Answered by AI

Technical Lead Interview Questions & Answers

HCLTech user image Chandan Kumar Sahoo

posted on 21 Sep 2024

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

(2 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. What is method overriding
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Occurs in inheritance when a subclass provides a specific implementation of a method that is already provided by its parent class

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class

    • Allows fo...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is interceptor
  • Ans. 

    An interceptor is a design pattern commonly used in software development to capture and manipulate incoming and outgoing requests.

    • Interceptors can be used for logging, authentication, authorization, error handling, and more

    • In Angular, interceptors can be used to modify HTTP requests before they are sent to the server

    • In Spring framework, interceptors can be used to intercept client requests and server responses

  • Answered by AI
  • Q2. What is filter in spring
  • Ans. 

    A filter in Spring is a component that intercepts incoming requests and outgoing responses, allowing for pre-processing and post-processing.

    • Filters are used for tasks such as logging, authentication, authorization, and more

    • Filters can be configured in the Spring application context

    • Examples of filters in Spring include CharacterEncodingFilter, HiddenHttpMethodFilter, and CorsFilter

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. What is your contribution
  • Ans. 

    My contribution as a Technical Lead includes leading a team, providing technical guidance, resolving technical issues, and ensuring project success.

    • Leading a team to achieve project goals

    • Providing technical guidance and mentorship to team members

    • Resolving technical issues and challenges

    • Ensuring project success through effective planning and execution

  • Answered by AI
  • Q2. What have you done in your project
  • Ans. 

    I have led a team in developing a new feature for our product, involving designing, coding, testing, and deployment.

    • Led a team in developing a new feature

    • Designed the architecture for the feature

    • Coded the functionality using Java and Spring Boot

    • Tested the feature using JUnit and Mockito

    • Deployed the feature to production environment

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. How soon can you join
  • Ans. 

    I can join within 2 weeks.

    • I can start within 2 weeks of receiving an offer.

    • I need to give notice to my current employer.

    • I may need time to relocate if necessary.

  • Answered by AI
  • Q2. How was your last interview
  • Ans. 

    My last interview went well, I was able to showcase my technical skills and experience effectively.

    • Prepared thoroughly by reviewing common technical interview questions

    • Highlighted my experience leading technical teams and projects

    • Demonstrated problem-solving skills with real-life examples

    • Received positive feedback on my communication and teamwork abilities

  • Answered by AI
Round 5 - One-on-one 

(2 Questions)

  • Q1. Offer letter related
  • Q2. Relocation related
Round 6 - One-on-one 

(2 Questions)

  • Q1. Ticket booking and travel date related
  • Q2. Confirmation on travel
Round 7 - HR 

(2 Questions)

  • Q1. Are you ready to travel?
  • Ans. 

    Yes, I am ready to travel for work as needed.

    • I am willing to travel for client meetings, conferences, and team collaborations.

    • I have previous experience traveling for work in my current or past roles.

    • I understand the importance of face-to-face interactions in a technical lead role.

  • Answered by AI
  • Q2. Have you talked to your reporting manager
  • Ans. 

    Yes, I regularly communicate with my reporting manager to provide updates and discuss any issues or concerns.

    • Regularly scheduled check-ins with reporting manager

    • Provide updates on project progress

    • Discuss any issues or concerns

    • Seek guidance and feedback from reporting manager

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Group Activity 

(2 Questions)

  • Q1. Advantage and disadvantage of smart phones
  • Ans. 

    Smartphones offer convenience and connectivity but can also lead to distractions and privacy concerns.

    • Advantage: Convenient access to information, communication, and entertainment

    • Advantage: Enhanced productivity with apps and tools

    • Disadvantage: Potential distractions from notifications and social media

    • Disadvantage: Privacy concerns with data collection and security risks

  • Answered by AI
  • Q2. Advantage and disadvantage of online education
  • Ans. 

    Online education offers flexibility but lacks in-person interaction.

    • Advantage: Flexibility to study at own pace and schedule.

    • Advantage: Access to a wide range of courses and resources from anywhere.

    • Disadvantage: Lack of in-person interaction with teachers and peers.

    • Disadvantage: Potential for distractions and lack of motivation without a structured environment.

    • Disadvantage: Limited hands-on learning experiences for cer

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Ans. 

    I am a dedicated Technical Support Engineer with 5 years of experience in troubleshooting hardware and software issues.

    • 5 years of experience in technical support

    • Proficient in troubleshooting hardware and software issues

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. What makes you a suitable candidate for this position?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for helping customers.

    • Extensive experience in troubleshooting technical issues

    • Strong knowledge of various operating systems and software applications

    • Excellent communication skills to effectively assist customers

    • Proven track record of resolving complex technical problems efficiently

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy to answer, but consider real-time scenarios.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Can you tell me about your experience?
  • Q2. Why do you want to switch?
Round 2 - Group Discussion 

Topic for GD was AI in BPO.

Round 3 - One-on-one 

(1 Question)

  • Q1. Can you explain various workflow techniques?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always go through your resume before giving interview.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Over all experience and details on Implementation project
  • Q2. Scenario based questions?
Round 2 - HR 

(1 Question)

  • Q1. What is your current salary and what is expected
  • Ans. 

    I am currently earning $80,000 annually and I am looking for a salary in the range of $90,000 to $100,000.

    • Current salary: $80,000 annually

    • Expected salary range: $90,000 - $100,000

    • Open to negotiation based on benefits and responsibilities

  • Answered by AI

Technical Lead Interview Questions & Answers

Cognizant user image Ravi Kumar Gundamala

posted on 16 Oct 2024

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

(2 Questions)

  • Q1. All AWS related questions
  • Q2. Automation questions specific cloud automation using Python
Round 2 - Behavioral 

(2 Questions)

  • Q1. Overall infrastructure handling & Trouble shooting
  • Q2. How you perform as Individual contributor/ get team lead opportunity how you handle it
  • Ans. 

    I excel as an individual contributor and transition smoothly into a team lead role by leveraging my technical expertise and leadership skills.

    • Demonstrate strong technical skills and consistently deliver high-quality work as an individual contributor.

    • Proactively seek opportunities to mentor and guide team members, showcasing leadership potential.

    • Communicate effectively with team members, fostering collaboration and driv...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

First Round was assessment test round, Which includes English + Cognitive questions

Round 2 - Technical 

(1 Question)

  • Q1. As I have completed aeronautical engineering. They asked me basic questions related to aeronautics. What are the primary part of the airplane?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about project charter
  • Ans. 

    Project charter is a document that formally authorizes a project and provides the project manager with the authority to apply organizational resources to project activities.

    • Defines the project scope, objectives, deliverables, and stakeholders

    • Outlines the project timeline, budget, and resources

    • Establishes the project manager's authority and responsibilities

    • Serves as a reference point for decision-making and conflict res...

  • Answered by AI

Axiashift Interview FAQs

How many rounds are there in Axiashift Technical IT Project Manager interview?
Axiashift interview process usually has 3 rounds. The most common rounds in the Axiashift interview process are HR, One-on-one Round and Technical.
What are the top questions asked in Axiashift Technical IT Project Manager interview?

Some of the top questions asked at the Axiashift Technical IT Project Manager interview -

  1. How do you ensure adhering to agile values during project executi...read more
  2. How would you approach designing an AI chatbot for customer servi...read more
  3. What do you understand by microservice architectu...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare Axiashift with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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