AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Comviva Technology

Compare button icon Compare button icon Compare
3.1

based on 855 Reviews

Play video Play video Video summary
  • About
  • Reviews
    855
  • Salaries
    5.5k
  • Interviews
    78
  • Jobs
    156
  • Benefits
    82
  • Photos
    1

Filter interviews by

Comviva Technology Product Developer Interview Questions and Answers

Updated 11 Jun 2024

Comviva Technology Product Developer Interview Experiences

2 interviews found

Product Developer Interview Questions & Answers

user image Anonymous

posted on 1 Sep 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2023. 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 

(7 Questions)

  • Q1. This was a oncampus opportunity for 6 months to 1 year of experience professional.
  • Add your answer
  • Q2. Tell me about yourself
  • Add your answer
  • Q3. What is your favorite programming language
  • Ans. 

    My favorite programming language is Python because of its simplicity, readability, and versatility.

    • Simplicity of syntax makes it easy to learn and use

    • Readability allows for efficient collaboration with other developers

    • Versatility in application across various domains such as web development, data analysis, and automation

  • Answered by AI
    Add your answer
  • Q4. What is heap and stack memory
  • Ans. 

    Heap and stack memory are two types of memory storage in computer systems. Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

    • Heap memory is used for storing objects that are created at runtime and can be accessed randomly.

    • Stack memory is used for storing local variables and function call information.

    • Example: When a new object is created using 'new' keyword in Jav...

  • Answered by AI
    Add your answer
  • Q5. What's is template and literal
  • Ans. 

    A template is a pre-designed format used as a starting point for a document or file. A literal is a value that is written exactly as it is.

    • Template: Used as a starting point for documents or files

    • Literal: Value written exactly as it is

    • Example: Template for a resume, literal value 'Hello World'

  • Answered by AI
    Add your answer
  • Q6. What's is functional components and class components
  • Ans. 

    Functional components are stateless components in React that are defined as functions, while class components are stateful components defined as ES6 classes.

    • Functional components are simpler and easier to read/write compared to class components

    • Functional components do not have access to lifecycle methods or state, while class components do

    • Class components can have local state and use lifecycle methods like componentDid...

  • Answered by AI
    Add your answer
  • Q7. For problem solving abilities Find the frequency of each element present in the string
  • Ans. 

    Count the frequency of each element in a string

    • Create a dictionary to store the count of each element

    • Iterate through the string and update the count in the dictionary

    • Return the dictionary with frequencies of each element

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume and solve 100 prep insta question

Skills evaluated in this interview

Anonymous

Product Developer Interview Questions & Answers

user image Anonymous

posted on 11 Jun 2024

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

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Assignment 

Online assessment 2 coding questions and mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. Questions about operating system
  • Add your answer
  • Q2. Questions about Database
  • Add your answer
Anonymous

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Comviva Technology?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Brijesh Mishra

posted on 7 Jul 2017

Interview Questionnaire 

1 Question

  • Q1. Runtime pollymorphism
  • Add your answer

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

Anonymous
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 15 Sep 2021

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.

    • Return the maximum sum as the result.

    • Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.

  • Answered by AI
    Add your answer
  • Q2. 

    Add Two Numbers as Linked Lists

    You are given two singly linked lists, where each list represents a positive number without any leading zeros.

    Your task is to add these two numbers and return the sum as ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry

    • Create a new linked list to store the sum

    • Handle cases where one list is longer than the other

    • Consider edge cases like carry at the end of addition

  • Answered by AI
    Add your answer
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was a normal discussion about the role, the job expectations and about the company culture.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 8 CGPANewgen Software interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, OOPS, Dynamic Programming, AptitudeTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.

Application resume tips for other job seekers

Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
company Logo

Software Developer Interview Questions & Answers

Test Yantra Software Solutions user image Anonymous

posted on 20 Feb 2021

I applied via Recruitment Consultant and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Method overloading, method overriding, life cycle of thread,oops concepts
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 4 rounds. 1. Technical written test, here, pattern, string, array questions were asked. 2.Face to face .
3. Manager round, here scenario based questions on jdbc,hybernate and other family background details.
4. HR round.
Anonymous
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 28 Dec 2021

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked the multiple questions regarding to my profile likr about the project , skills, domain and about your future expectations.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus to the fundamentals and be confident.
Stick with your resume
Anonymous
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 18 May 2021

I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics on java
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the basics on which you are working or learned and the profile they have offered. Be brave and don't be get scared by seeing the interviewer and the way he asking questions.
Anonymous
Are these interview questions helpful?
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 26 Nov 2020

I applied via Naukri.com and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Servlet life cycle, bubble sort, quick sort, binary search, how can a software ensure GDPR rules being followed, SQL queries (second highest salary)
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - you will need to give a psychometric test, some beginner sometimes mediocre level programming test and final technical interview which may last till an hour. Do read about 1 or 2 Newgen products before going for the interview. They will definitely ask. Just be confident.Offer letter generally comes within 2 weeks. All the best !!
Anonymous
company Logo

Software Developer Interview Questions & Answers

Test Yantra Software Solutions user image Anonymous

posted on 23 Nov 2021

Interview Questionnaire 

1 Question

  • Q1. How old are you?
  • Ans. 

    I am in my late twenties, which gives me a blend of youthful energy and professional experience in software development.

    • Age can influence perspective; for example, younger developers may be more familiar with recent technologies.

    • Experience matters; I've worked on projects that span several years, enhancing my skills.

    • Being in my twenties allows me to adapt quickly to new trends in the tech industry.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - any one can do it yes i am hay and thanks to listing me hey
Anonymous
company Logo

Software Developer Interview Questions & Answers

Sonata Software user image Anonymous

posted on 10 Jun 2022

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

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Real time questions on sql and power bi ssis
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion when cam be joined
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go good assessment on employees suggested purely
Anonymous
More about working at Comviva Technology
  • HQ - Gurgaon,Haryana, India
  • IT Services & Consulting
  • 1k-5k Employees (India)
  • Internet
  • Telecom

Comviva Technology Interview FAQs

How many rounds are there in Comviva Technology Product Developer interview?
Comviva Technology interview process usually has 2 rounds. The most common rounds in the Comviva Technology interview process are Technical, Resume Shortlist and Assignment.
How to prepare for Comviva Technology Product 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 MySQL, Oracle, PHP, Perl and Customer Management.
What are the top questions asked in Comviva Technology Product Developer interview?

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

  1. What's is functional components and class compone...read more
  2. For problem solving abilities Find the frequency of each element present in the...read more
  3. What is your favorite programming langu...read more

Tell us how to improve this page.

Comviva Technology Interviews By Designations

  • Comviva Technology Product Development Engineer Interview Questions
  • Comviva Technology Software Developer Interview Questions
  • Comviva Technology Senior Engineer Interview Questions
  • Comviva Technology Software Engineer Interview Questions
  • Comviva Technology Technical Lead Interview Questions
  • Comviva Technology Senior Technical Manager Interview Questions
  • Comviva Technology Software Engineer Trainee Interview Questions
  • Comviva Technology Manager Interview Questions
  • Show more
  • Comviva Technology Engineer Trainee Interview Questions
  • Comviva Technology Trainee Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Java Developer Interview Questions
  • Project Engineer Interview Questions
  • Web Developer Interview Questions
  • Senior Software Developer Interview Questions
  • Application Developer Interview Questions
  • Salesforce Developer Interview Questions
  • Lead Engineer Interview Questions
  • Show more
  • Developer Interview Questions
  • Plsql Developer Interview Questions

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

ITC Infotech
ITC Infotech Interview Questions
3.7
 • 366 Interviews
Newgen Software Technologies
Newgen Software Technologies Interview Questions
3.8
 • 192 Interviews
3i Infotech
3i Infotech Interview Questions
3.5
 • 150 Interviews
Happiest Minds Technologies
Happiest Minds Technologies Interview Questions
3.6
 • 139 Interviews
Microland
Microland Interview Questions
3.5
 • 137 Interviews
Test Yantra Software Solutions
Test Yantra Software Solutions Interview Questions
3.1
 • 131 Interviews
Sify Technologies
Sify Technologies Interview Questions
3.8
 • 128 Interviews
Mastek
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all
Comviva Technology Product Developer Salary
based on 75 salaries
₹6 L/yr - ₹8.1 L/yr
33% less than the average Product Developer Salary in India
View more details

Comviva Technology Product Developer Reviews and Ratings

based on 9 reviews

3.3/5

Rating in categories

2.9

Skill development

3.3

Work-life balance

2.7

Salary

3.6

Job security

3.4

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 9 Reviews and Ratings
Product Developer Jobs at Comviva Technology
Comviva Technology
Product Developer

Gurgaon / Gurugram

2-5 Yrs

Not Disclosed

Comviva Technology
Product Developer

Gurgaon / Gurugram

0-2 Yrs

₹ 6.5-7 LPA

Explore more jobs
Comviva Technology Salaries in India
Technical Lead
469 salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Senior Engineer
354 salaries
unlock blur

₹4.2 L/yr - ₹14.5 L/yr

Senior Software Engineer
342 salaries
unlock blur

₹4.1 L/yr - ₹15 L/yr

Senior Technical Lead
247 salaries
unlock blur

₹12.2 L/yr - ₹31.2 L/yr

Software Engineer
217 salaries
unlock blur

₹3 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Comviva Technology with
ITC Infotech

ITC Infotech

3.7
Compare
3i Infotech

3i Infotech

3.4
Compare
Sify Technologies

Sify Technologies

3.8
Compare
Microland

Microland

3.5
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Comviva Technology Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter