Upload Button Icon Add office photos

EdgeVerve Systems

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

EdgeVerve Systems Research and Development Interview Questions and Answers

Updated 18 Sep 2016

EdgeVerve Systems Research and Development Interview Experiences

3 interviews found

I applied via Campus Placement

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself
  • Ans. 

    I am a highly motivated and experienced researcher with a passion for innovation and problem-solving.

    • PhD in Chemistry with 5+ years of experience in pharmaceutical research

    • Published multiple papers in peer-reviewed journals

    • Skilled in experimental design, data analysis, and project management

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The first question was to modify the given input string based on a sequence of string operations given.I coded in C and used string library functions like strstr to make my job easier but i recommend coding such questions in a language like java or python to simplify the implementation part.The second and third question were testing the mathematical skills and were easy to code. 2 and a half hours is too much for such a test.
Tips: ->Coding in an object oriented language like c++ or python is useful.

Duration: 2hr 30mins minutes
Total Questions: 3

Round: HR Interview
Experience: I was asked about my future plans.I was asked questions about my previous projects and some questions about them like why i had to select certain open source software over the others.
Tips: Confidence is the key here.Also give the interviewers an idea of what exactly you expect out of this internship.Be ready to tell them about the field you are interested in,your past projects,what you like about their company,etc.


Skill Tips: Only one word..confidence
Skills: clear picture of what you want to be in the future, What You Have Learnt Till Now, Knowledge Of Your Resume Points, How Much You Are Interested In The Company?, Aptitude, Technical Skills
Duration: 2
College Name: IIT Madras

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: Wrote a resume and was placed with it
Tips: Make your strengths and future aspects clear.

Round: Technical Interview
Experience: Telephonic interview was interesting.
Tips: Know what you have studied, keep calm and answer to the best of your knowledge. Do not attemt to know more than you do.

General Tips: Study and be calm
Skill Tips: Study and prepare well
Skills: Graph Theory, Computer Science, Computer Architecture, Compilers, Computer Architecture, Basic Knowledge
Duration: 2
College Name: IIT Madras
Motivation: Interested in its research prospects

Research and Development Interview Questions Asked at Other Companies

Q1. Explain how you will place heat and light sensors in a room with ... read more
asked in Adobe
Q2. 100 white eggs and 100 black eggs are distributed in 2 bags and n ... read more
Q3. What is mean by enatiomer and diastereomers
Q4. What is value of H1 value of amine proton ?
Q5. Draw the structure of ethyl acetate and interpret NMR value

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. Tell us about yourself
  • Ans. 

    I am a highly motivated and experienced researcher with a passion for innovation and problem-solving.

    • PhD in Chemistry with 5+ years of experience in pharmaceutical research

    • Published multiple papers in peer-reviewed journals

    • Skilled in experimental design, data analysis, and project management

  • Answered by AI
  • Q2. What are your interests? Which is your favourite course/topic in CS?
  • Ans. 

    My interests include artificial intelligence and machine learning. My favorite topic in CS is data mining.

    • Interest in artificial intelligence and machine learning

    • Favorite topic in CS is data mining

    • Enjoy exploring algorithms and data analysis techniques

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were easy, if you know basics.
Tips: 1. Learn syntax of all the functions and everything in the programming language you are comfortable with.(preferably C/C++ or Java).
2. Be thorough with basics like linked list, stack, queue, tree, pointers, etc.
Duration: 150 minutes
Total Questions: 3

Round: Technical Interview
Experience: First, they asked about my interests.
Then on that particular topic, I told them as my interest.
And them some questions based on basic data structures.
Lastly, they asked about my previous work experiences(if any) and my previous interviews for the internship.

Tips: Be confident about what you say.
Try to explain what you know of a topic/data structure clearly.

Skills:
Duration: 2
College Name: IIT Madras

Interview questions from similar companies

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

INTERVIEWS

Infosys Consulting

No Interviews

LIST OF COMPANIES

Equitas Small Finance Bank

Overview

LIST OF COMPANIES

Ujjivan Small Finance Bank

Overview

INTERVIEWS

EdgeVerve Systems

No Interviews

REVIEWS

Cognizant

No Reviews

REVIEWS

Cognizant

No Reviews

INTERVIEWS

Infosys Consulting

No Interviews

INTERVIEWS

Infosys Consulting

No Interviews

REVIEWS

Cognizant

No Reviews

LIST OF COMPANIES

Koch Business Solutions

Locations

Tell us how to improve this page.

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
 • 791 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
View all
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