Upload Button Icon Add office photos

Comviva Technology

Compare button icon Compare button icon Compare

Filter interviews by

Comviva Technology Interview Questions, Process, and Tips

Updated 15 Feb 2025

Top Comviva Technology Interview Questions and Answers

View all 40 questions

Comviva Technology Interview Experiences

Popular Designations

72 interviews found

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

Interview Questionnaire 

2 Questions

  • Q1. What is mean by smoke testing
  • Ans. 

    Smoke testing is a preliminary testing to check if the software build is stable enough for further testing.

    • Smoke testing is a type of non-exhaustive testing

    • It is performed to ensure that the critical functionalities of the software are working fine

    • It is usually done after a new build is received

    • It helps in identifying the major issues early in the testing cycle

    • Example: Checking if the login page is working fine after a

  • Answered by AI
  • Q2. Difference between regression and retesting
  • Ans. 

    Regression testing is testing the entire system after changes while retesting is testing only the failed test cases.

    • Regression testing is done to ensure that changes made to the system do not affect the existing functionality.

    • Retesting is done to ensure that the defects found in the previous test cycle have been fixed.

    • Regression testing is done after every build while retesting is done after every defect fix.

    • Regression...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - firstly prepare well then face the interview

Skills evaluated in this interview

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND SubsequencesYou are given an array consisting of N integers. You need to find the number of k-element subsequences of the given array where the bitwise AND of the subsequence's elements is maximal. Also, find the maximal AND val... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jan 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. All Related to work exp. That i had .
  • Q2. Related to linux sql ,smsc,smpp,scripting

Interview Preparation Tips

Interview preparation tips for other job seekers - Just need to know allowed things conceptual.
Basics must be clear for Linux And SQL And scripting language of any.Knowledge of GSM And telecom protocol should be okay.

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (56)

I applied via campus placement at Harcourt Butler Technology Institute, Kanpur and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. SQL queries
  • Q2. Data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic concepts, prepare your project

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)

I was interviewed in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 minutes
Round difficulty - Medium

In this round, there were 4 sections of MCQs, along with two coding questions. It lasted for 2.5 hours in which the camera was on along with the microphone on the platform AMCAT. One coding question was of hard difficulty level of graph and another was of medium level difficulty question of dynamic programming. MCQ part was quite easy with a timer, on each sub part and can be easily solved.

  • Q1. 

    Count Nodes within K-Distance Problem Statement

    Given a connected, undirected, and acyclic graph where some nodes are marked and a positive integer 'K'. Your task is to return the count of nodes such that...

  • Ans. 

    Step1 : I solved this problem using breadth first search.
    Step 2 : Main thing to observe in this problem is that if we find two marked nodes which are at largest distance from each other considering all pairs of marked nodes then if a node is at a distance less than K from both of these two nodes then it will be at a distance less than K from all the marked nodes because these two nodes represents the extreme limit of a...

  • Answered Anonymously
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of each denomination from a list, determine the total number of distinct ways to make a change for a specified value. If making the change isn't ...

  • Ans. 

    1. Firstly, I coded the problem using recursion, but I got TLE after submission.
    2. Then, I optimized, using dynamic programming, but the time I could submit the code, the time was up, and I was not able to submit.

  • Answered Anonymously
Round 2 - Video Call 

(3 Questions)

Round duration - 30 minutes
Round difficulty - Medium

There were around 40 people shortlisted after round 1, for the interview, round, in the morning PPT was held, after which the interviews were scheduled, for 30 minutes till 6 pm in the evening, 
my interview was at 4.30 pm 
Interviewer was straight forward, and direct in approach, and did not waste even a single second of his or mine. Sharp after 30 minutes the interview was ended. 
through out the interview, he was friendly, and just observing.
Firstly, 3 coding questions, were asked, then 2 concepts of java and 1 concept of data structures was asked. 
the question related to java were, demon thread and platform independence. In data structures, I was asked to give brief intro regarding the AVL trees.

  • Q1. 

    Count Occurrences of X in Sorted Array

    Given a sorted array or list of integers with size N and an integer X, you need to determine how many times X appears in the array/list.

    Input:

    The first line of t...
  • Ans. 

    1. I started with linear search
    2. Then when I said Binary search, I was asked to write pseudo code and explain it.
    3. I covered all the test cases, including the corner cases.

  • Answered Anonymously
  • Q2. 

    Merge Sort Task

    Given a sequence of numbers, denoted as ARR, your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Example:

    Explanation:
    The Merge Sort...
  • Ans. 

    1. I was asked to directly code the solution.
    2. I followed the same, and coded, it, in between the interviewer stopped me and said, I got you, lets move to next question.
    3. I followed this approach, divided the input array into two halves, calls itself for the two halves, and then merge the two sorted halves. The merge() function is used for merging two halves. The merge(arr, l, m, r) is a key process that assumes that...

  • Answered Anonymously
  • Q3. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    1. Firstly, I made the structure of linked list.
    2. Then, I made the four functions, of stack pop, push, empty and full.
    3. And when I started to explain the written code, the interviewer was well convinced, and said no need, I understood, it and moved to theory questions of java.

  • Answered Anonymously
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

The interview was scheduled at 4.30 pm again, and due to network issue, my audio was not clear to the interviewer, but the interviewer was highly cooperating, he called me over phone to take the interview, and video was on through the zoom meet only. 
The interview was like a discussion from both ends, which went very satisfying for me as a candidate and the interviewer too.
Before the interview in the morning, we were given the topics on which we had to write 100 words.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteriaNo back logsMahindra Comviva interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Competitive programming, Trees, Arrays, Strings, Stacks, QueueTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve all the question with Microsoft, Amazon tags on geeksforgeeks. 
Tip 2 : Never give up during the interview, rather just keep trying whether you reach the solution or not. 
Tip 3 : Be confident, this is the most important requirement.

Application resume tips for other job seekers

Tip 1 : Claim the things, that you have done in actual by your own. 
Tip 2 : Never write any false information on the resume, always get it verified with your mates.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Comviva Technology Software Developer Interview Questions and Answers

Q1. Ways To Make Coin ChangeYou are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a change for value V using coins of denom... read more
View answer (5)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Comviva Technology interview questions for popular designations

 Product Development Engineer

 (6)

 Software Developer

 (5)

 Senior Engineer

 (4)

 Senior Technical Manager

 (3)

 Engineer Trainee

 (2)

 Manager

 (2)

 Product Developer

 (2)

 Product Manager

 (2)

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 100 minutes
Round difficulty - Medium

It basically consisted of a 2hr test(approx) on AMCAT. The test consisted of 2 coding question and 20 questions of quantitative, reasoning and technical question based on DBMS, DS and small C coding.

  • Q1. 

    Trapping Rainwater Problem Statement

    You are given an array ARR of long type, which represents an elevation map where ARR[i] denotes the elevation of the ith bar. Calculate the total amount of rainwater t...

  • Ans. 

    Step 1 : Find the highest bar on the left and right, array traversal is needed which reduces the efficiency of the solution.
    Step 2 : To make this efficient one must pre-compute the highest bar on the left and right of every bar in linear time.
    Step 3 : Then use these pre-computed values to find the amount of water in every array element.

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

The 2nd Round was technical interview round.
It started with the usual “Tell me something about yourself”. Then he asked questions based on resume, like I had mentioned that I am familiar with Concepts of Data Science and Machine, so he asked a few questions on them. Then he asked about OOPS concepts and he also asked few questions on my project.

Round 3 - Assignment 

Round duration - 45 minutes
Round difficulty - Easy

Round 4 - HR 

Round duration - 15 minutes
Round difficulty - Easy

The HR was pretty chill and she asked questions like:-
Tell Me something about yourself.
Do you plan to do Masters
All about my resume
About my club and project.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMahindra Comviva interview preparation:Topics to prepare for the interview - Data Structures And Algorithms, OOPS, Dynamic Programming, Web Development, Python, Basics of Data Science And Machine LearningTime required to prepare for the interview - 5-6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on concept clearity and practice topic wise DSA questions on regular basis.
Tip 2 : Do atleast 2 projects and have detailed knowlede about the projects.
Tip 3 : Have a good grasp of Concepts of OOPS.

Application resume tips for other job seekers

Tip 1 : Put those things on resume which you are confident about.
Tip 2 : Have at least two projects on resume, out of which one should be your main project and the other can be your secondary one.
Tip 3 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Product Development Engineer Interview Questions asked at other Companies

Q1. Trapping RainwaterYou have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Print the total amount of rainwater that can be trapped in these elevati... read more
View answer (4)

Get interview-ready with Top Comviva Technology Interview Questions

Manage services Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2020

Interview Questionnaire 

4 Questions

  • Q1. Tell me something that is not in the resume.
  • Q2. Project related questions
  • Q3. Linux basic commands
  • Q4. DBMS basic questions : join, group, limit, where clause.

Jobs at Comviva Technology

View all

Trainee Interview Questions & Answers

user image Anonymous

posted on 11 Feb 2021

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, jdbc connection, sql, in depth of collection and mutlithreading of java. These are the questions asked me in the technical interview

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)

I applied via Campus Placement and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. MBA Campus selection - all questions revolved around past experience & management competitions won.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interviews, and depth of knowledge looked for.

Senior Global Product Manager Interview Questions asked at other Companies

Q1. How would you increase monetization at youtube
View answer (1)

Interview Questions & Answers

user image

posted on 23 Nov 2015

I applied via Referral

Interview Questionnaire 

12 Questions

  • Q1. All operations of Linked list , strings
  • Ans. 

    Linked lists and strings are fundamental data structures used in programming for storing and manipulating data.

    • Linked lists are made up of nodes that contain a value and a reference to the next node in the list.

    • Strings are sequences of characters that can be manipulated using various string functions.

    • Operations on linked lists include insertion, deletion, traversal, and searching.

    • Operations on strings include concatena...

  • Answered by AI
  • Q2. OOPS : polymorphism, inheritance real world examples
  • Q3. ISO-OSI model. purpose of various layers, protocols in various layers, TCP vs UDP
  • Ans. 

    ISO-OSI model explains network communication through 7 layers, each with specific functions and protocols.

    • ISO-OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, Application.

    • Each layer has specific functions like data encapsulation, routing, error detection, etc.

    • Protocols like TCP, UDP operate at Transport layer. TCP ensures reliable, connection-oriented communication. UDP is faster ...

  • Answered by AI
  • Q4. 2-3 puzzles. They were all from google interview questions
  • Q5. Difference Between C and C++
  • Q6. BE project
  • Q7. Semaphore from operating system
  • Ans. 

    A semaphore in operating systems is a synchronization tool used to control access to shared resources.

    • Semaphores can be used to prevent race conditions in multi-threaded programs

    • They can be either binary (0 or 1) or counting (integer value)

    • Examples include mutex locks and counting semaphores

  • Answered by AI
  • Q8. Tell me abt urself ?
  • Q9. Why should we hire you?
  • Q10. Why you want to join our company?
  • Q11. Your strength and weakness ?
  • Ans. 

    My strength is my ability to adapt to new situations and my weakness is my tendency to be overly critical of myself.

    • Strength: Adaptability - I am able to quickly adjust to new environments and learn new skills.

    • Weakness: Self-criticism - I tend to be too hard on myself and strive for perfection.

    • Example for strength: In my previous job, I was assigned to a project with a completely different technology stack. I quickly a...

  • Answered by AI
  • Q12. What is your ambitions ?
  • Ans. 

    My ambition is to become a successful entrepreneur and make a positive impact on society.

    • To start my own business and create innovative products or services

    • To build a strong team and lead them towards success

    • To contribute to the growth and development of the economy

    • To give back to the community through philanthropic initiatives

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Tips: 1. Arrange for quantitative aptitude classes. People really lack here
2. Regular mock placement sessions to be conducted


Skills:

Skills evaluated in this interview

NA Interview Questions & Answers

user image dinesh chandra pathak

posted on 23 Nov 2015

Interview Questionnaire 

5 Questions

  • Q1. BASIC C, data structure
  • Q2. C++
  • Q3. Sql
  • Q4. Project
  • Q5. Java

Interview Preparation Tips

Round: Technical Interview
Tips: 1.work on communication skills
2.improve ur apti
3.code of conduct

Skills:
College Name: NA

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. What is inheritance? Show me by a code that shouldn't be a pseudo code but can ...read more
  2. What is normalization? What do you mean by 1NF, 2NF, 3NF, 4...read more
  3. What are framework are used in frontend and what are the layers in css and defi...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.

Comviva Technology Interview Process

based on 72 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Coforge Interview Questions
3.3
 • 520 Interviews
View all

Comviva Technology Reviews and Ratings

based on 727 reviews

3.2/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

2.8

Salary

3.4

Job security

3.0

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 727 Reviews and Ratings
Product Manager

Gurgaon / Gurugram

2-4 Yrs

₹ 19.5-18.7 LPA

Business Analysis (Telecom Messaging Solutions)

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Solution Architect

Bangalore / Bengaluru

10-16 Yrs

Not Disclosed

Explore more jobs
Technical Lead
399 salaries
unlock blur

₹7.7 L/yr - ₹22 L/yr

Senior Engineer
348 salaries
unlock blur

₹3 L/yr - ₹12.9 L/yr

Senior Software Engineer
317 salaries
unlock blur

₹4.1 L/yr - ₹17.5 L/yr

Senior Technical Lead
210 salaries
unlock blur

₹12.8 L/yr - ₹31.2 L/yr

Software Engineer
198 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Explore more salaries
Compare Comviva Technology with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Tech Mahindra

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