Upload Button Icon Add office photos

Filter interviews by

Comviva Technology Software Developer Interview Questions, Process, and Tips

Updated 3 Sep 2024

Top Comviva Technology Software Developer Interview Questions and Answers

  • Q1. 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 ...read more
  • 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. Exa ...read more
  • Q3. 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 ...read more
View all 7 questions

Comviva Technology Software Developer Interview Experiences

5 interviews found

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Pillers of oops , explain data science, concepts of ACID
  • Ans. 

    Pillars of OOPs are Inheritance, Encapsulation, Polymorphism, and Abstraction. Data science involves analyzing and interpreting complex data. ACID stands for Atomicity, Consistency, Isolation, Durability.

    • Pillars of OOPs: Inheritance, Encapsulation, Polymorphism, Abstraction

    • Data science: Analyzing and interpreting complex data to gain insights

    • ACID: Atomicity, Consistency, Isolation, Durability

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Acid properties, oops concept, DBMS concept
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 3 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 - Coding Test 

Own platform on string based problem

Round 3 - Technical 

(2 Questions)

  • Q1. Related to java concept
  • Q2. Related to the topic mentioned in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

Comviva Technology interview questions for designations

 Software Engineer

 (2)

 Software Trainee

 (1)

 Product Developer

 (2)

 Senior Developer

 (1)

 Web Developer

 (1)

 Software Engineer Trainee

 (2)

 Software Testing Engineer

 (1)

 Senior Ruby on Rails Developer

 (1)

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

Get interview-ready with Top Comviva Technology Interview Questions

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

General aptitude online test

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basic concepts with eg
  • Q2. C#,Sql,MVC concepts
Round 3 - Technical 

(2 Questions)

  • Q1. Project experience
  • Ans. 

    I have experience working on various projects including web development, mobile app development, and database management.

    • Developed a web application using React.js and Node.js for a client in the e-commerce industry

    • Created a mobile app using Swift for a healthcare startup to track patient data

    • Managed a MySQL database for a financial services company to store and retrieve customer information

  • Answered by AI
  • Q2. Coding related questions asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is OOPS ?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data and methods to manipulate that data.

    • It allows for encapsulation, inheritance, and polymorphism.

    • Examples of OOPS languages include Java, C++, and Python.

  • Answered by AI
  • Q2. What is Dependency Injection
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Example: Constructor injection, Setter injection

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Which Architechture does you project build by?
  • Q2. What is Normalization in sql?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured manner.

    • There are different normal forms like 1NF, 2NF, 3NF, and BCNF that define the level of normalization.

    • Example: If we have a t...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell about your self ?
  • Q2. Whom do you provide your first month salary ?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Prev job work and project details , roles and responsibility

Round 2 - Technical 

(2 Questions)

  • Q1. What is SDLC process
  • Ans. 

    SDLC process is a structured approach to software development that defines tasks performed at each stage of the software development life cycle.

    • SDLC stands for Software Development Life Cycle

    • It includes stages like planning, analysis, design, implementation, testing, and maintenance

    • Each stage has specific goals and deliverables to ensure the quality and success of the software project

  • Answered by AI
  • Q2. What is the ASp.net mean for ?
  • Ans. 

    ASP.NET stands for Active Server Pages .NET, a web application framework developed by Microsoft.

    • ASP.NET is a server-side web application framework used for building dynamic web pages and web applications.

    • It allows developers to create web applications using languages like C# or VB.NET.

    • ASP.NET provides tools and libraries for building web forms, MVC (Model-View-Controller) applications, and Web API services.

    • It is part o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tech round

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Javascript features
  • Q2. Virtual dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear and definitions should be at your tips

Comviva Technology Interview FAQs

How many rounds are there in Comviva Technology Software Developer interview?
Comviva Technology interview process usually has 1-2 rounds. The most common rounds in the Comviva Technology interview process are Technical, HR and Resume Shortlist.
How to prepare for Comviva Technology Software Developer 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 Hibernate, Software Development Life Cycle, Java, Test Cases and Unit Testing.
What are the top questions asked in Comviva Technology Software Developer interview?

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

  1. Pillers of oops , explain data science, concepts of A...read more
  2. explain opps conc...read more
  3. Acid properties, oops concept, DBMS conc...read more

Tell us how to improve this page.

Comviva Technology Software Developer Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more
Comviva Technology Software Developer Salary
based on 132 salaries
₹4.8 L/yr - ₹12 L/yr
At par with the average Software Developer Salary in India
View more details

Comviva Technology Software Developer Reviews and Ratings

based on 22 reviews

3.1/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

2.6

Salary

4.0

Job security

3.2

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 22 Reviews and Ratings
Technical Lead
391 salaries
unlock blur

₹7.5 L/yr - ₹26.2 L/yr

Senior Engineer
340 salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Senior Software Engineer
336 salaries
unlock blur

₹4.1 L/yr - ₹16 L/yr

Software Engineer
210 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Technical Lead
210 salaries
unlock blur

₹14 L/yr - ₹32.5 L/yr

Explore more salaries
Compare Comviva Technology with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Tech Mahindra

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