Upload Button Icon Add office photos

Filter interviews by

Eviden Software Developer Interview Questions and Answers

Updated 15 Jun 2024

Eviden Software Developer Interview Experiences

6 interviews found

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Scenario based coding questions.

Software Developer Interview Questions & Answers

user image sushanti kumbhar

posted on 15 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its sub...

  • Answered by AI
  • Q2. Inheritance examples
  • Ans. 

    Inheritance in object-oriented programming allows a class to inherit properties and behaviors from another class.

    • Child classes inherit attributes and methods from parent classes

    • Allows for code reusability and promotes a hierarchical structure

    • Examples: Animal class with Dog and Cat subclasses, Vehicle class with Car and Truck subclasses

  • Answered by AI

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 Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Software Developer Interview Questions & Answers

user image Rtr. R.Harish

posted on 4 May 2024

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

Easy round but concentration is important

Round 2 - Technical 

(1 Question)

  • Q1. Very Friendly round and they aka logics in programs
Round 3 - HR 

(1 Question)

  • Q1. Here they just check our communication skill
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Pega 8.8 and rules

Eviden interview questions for designations

 Junior Software Developer

 (1)

 Software Developer fresher

 (1)

 Software Engineer

 (7)

 Java Developer

 (2)

 Application Developer

 (1)

 Salesforce Developer

 (1)

 IOS Developer

 (1)

 Tableau Developer

 (1)

Round 1 - Aptitude Test 

Questions from java,datastructure and database.

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept java Java multithreading
  • Q2. Database sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple process.
Need to prepare basic concepts.

I was interviewed before May 2016.

Interview Questionnaire 

2 Questions

  • Q1. Write a C program
  • Ans. 

    A C program

    • Define main function

    • Declare variables

    • Use printf to output text

    • Use scanf to get user input

    • Use loops and conditionals as needed

  • Answered by AI
  • Q2. Where do you see urself in 5 yrs
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team of developers to create innovative solutions.

    • Leading a team of developers

    • Creating innovative solutions

    • Continuing to learn and grow as a developer

    • Contributing to the success of the company

    • Building strong relationships with colleagues and clients

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Each person gave their point of view and one person gave conclusion
Tips: You should not deviatell from topic and beat around the bush. You should be specific and give correct information
Duration: 35 minutes

Round: Technical Interview
Experience: All technical questions were asked
Tips: Be prepare for all the technical subjects you are writing in resume

Skills: Technical Analysis

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude, core concepts and a code

Round 2 - HR 

(2 Questions)

  • Q1. What is the one thing you learnt from college club?
  • Ans. 

    I learned the importance of teamwork and collaboration from my college club.

    • Developed strong communication skills by working with diverse group of individuals

    • Learned how to delegate tasks effectively to achieve common goals

    • Gained experience in problem-solving and conflict resolution through group projects

  • Answered by AI
  • Q2. What is the one thing you want to expereince?
  • Ans. 

    I want to experience living in a different country and immersing myself in a new culture.

    • Traveling to a foreign country and learning about their customs and traditions

    • Trying new foods and experiencing different ways of life

    • Making friends with locals and exploring the local attractions

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Difference between relational and non relational dbms
  • Ans. 

    Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.

    • Relational DBMS uses structured query language (SQL) for querying data

    • Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases

    • Relational DBMS ensures data integrity through normalization and constraints

    • Non-relational DBMS offers be...

  • Answered by AI
  • Q2. Difference betweeen class,abstract class,interface in python
  • Ans. 

    Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

    • Class is a blueprint for creating objects with attributes and methods.

    • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interface is a contract for classes to implement certain methods, bu

  • Answered by AI
  • Q3. Project related questions were asked

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic C# coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to Angular
  • Q2. Question related to ASP.NET CORE
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL , CODING QUESTION PYTHON

Round 2 - Technical 

(2 Questions)

  • Q1. BASIC SQL QUESTIOS
  • Q2. OOPS 4 PILLARS INHERITANCE ETC
Round 3 - HR 

(2 Questions)

  • Q1. TELL ME ABOUT YOURSELF
  • Q2. WHAT DO YOU KNOW ABOUT YOUR COMPANY

Eviden Interview FAQs

How many rounds are there in Eviden Software Developer interview?
Eviden interview process usually has 1-2 rounds. The most common rounds in the Eviden interview process are Technical, Aptitude Test and HR.
What are the top questions asked in Eviden Software Developer interview?

Some of the top questions asked at the Eviden Software Developer interview -

  1. Write a C progr...read more
  2. What is solid princip...read more
  3. Inheritance examp...read more

Tell us how to improve this page.

Eviden Software Developer Interview Process

based on 4 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Eviden Software Developer Salary
based on 511 salaries
₹2.3 L/yr - ₹13.5 L/yr
10% less than the average Software Developer Salary in India
View more details

Eviden Software Developer Reviews and Ratings

based on 62 reviews

4.1/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.8

Salary

3.8

Job security

4.0

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 62 Reviews and Ratings
Associate Consultant
8.5k salaries
unlock blur

₹1.9 L/yr - ₹11.5 L/yr

Consultant
3.8k salaries
unlock blur

₹8 L/yr - ₹28 L/yr

Associate
1.7k salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Senior Consultant
1.2k salaries
unlock blur

₹12 L/yr - ₹38.1 L/yr

Senior Associate
1.1k salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Explore more salaries
Compare Eviden 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