Upload Button Icon Add office photos

EdgeVerve Systems

Compare button icon Compare button icon Compare

Filter interviews by

EdgeVerve Systems Interview Questions and Answers

Updated 4 Jul 2025
Popular Designations

23 Interview questions

A Data Entry Operator was asked 1mo ago
Q. Why are you interested in the data entry operator role?
Ans. 

I am drawn to the data entry operator role due to my passion for accuracy, organization, and the importance of data in decision-making.

  • I have a strong attention to detail, which ensures that data is entered accurately and efficiently.

  • I enjoy working with data and find satisfaction in organizing information systematically.

  • In my previous role, I improved data entry speed by 20% through effective time management and ...

View all Data Entry Operator interview questions
A Data Entry Operator was asked 1mo ago
Q. What experience do you have with data entry?
Ans. 

I have extensive experience in data entry, focusing on accuracy, efficiency, and attention to detail in various roles.

  • Worked as a data entry clerk for two years, managing large volumes of information daily.

  • Utilized software like Microsoft Excel and Google Sheets for data organization and analysis.

  • Maintained a 98% accuracy rate in data entry tasks, ensuring high-quality results.

  • Handled sensitive information while a...

View all Data Entry Operator interview questions
A Data Entry Operator was asked 1mo ago
Q. Describe your typing speed and accuracy.
Ans. 

I have a typing speed of 75 WPM with 98% accuracy, ensuring efficient and precise data entry.

  • Consistently achieve a typing speed of 75 words per minute (WPM).

  • Maintain an accuracy rate of 98%, minimizing errors in data entry.

  • Regularly practice typing through online platforms to improve speed and accuracy.

  • Utilize keyboard shortcuts to enhance efficiency during data entry tasks.

  • Completed a data entry project with ove...

View all Data Entry Operator interview questions
A Technical Lead was asked 3mo ago
Q. Explain code on interview
Ans. 

Explain code during an interview by breaking down its functionality, structure, and purpose clearly.

  • Start with an overview of what the code is intended to do.

  • Break down the code into smaller sections, explaining each part.

  • Use comments in the code to highlight important lines or logic.

  • Provide examples of input and expected output to illustrate functionality.

  • Discuss any algorithms or data structures used and their s...

View all Technical Lead interview questions

What people are saying about EdgeVerve Systems

View All
hardwolf
Verified Icon
2w (edited)
currently not working
Which is the best company for the long term. As gainwell technologies are giving permanent WFH while edgeverve is hybrid. Also gainwell technologies is in the healthcare domain while edgeverve is in the financial domain. Please suggest your thoughts. The position is for 8+years of experience. Edgeverve is given the team lead role while gainwell technologies given the professional 2 roles. Edgeverve has given less CTC compared to Gainwell technologies.
Gainwell technologies
0%
Edgeverv
0%
20 participants . poll closed
Got a question about EdgeVerve Systems?
Ask anonymously on communities.
A Senior Analyst was asked 8mo ago
Q. How will you improve customer retention?
Ans. 

I will improve customer retention by implementing personalized communication strategies and enhancing customer experience.

  • Implement personalized communication strategies to make customers feel valued and understood

  • Enhance customer experience by providing exceptional service and addressing any issues promptly

  • Offer loyalty programs or incentives to encourage repeat business

  • Gather feedback from customers to understan...

View all Senior Analyst interview questions
A Product Developer was asked 10mo ago
Q. Describe a concurrent hashmap.
Ans. 

Concurrent hashmap is a thread-safe version of hashmap in Java, allowing multiple threads to access and modify it concurrently.

  • ConcurrentHashMap was introduced in Java 5 to address the thread-safety issue of HashMap.

  • It allows multiple threads to read and write to the map concurrently without causing a ConcurrentModificationException.

  • It achieves thread-safety by dividing the map into segments, each guarded by a sep...

View all Product Developer interview questions
A Product Developer was asked 10mo ago
Q. What is a hashmap?
Ans. 

HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

  • HashMap is part of the Java Collections Framework.

  • It uses hashing to store and retrieve elements efficiently.

  • Each key in a HashMap must be unique.

  • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("apple", 5);

View all Product Developer interview questions
Are these interview questions helpful?
An Associate Product Developer was asked 10mo ago
Q. What are your salary expectations?
Ans. 

My salary expectations are based on my experience, skills, and the industry standard for this position.

  • Research industry standards for Associate Product Developer salaries

  • Consider my experience and skills when determining salary expectations

  • Be prepared to negotiate based on the company's offer and benefits package

View all Associate Product Developer interview questions
A C Developer was asked 11mo ago
Q. How do you find the number with the maximum occurrences in an array?
Ans. 

Find the number with the highest frequency in an array of strings.

  • Create a map to store the frequency of each number in the array.

  • Iterate through the array and update the frequency in the map.

  • Find the number with the highest frequency in the map.

View all C Developer interview questions
A C Developer was asked 11mo ago
Q. Given a program, find the bug.
Ans. 

The program contains a bug that leads to incorrect output or crashes during execution.

  • Check for uninitialized variables that may cause undefined behavior.

  • Ensure proper bounds checking when accessing array elements to avoid out-of-bounds errors.

  • Look for memory leaks or improper memory management, especially with dynamic allocations.

  • Verify that all loops have correct termination conditions to prevent infinite loops.

View all C Developer interview questions

EdgeVerve Systems Interview Experiences

65 interviews found

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

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

  • Q1. Coding round 3 questions, 1. maximum circular subarray sum, 2. occurence of string in array, 3. similar to fizzbuzz
  • Q2. Longest substring with unique characters, junit mockito, cicd , git command, rebase, fork vs branch, java 8 basics, optional class, stream api usage, access modifiers, global exceptional handling, springbo...
  • Q3. Managerial round: anything you have worked on except java like deployment or devops, or automation testing or rpa

Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Name,intrest,list,array,hashing

Round 2 - HR 

(2 Questions)

  • Q1. Tell me abt urself
  • Q2. Why should we hire u
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There were 3 hackerrank questions two was easy level one medium.

Round 2 - Technical 

(1 Question)

  • Q1. Majorly focused on OOPS concepts.

C Developer Interview Questions & Answers

user image Anonymous

posted on 26 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test with 3 basic questions on string and array

Round 2 - Technical 

(3 Questions)

  • Q1. Given program to find bug
  • Ans. 

    The program contains a bug that leads to incorrect output or crashes during execution.

    • Check for uninitialized variables that may cause undefined behavior.

    • Ensure proper bounds checking when accessing array elements to avoid out-of-bounds errors.

    • Look for memory leaks or improper memory management, especially with dynamic allocations.

    • Verify that all loops have correct termination conditions to prevent infinite loops.

  • Answered by AI
  • Q2. Find max occurance number in array
  • Ans. 

    Find the number with the highest frequency in an array of strings.

    • Create a map to store the frequency of each number in the array.

    • Iterate through the array and update the frequency in the map.

    • Find the number with the highest frequency in the map.

  • Answered by AI
  • Q3. Asked basic c++ and SQL questions. Also some questions related to banking

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Describe concurrent hashmap
  • Ans. 

    Concurrent hashmap is a thread-safe version of hashmap in Java, allowing multiple threads to access and modify it concurrently.

    • ConcurrentHashMap was introduced in Java 5 to address the thread-safety issue of HashMap.

    • It allows multiple threads to read and write to the map concurrently without causing a ConcurrentModificationException.

    • It achieves thread-safety by dividing the map into segments, each guarded by a separate...

  • Answered by AI
  • Q2. What is the hashmap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections Framework.

    • It uses hashing to store and retrieve elements efficiently.

    • Each key in a HashMap must be unique.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("apple", 5);

  • Answered by AI

Skills evaluated in this interview

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

Amazon supplier portal

Round 2 - HR 

(1 Question)

  • Q1. How will you improve customer retention
  • Ans. 

    I will improve customer retention by implementing personalized communication strategies and enhancing customer experience.

    • Implement personalized communication strategies to make customers feel valued and understood

    • Enhance customer experience by providing exceptional service and addressing any issues promptly

    • Offer loyalty programs or incentives to encourage repeat business

    • Gather feedback from customers to understand the...

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test has questions from quants, logic and English

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to job profile handled in the past
  • Q2. Subject related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have relevant knowledge for the profile
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Why are you interested in data entry operator
  • Ans. 

    I am drawn to the data entry operator role due to my passion for accuracy, organization, and the importance of data in decision-making.

    • I have a strong attention to detail, which ensures that data is entered accurately and efficiently.

    • I enjoy working with data and find satisfaction in organizing information systematically.

    • In my previous role, I improved data entry speed by 20% through effective time management and prior...

  • Answered by AI
  • Q2. Describe your typing speed and accuracy
  • Ans. 

    I have a typing speed of 75 WPM with 98% accuracy, ensuring efficient and precise data entry.

    • Consistently achieve a typing speed of 75 words per minute (WPM).

    • Maintain an accuracy rate of 98%, minimizing errors in data entry.

    • Regularly practice typing through online platforms to improve speed and accuracy.

    • Utilize keyboard shortcuts to enhance efficiency during data entry tasks.

    • Completed a data entry project with over 10,...

  • Answered by AI
  • Q3. What experience do you have with data entry
  • Ans. 

    I have extensive experience in data entry, focusing on accuracy, efficiency, and attention to detail in various roles.

    • Worked as a data entry clerk for two years, managing large volumes of information daily.

    • Utilized software like Microsoft Excel and Google Sheets for data organization and analysis.

    • Maintained a 98% accuracy rate in data entry tasks, ensuring high-quality results.

    • Handled sensitive information while adheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your resume and cover letter to each specific job
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good but questions were hard, I was given exam for Android developer and portal did not have kotlin compiler which is irritated.

Software Developer Interview Questions & Answers

user image sandeep boddu

posted on 15 Feb 2024

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

Online hacker rank assessment

Round 2 - Technical 

(3 Questions)

  • Q1. Online interview with live coding
  • Q2. All about oops concepts
  • Q3. About python regex
Round 3 - HR 

(1 Question)

  • Q1. Basic HR round ..

EdgeVerve Systems Interview FAQs

How many rounds are there in EdgeVerve Systems interview?
EdgeVerve Systems interview process usually has 2-3 rounds. The most common rounds in the EdgeVerve Systems interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for EdgeVerve Systems 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 EdgeVerve Systems. The most common topics and skills that interviewers at EdgeVerve Systems expect are C++, C, Data Structures, Linux and Python.
What are the top questions asked in EdgeVerve Systems interview?

Some of the top questions asked at the EdgeVerve Systems interview -

  1. given a array of n elements print all the element's index which have greater va...read more
  2. appropriate data structure for counting frequency of each word in a very very l...read more
  3. explain some design patterns like chain of responsibili...read more
How long is the EdgeVerve Systems interview process?

The duration of EdgeVerve Systems 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 38 interview experiences

Difficulty level

Easy 8%
Moderate 83%
Hard 8%

Duration

Less than 2 weeks 56%
2-4 weeks 24%
4-6 weeks 16%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 113 Interviews
Atlassian Interview Questions
3.4
 • 92 Interviews
Temenos Interview Questions
3.1
 • 91 Interviews
NICE Interview Questions
3.5
 • 88 Interviews
Wolters Kluwer Interview Questions
3.9
 • 87 Interviews
Nutanix Interview Questions
3.8
 • 79 Interviews
View all

EdgeVerve Systems Reviews and Ratings

based on 533 reviews

3.2/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

2.7

Salary

3.9

Job security

3.2

Company culture

2.4

Promotions

3.0

Work satisfaction

Explore 533 Reviews and Ratings
Technical Lead
291 salaries
unlock blur

₹12.5 L/yr - ₹20 L/yr

Technology Analyst
240 salaries
unlock blur

₹10.3 L/yr - ₹18.6 L/yr

Product Engineer
178 salaries
unlock blur

₹5 L/yr - ₹10.4 L/yr

Product Developer
158 salaries
unlock blur

₹6 L/yr - ₹8.4 L/yr

Associate Product Developer
142 salaries
unlock blur

₹6 L/yr - ₹9.2 L/yr

Explore more salaries
Compare EdgeVerve Systems with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

NextComm Corporation

4.9
Compare

Temenos

3.1
Compare
write
Share an Interview