Upload Button Icon Add office photos

EdgeVerve Systems

Compare button icon Compare button icon Compare

Filter interviews by

EdgeVerve Systems Interview Questions, Process, and Tips

Updated 6 Feb 2025

Top EdgeVerve Systems Interview Questions and Answers

View all 16 questions

EdgeVerve Systems Interview Experiences

Popular Designations

61 interviews found

Round 1 - Coding Test 

3 questions were asked on implementation in 1 and half hour. All were simple questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Simple questions on sorting, SQL, pandas, python, OOPs were asked.
  • Q2. Find second maximum value in the array. Difference between left union and outer union.
  • Ans. 

    Finding second maximum value in an array and calculating the difference between left and outer union.

    • Sort the array in descending order and return the second element

    • For left union, find the elements that are present in the first array but not in the second

    • For outer union, find the elements that are present in either of the arrays but not in both

  • Answered by AI
  • Q3. Difference between left union and outer union.
  • Ans. 

    Left union and outer union are two types of SQL joins. Left union returns all rows from the left table and matching rows from the right table. Outer union returns all rows from both tables.

    • Left union is also known as left join.

    • Outer union is also known as full outer join.

    • Left union returns all rows from the left table and matching rows from the right table.

    • Outer union returns all rows from both tables.

    • If there is no ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Complete Interviewbit questions and HR questions given.

Skills evaluated in this interview

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (2)

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
EdgeVerve Systems Interview Questions and Answers for Freshers
illustration image
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.

Product Developer Interview Questions asked at other Companies

Q1. What is the difference between GET and POST methods in HTTP?
View answer (1)

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
  • 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

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)

EdgeVerve Systems interview questions for popular designations

 Product Engineer

 (7)

 Associate Product Developer

 (6)

 Product Developer

 (6)

 Software Developer

 (4)

 Research and Development

 (3)

 Technology Analyst

 (3)

 Software Engineer

 (2)

 Senior Member of Technical Staff

 (2)

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 map = new HashMap<>(); map.put("apple", 5);

  • Answered by AI

Skills evaluated in this interview

Product Developer Interview Questions asked at other Companies

Q1. What is the difference between GET and POST methods in HTTP?
View answer (1)

Get interview-ready with Top EdgeVerve Systems Interview Questions

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

Senior Analyst Interview Questions asked at other Companies

Q1. Explain 3 statement financial model Calculating discount rate Could you walk me through the DCF model? Other valuation methods. What PE is ideal? What is the other matrix to value the company? Difference between IRR and CAGR. What is Bond Y... read more
View answer (1)

Jobs at EdgeVerve Systems

View all

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
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.

Technology Analyst Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (1)

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 ..

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 coding question
2 - easy
1- Medium

Round 2 - Technical 

(4 Questions)

  • Q1. Java , OOPs, DBMS, Project
  • Q2. 1 coding question - java language
  • Q3. Java Oops questions - baisc
  • Q4. SQL questions - basic
Round 3 - HR 

(1 Question)

  • Q1. Normal HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Production Engineer Interview Questions asked at other Companies

Q1. How to solve the problem in robot means how to detect fault?
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

3 question/3 hour in hacker rank

Round 2 - Technical 

(1 Question)

  • Q1. Question based on stack and string, and oops concepts

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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. explain some design patterns like chain of responsibili...read more
  2. Find second maximum value in the array. Difference between left union and outer...read more
  3. Difference between left union and outer uni...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.

Recently Viewed

INTERVIEWS

EdgeVerve Systems

No Interviews

INTERVIEWS

Infosys Consulting

No Interviews

LIST OF COMPANIES

Equitas Small Finance Bank

Overview

LIST OF COMPANIES

Ujjivan Small Finance Bank

Overview

REVIEWS

Cognizant

No Reviews

REVIEWS

Cognizant

No Reviews

INTERVIEWS

Infosys Consulting

No Interviews

INTERVIEWS

Infosys Consulting

No Interviews

REVIEWS

Cognizant

No Reviews

Tell us how to improve this page.

EdgeVerve Systems Interview Process

based on 34 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
View all

EdgeVerve Systems Reviews and Ratings

based on 492 reviews

3.3/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

2.7

Salary

3.9

Job security

3.2

Company culture

2.3

Promotions

3.0

Work satisfaction

Explore 492 Reviews and Ratings
Data Scientist

Chennai,

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Hiring DevOps Engineer For Finacle

Hyderabad / Secunderabad,

Chennai

+1

4-9 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
382 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
282 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
211 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
163 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Engineer
153 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare EdgeVerve Systems with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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