Upload Button Icon Add office photos

Filter interviews by

FactWise Technical Product Manager Interview Questions and Answers

Updated 30 Jun 2024

FactWise Technical Product Manager Interview Experiences

1 interview found

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

I applied via Job Portal

Round 1 - Aptitude Test 

Was given a problem statement and had to create an MVP version of the app(database, wireframe etc) keeping the in mind the various factors given

Round 2 - One-on-one 

(1 Question)

  • Q1. How would you build an hospital?

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your structured problem solving skills for guesstimates(case in point is a good resource) and communication.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. "Tell me about a time" kind of questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Behavioral questions based on Amazon Leadership Principles.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology, (NIT), Sikkim and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

60 min total
45-aptitude question
2-coding question

Round 2 - Technical 

(2 Questions)

  • Q1. What is garbage collecture
  • Ans. 

    Garbage collector is a program that automatically frees up memory by reclaiming memory occupied by objects that are no longer in use.

    • Garbage collector is a part of the memory management system in programming languages like Java, C#, and Python.

    • It helps prevent memory leaks by identifying and freeing up memory that is no longer needed.

    • Garbage collection can be automatic or manual, depending on the programming language a

  • Answered by AI
  • Q2. Differnce between public key and foreign key
  • Ans. 

    Public key is used for encryption and decryption in asymmetric cryptography, while foreign key is used to establish a relationship between tables in a database.

    • Public key is used in asymmetric cryptography for secure communication.

    • Foreign key is used in databases to establish relationships between tables.

    • Public key is shared with others for encryption, while private key is kept secret for decryption.

    • Foreign key links a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - have good knowledge of DBMS,SQL,OS ,OOPS and CN
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell us about your past project architecture
  • Ans. 

    I have designed and implemented a microservices architecture for a large e-commerce platform.

    • Utilized Docker containers for easy deployment and scalability

    • Implemented API gateway for centralized authentication and routing

    • Used message queues for asynchronous communication between services

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology, (NIT), Sikkim and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

This was a assessment round where questions were asked from Aptitude ,DSA and Computer Science Fundamentals

Round 2 - Group Discussion 

The Group was divided into 10 people in each group and there was a common topic -"Is AI based Decision Making-Boon and Bane" and everyone was given 1 minute to speak on.

Round 3 - Technical 

(1 Question)

  • Q1. Questions from Resume were asked, Skills Projects(Which Libraries Tech Stacks you used) and Past Internship experience (What was the work , did you worked in any team what Tech Stacks you used) . What were...

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Resume part projects and practise Basic Coding Arrays and Strings
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Customer help. How to deal with irate cx

I applied via Naukri.com and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Expectations of the salary
  • Q2. Sccm basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Government job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Its basically on system design and coding round, simple string related questions and jira dystem design
  • Q2. Code LCA and many sting coding
Round 2 - Technical 

(1 Question)

  • Q1. JIra System design
  • Ans. 

    Jira System design involves creating workflows, issue types, custom fields, and permissions to optimize project management.

    • Design workflows to track the progress of tasks from start to finish

    • Create custom issue types to categorize different types of work

    • Define custom fields to capture specific information for each issue

    • Set up permissions to control who can view, edit, and transition issues

    • Integrate Jira with other tool...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. What and why IOC Container in spring
  • Ans. 

    IOC Container is a core feature of Spring Framework that manages the dependencies between objects.

    • IOC stands for Inversion of Control

    • It is used to achieve loose coupling between objects

    • It allows objects to be created and wired together by an external framework

    • It reduces the amount of code needed for configuration and maintenance

    • Examples of IOC Containers in Spring are ApplicationContext and BeanFactory

  • Answered by AI
  • Q2. Why we use @Value in spring boot
  • Ans. 

    We use @Value in Spring Boot to inject values from properties files or environment variables.

    • Allows for external configuration of application properties

    • Values can be injected from properties files or environment variables

    • Can be used to inject values into fields, constructors, or methods

    • Example: @Value("${my.property}") private String myProperty;

  • Answered by AI
  • Q3. Difference between SQL and Non-SQL database
  • Ans. 

    SQL databases are relational and use structured data, while NoSQL databases are non-relational and use unstructured data.

    • SQL databases use tables with predefined schema, while NoSQL databases use documents, key-value pairs, or graphs.

    • SQL databases are better for complex queries and data analysis, while NoSQL databases are better for scalability and flexibility.

    • Examples of SQL databases include MySQL, Oracle, and Postgr...

  • Answered by AI
  • Q4. Give real time scenario where have you used abstract class and interface
  • Ans. 

    Abstract classes and interfaces are used to achieve abstraction and provide a blueprint for classes to implement.

    • Used abstract class to create a base class for different types of vehicles, with common properties and methods.

    • Used interface to define a contract for different payment methods, with each method implementing its own logic.

    • Abstract classes are used when we want to provide a default implementation for some met...

  • Answered by AI
  • Q5. How did you handle authentication and authorization in project
  • Ans. 

    Authentication and authorization were handled using a combination of technologies and protocols.

    • Used OAuth 2.0 for authentication

    • Implemented role-based access control for authorization

    • Stored user credentials securely using bcrypt hashing algorithm

    • Used JSON Web Tokens (JWT) for session management

    • Implemented two-factor authentication for sensitive operations

  • Answered by AI
  • Q6. How will you encrypt customer information including SSN and others
  • Ans. 

    Customer information will be encrypted using industry-standard encryption algorithms and stored securely.

    • Use industry-standard encryption algorithms such as AES or RSA

    • Ensure that encryption keys are securely stored and managed

    • Implement secure storage mechanisms such as hashing and salting

    • Regularly review and update encryption protocols to ensure they remain secure

  • Answered by AI
  • Q7. Why Serialization used
  • Ans. 

    Serialization is used to convert complex data structures into a format that can be easily transmitted or stored.

    • Serialization allows data to be sent over a network or saved to a file.

    • It enables objects to be stored in a database or memory.

    • Serialization is used in web services, messaging systems, and distributed computing.

    • Examples include JSON, XML, and binary formats like Protocol Buffers and Apache Avro.

  • Answered by AI
  • Q8. Do you have any experience with Jenkins and Cloud Deployement
  • Ans. 

    Yes, I have experience with Jenkins and Cloud Deployment.

    • I have used Jenkins for continuous integration and continuous deployment.

    • I have experience with setting up Jenkins pipelines for automated deployment.

    • I have worked with cloud platforms like AWS and Azure for deploying applications.

    • I have used tools like Ansible and Terraform for infrastructure automation.

    • I have experience with containerization using Docker and Ku...

  • Answered by AI
  • Q9. Have you used Logging mechanism
  • Ans. 

    Yes, logging is an essential part of software development.

    • Logging helps in debugging and troubleshooting issues.

    • It provides a record of events and actions taken by the system.

    • It helps in monitoring system performance and identifying bottlenecks.

    • Examples of logging mechanisms include log4j, syslog, and ELK stack.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini Technical Lead interview:
  • Java, Spring, Spring, Securrity
  • Web Services
  • Cloud Deployement
  • Microservices
  • JPA
  • Hibernate
Interview preparation tips for other job seekers - Basic questions asked from Resume based on the the technical skill set shown.
Need to be confident and give point to point answer.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Since its a service based company, don't interview don't expect much technical questions for this role. Most people have just read or watched videos and don't have actual hands on experience. Just prepare ...
  • Q2. My interview was amazing. The interviewer's name was Anirban Goswami. To be honest , he hardly knew things in depth and just asked about EBS,S3, Loadbalancer, VPC, Ansible. Everything was very basic since ...

Interview Preparation Tips

Interview preparation tips for other job seekers - No advice, you guyz are doing great job since we have 80% graduates who doesn't fit into IT industry but by hiring mostly from the lot of 80% , you are helping them.

FactWise Interview FAQs

How many rounds are there in FactWise Technical Product Manager interview?
FactWise interview process usually has 2 rounds. The most common rounds in the FactWise interview process are Aptitude Test and One-on-one Round.
How to prepare for FactWise Technical Product 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 FactWise. The most common topics and skills that interviewers at FactWise expect are Product Management and Product Strategy.

Tell us how to improve this page.

People are getting interviews through

based on 1 FactWise interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Software Development Engineer
4 salaries
unlock blur

₹6.5 L/yr - ₹9.8 L/yr

Software Engineer
3 salaries
unlock blur

₹6.5 L/yr - ₹40 L/yr

Product Manager
3 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Devops Engineer
3 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Backend Python Developer
3 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Explore more salaries
Compare FactWise with

Datawise Consultants

3.9
Compare

Infotech

4.0
Compare

Analytics Plus

5.0
Compare

Tech Data

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview