Upload Button Icon Add office photos

Comviva Technology

Compare button icon Compare button icon Compare

Filter interviews by

Comviva Technology Interview Questions and Answers

Updated 18 Jun 2025
Popular Designations

48 Interview questions

A Business Analyst was asked 2w ago
Q. Explain the entire process with a real-life example.
Ans. 

A Business Analyst identifies needs and solutions through data analysis, stakeholder engagement, and project management.

  • Identify Stakeholders: Engage with users, management, and IT to gather requirements. Example: Meeting with department heads to understand their needs.

  • Gather Requirements: Use techniques like interviews, surveys, and workshops. Example: Conducting a survey to assess user satisfaction with current ...

View all Business Analyst interview questions
A Software Engineer was asked 3mo ago
Q. What are the differences between the PHP functions explode and implode?
Ans. 

explode splits a string into an array, while implode joins array elements into a string.

  • explode(separator, string): Splits a string by a specified separator.

  • Example: explode(',', 'apple,banana,cherry') returns ['apple', 'banana', 'cherry'].

  • implode(separator, array): Joins array elements into a single string with a specified separator.

  • Example: implode('-', ['2023', '10', '05']) returns '2023-10-05'.

  • explode is used ...

View all Software Engineer interview questions
A Software Engineer was asked 3mo ago
Q. What is your knowledge and experience with PHP frameworks?
Ans. 

I have extensive experience with PHP frameworks like Laravel and CodeIgniter, focusing on building scalable web applications.

  • Proficient in Laravel for its elegant syntax and robust features like Eloquent ORM and Blade templating.

  • Experience with CodeIgniter for lightweight applications, emphasizing speed and simplicity.

  • Utilized Symfony components in various projects for reusable libraries and better structure.

  • Imple...

View all Software Engineer interview questions
A Senior Accounts Executive was asked 7mo ago
Q. Are you available to travel when needed?
Ans. 

Absolutely, I am flexible and willing to travel as needed to meet client needs and support business objectives.

  • I have previously traveled for client meetings, which helped strengthen relationships.

  • I am comfortable with both domestic and international travel, as I understand its importance in business.

  • For example, I once traveled to a key client's headquarters to finalize a contract, which resulted in a significant...

View all Senior Accounts Executive interview questions
A Senior Accounts Executive was asked 7mo ago
Q. How much pressure can you handle?
Ans. 

I thrive under pressure, using it as a motivator to achieve goals and maintain high performance in challenging situations.

  • I prioritize tasks effectively, ensuring deadlines are met even in high-pressure scenarios.

  • For example, during a quarterly review, I managed multiple client accounts simultaneously, delivering results ahead of schedule.

  • I maintain a calm demeanor, which helps my team stay focused and productive ...

View all Senior Accounts Executive interview questions
A Senior Accounts Executive was asked 7mo ago
Q. What were your job roles?
Ans. 

As a Senior Accounts Executive, I managed client accounts, developed strategies, and ensured financial accuracy and compliance.

  • Managed a portfolio of high-value client accounts, ensuring their needs were met and relationships were nurtured.

  • Developed and implemented strategic account plans that increased client retention by 20%.

  • Conducted regular financial reviews and audits to ensure compliance with industry regula...

View all Senior Accounts Executive interview questions
A Senior Accounts Executive was asked 7mo ago
Q. What were your responsibilities and how did you perform them?
Ans. 

As a Senior Accounts Executive, I managed client accounts, ensuring satisfaction and driving revenue growth through strategic planning.

  • Developed strong relationships with clients to understand their needs and provide tailored solutions.

  • Conducted regular account reviews to assess performance and identify opportunities for upselling.

  • Collaborated with cross-functional teams to ensure seamless service delivery and add...

View all Senior Accounts Executive interview questions
Are these interview questions helpful?
A Product Development Engineer was asked 9mo ago
Q. Can you explain OOPS concepts with real-world examples?
Ans. 

OOPs concepts like encapsulation, inheritance, polymorphism, and abstraction enhance software design and reusability.

  • Encapsulation: A class 'Car' can encapsulate properties like 'speed' and 'fuel' with methods to manipulate them.

  • Inheritance: A 'ElectricCar' class can inherit from the 'Car' class, gaining its properties and methods while adding new features.

  • Polymorphism: A method 'startEngine()' can behave differen...

View all Product Development Engineer interview questions
A Senior Ruby on Rails Developer was asked 9mo ago
Q. How would you add a new column to a database table in production that already contains 100 million rows of data?
Ans. 

Use a tool like Rails migration to add a new column to the database table in production with 100 million data.

  • Create a new Rails migration file to add the new column to the database table.

  • Test the migration locally to ensure it works as expected.

  • Deploy the migration to the production environment during a maintenance window to avoid downtime.

  • Consider using tools like ActiveRecord's `change_column` method to efficie...

View all Senior Ruby on Rails Developer interview questions
A Senior Ruby on Rails Developer was asked 9mo ago
Q. How can an application running in the cloud with tightly coupled infrastructure be deployed to on-premise?
Ans. 

An application running in cloud with tightly coupled infrastructure can be deployed to on-premise by decoupling the components and using containerization.

  • Decouple the application components to make them more portable

  • Use containerization technologies like Docker to package the application and its dependencies

  • Deploy the containerized application to on-premise servers using tools like Kubernetes for orchestration

View all Senior Ruby on Rails Developer interview questions

Comviva Technology Interview Experiences

78 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the differences between the PHP functions explode and implode?
  • Ans. 

    explode splits a string into an array, while implode joins array elements into a string.

    • explode(separator, string): Splits a string by a specified separator.

    • Example: explode(',', 'apple,banana,cherry') returns ['apple', 'banana', 'cherry'].

    • implode(separator, array): Joins array elements into a single string with a specified separator.

    • Example: implode('-', ['2023', '10', '05']) returns '2023-10-05'.

    • explode is used for p...

  • Answered by AI
  • Q2. What is your knowledge and experience with PHP frameworks?
  • Ans. 

    I have extensive experience with PHP frameworks like Laravel and CodeIgniter, focusing on building scalable web applications.

    • Proficient in Laravel for its elegant syntax and robust features like Eloquent ORM and Blade templating.

    • Experience with CodeIgniter for lightweight applications, emphasizing speed and simplicity.

    • Utilized Symfony components in various projects for reusable libraries and better structure.

    • Implemente...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Add a new column to the database table in production which is already having 100 million of data
  • Ans. 

    Use a tool like Rails migration to add a new column to the database table in production with 100 million data.

    • Create a new Rails migration file to add the new column to the database table.

    • Test the migration locally to ensure it works as expected.

    • Deploy the migration to the production environment during a maintenance window to avoid downtime.

    • Consider using tools like ActiveRecord's `change_column` method to efficiently ...

  • Answered by AI
  • Q2. How an application running in cloud with tightly coupled infrastructure can be deployed to on-premise
  • Ans. 

    An application running in cloud with tightly coupled infrastructure can be deployed to on-premise by decoupling the components and using containerization.

    • Decouple the application components to make them more portable

    • Use containerization technologies like Docker to package the application and its dependencies

    • Deploy the containerized application to on-premise servers using tools like Kubernetes for orchestration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview focused primarily on the architectural perspective, Try to get indepth knowledge or understanding of the technology your are working with.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Scenario based questions related to you work
  • Q2. Explain the entire process with a real life example
  • Ans. 

    A Business Analyst identifies needs and solutions through data analysis, stakeholder engagement, and project management.

    • Identify Stakeholders: Engage with users, management, and IT to gather requirements. Example: Meeting with department heads to understand their needs.

    • Gather Requirements: Use techniques like interviews, surveys, and workshops. Example: Conducting a survey to assess user satisfaction with current softw...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your project and your role into it.
  • Ans. 

    I led a project to implement a new CRM system for a large retail company.

    • Led a project to implement CRM system

    • Worked closely with stakeholders to gather requirements

    • Managed a team of developers and testers

    • Conducted user training sessions

    • Ensured successful deployment and adoption of the new system

  • Answered by AI
  • Q2. Agile based questions
Round 2 - Technical 

(1 Question)

  • Q1. Business Analyst basic question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Can you relocate to Bengaluru?
  • Ans. 

    Yes, I am open to relocating to Bengaluru for the Senior Engineer position.

    • I am willing to relocate to Bengaluru for the right opportunity.

    • I have experience relocating for previous job positions.

    • I am excited about the prospect of working in Bengaluru and contributing to the team.

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain dashboards created by u
  • Ans. 

    I have created interactive dashboards using Tableau to visualize and analyze data for various projects.

    • Utilized Tableau to connect to data sources and create interactive visualizations

    • Designed dashboards with filters, drill-down capabilities, and dynamic elements

    • Included key performance indicators (KPIs) and trend analysis in the dashboards

    • Used color coding and data labels to enhance data interpretation

    • Shared dashboard...

  • Answered by AI
  • Q2. Role in ur current organization
  • Ans. 

    As a Data Analyst, I analyze data trends, create reports, and support decision-making processes to drive business improvements.

    • Conduct data analysis using tools like SQL and Python to extract insights from large datasets.

    • Create visualizations using Tableau to present findings to stakeholders, enhancing data-driven decision-making.

    • Collaborate with cross-functional teams to identify key performance indicators (KPIs) and ...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Knowledge on OWASP top 10
  • Q2. Different functionality of Burpsuite.
  • Ans. 

    Burpsuite is a web application security testing tool used for scanning, analyzing, and exploiting web applications.

    • Burpsuite can intercept and modify HTTP/S requests and responses

    • It can be used for scanning web applications for vulnerabilities

    • Burpsuite includes tools for spidering, scanning, and intruder attacks

    • It has a repeater tool for manually manipulating and re-sending requests

    • Burpsuite can be used for session han...

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

(2 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior Security Engineer leading a team of professionals, implementing cutting-edge security solutions, and continuously expanding my knowledge and skills in the field.

    • Leading a team of security professionals

    • Implementing cutting-edge security solutions

    • Continuously expanding knowledge and skills

    • Possibly pursuing certifications such as CISSP or CISM

  • Answered by AI
  • Q2. What do you do to keep yourself up to date.
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the interview processes were completed but they never called back or receive my calls. I was selected but offer letter was not rolled out. WORST experience.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain opps concept
  • Ans. 

    OOPs concept stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data in the form of attributes and code in the form of methods.

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPs.

    • Example: In a banking system, a 'Customer' object can have attributes like name and account number, and method...

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

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. DBA related questions
  • Q2. Golden Gate architecture, RAC, Data guard
Round 2 - Technical 

(2 Questions)

  • Q1. Partition tables
  • Q2. RAC-startup, export/import
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Clocks and calendars
Puzzles
Coding and decoding
Blood relations
Seating arrangements
Cause and effect
Series completion
Binary logic

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Comviva Technology?
Ask anonymously on communities.

Comviva Technology Interview FAQs

How many rounds are there in Comviva Technology interview?
Comviva Technology interview process usually has 2-3 rounds. The most common rounds in the Comviva Technology interview process are Technical, HR and Resume Shortlist.
How to prepare for Comviva Technology 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 Comviva Technology. The most common topics and skills that interviewers at Comviva Technology expect are Linux, Oracle, MySQL, Troubleshooting and SQL.
What are the top questions asked in Comviva Technology interview?

Some of the top questions asked at the Comviva Technology interview -

  1. He asked me a puzzle. He drew a trapezium on a paper. In that trapezium, on of ...read more
  2. What is inheritance? Show me by a code that shouldn't be a pseudo code but can ...read more
  3. What is normalization? What do you mean by 1NF, 2NF, 3NF, 4...read more
What are the most common questions asked in Comviva Technology HR round?

The most common HR questions asked in Comviva Technology interview are -

  1. Where do you see yourself in 5 yea...read more
  2. Why should we hire y...read more
How long is the Comviva Technology interview process?

The duration of Comviva Technology interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 78 interview experiences

Difficulty level

Easy 23%
Moderate 68%
Hard 9%

Duration

Less than 2 weeks 74%
2-4 weeks 19%
4-6 weeks 5%
6-8 weeks 2%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
3i Infotech Interview Questions
3.4
 • 151 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
Sify Technologies Interview Questions
3.8
 • 131 Interviews
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all

Comviva Technology Reviews and Ratings

based on 867 reviews

3.0/5

Rating in categories

3.0

Skill development

2.9

Work-life balance

2.6

Salary

3.3

Job security

2.8

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 867 Reviews and Ratings
Company Secretary

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

senior / Lead Data Engineer

Gurgaon / Gurugram

4-8 Yrs

Not Disclosed

Qa Tester

Gurgaon / Gurugram

4-9 Yrs

Not Disclosed

Explore more jobs
Technical Lead
504 salaries
unlock blur

₹11.4 L/yr - ₹20 L/yr

Senior Engineer
359 salaries
unlock blur

₹5.5 L/yr - ₹12.4 L/yr

Senior Software Engineer
346 salaries
unlock blur

₹5.9 L/yr - ₹14 L/yr

Senior Technical Lead
249 salaries
unlock blur

₹16.8 L/yr - ₹29 L/yr

Software Engineer
224 salaries
unlock blur

₹4.2 L/yr - ₹12.7 L/yr

Explore more salaries
Compare Comviva Technology with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview