Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Eviden Associate Technical Consultant Interview Questions and Answers

Updated 19 Dec 2022

Eviden Associate Technical Consultant Interview Experiences

1 interview found

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 Jun 2022. There were 4 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 Resume tips
Round 2 - Aptitude Test 

It is little bit tough and also all question are thingable.

Round 3 - One-on-one 

(3 Questions)

  • Q1. 1.Tell me about your self. 2.Basic C and C++ questions 3.Basic SQL questions 4.Basic DBMS questions
  • Q2. They will tell Terms and condition
  • Q3. Asking about terms and condition
Round 4 - Document verification 

(1 Question)

  • Q1. Verify all documents

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your self and communication is very must.Technical knowledge also must.

Interview questions from similar companies

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was an easy round which went really smooth.

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

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iteratively calculate F(n) using F(n-1) and F(n-2).

    • Ensure the input N is within the constraints 1 <= N <= 10000.

    • Example: For N = 5, the 5th Fibonacci number is 5 (1, 1, 2, 3, 5).

  • Answered by AI
  • Q2. 

    Prime Numbers Problem Statement

    Given a positive integer N, your task is to determine and return all prime numbers less than or equal to N.

    Input:

    N = 10

    Output:

    2 3 5 7

    Example:

    Input:
    N = 20
    Out...
  • Ans. 

    Implement a function to return all prime numbers less than or equal to a given positive integer N.

    • Create a function that takes a positive integer N as input

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Return an array of all prime numbers less than or equal to N

  • Answered by AI
  • Q3. What is a merge join in SQL?
  • Ans. 

    A merge join in SQL is a method of combining two sorted datasets by matching corresponding rows based on a specified condition.

    • Merge join is used when joining two large datasets that are already sorted.

    • It is more efficient than other join methods like nested loop join or hash join for sorted datasets.

    • The join condition must be an equality condition.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.i

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The round went excellent. I really enjoyed it. Just be confident about whatever you answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Database, Basic C/C++, Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round went well. Interview depends on your basic knowledge of C/C++.

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently

    • Handle the edge cases such as empty matrices or matrices with all zero elements

    • Ensure the dimensions of the matrices are compatible

  • Answered by AI
  • Q2. 

    Problem: Count Even or Odd in Array

    Tanmay and Rohit are best buddies. Tanmay gives Rohit a challenge involving an array of N natural numbers. The task is to perform and answer a series of queries on the ...

  • Ans. 

    Count the number of even or odd numbers in a range of an array based on given queries.

    • Create an array to store the input numbers.

    • Iterate through the queries and update or count even/odd numbers based on the query type.

    • Output the count of even or odd numbers for each query of type 1 or 2.

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Despite, having a decent CG, why haven’t I got placed till day 8
  • Q2. Tell me about your life story?
  • Q3. One of the company person asked to explain my resume

Interview Preparation Tips

Round: Test
Experience: Speed Maths was easy, it was such that
silly mistakes were quite probable. It lasted for an hour. English was for 1.5
hrs. It was based on TOFEL(speaking, writing, listening)

General Tips: Criteria for getting shortlisted for
Capgemini’s stages of selection was performing well in puzzles and maths.

They did not stress on PORs or internships&#44;
neither did they take the minor into account.No case study topics asked were asked.1st years- Concentrate on CG, put fight for
Day 1, Day 2 companies

2nd years- Concentrate on CG,try learning
coding(coursera) and algorithmic and financial analytics.

Try to obtain an internship in the company
you want to get placed in. It may not be a very good intern, but should be a
meaningful one.

3rd years-Focus on CG, obtain a good
internship.



Practice maths in the last 4
months.(probability mainly)



If you want a finance company, then read newspaper regularly, try to
obtain certifications like CFA, NCFM, etc.
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: Quant was most important for the tests, fast mathematics, then technical questions. Technical questions

generally asked by the company. The tests were mostly MCQ. Some tests were there which had subjective question papers. Those subjective type tests lasted 3 hours. They would write a program to do *task* type questions. The programming

language to write the code in, was our choice. The language options were C, C++, Python, Java. Python was rarely asked

Round: Group Discussion
Tips: The skills they wanted to test was to see how well they were able to express their ideas, but without outwardly disrupting others while talking.

Round: HR Interview
Experience: The HR usually starts with “Tell me about yourself”. Then they go through the resume, and ask about the project (DDP, in this case) and internship. This was done by the HR team, just to see how the candidate is putting forth his ideas and contributions clearly. Two puzzles were given in the interview.The interview was at least 40 minutes, with 5 minutes of HR interview HR people were not interested in the depth of the resume, but rather on whether the candidate was able to talk or not. It was used to eliminate some people.
Tips: People with low CGPA had to perform exceptionally well to compensate for the low CGPA. For managerial positions, PoRs like coordships, coreships etc can be used to pitch your leadership qualities. They can start a chain of conversation that involves the work you did, on how you managed to execute the task efficiently, which ends up working in your favor.

Skill Tips: Focus on your Study.. Revise the subject that you have studied at the time of Interview
Skills: Technical Skills
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: English skill based test, it was more like a basic clearance test. There were two different rounds one of them was to listen/read and then fill up questions (approx. 45min) other one was the Telephonic test (computer generated test, approx. 15min).
Tips: Aptitude is a must, so practise
Duration: 60 minutes

Round: Group Discussion
Experience: Here the way you interact in a group and essence of your points. Personally I felt that they didn’t concentrate much on speaking skills as such.
Tips: Practise to talk in groups, current affairs  and even random topics
Duration: 15 minutes

Round: HR Interview
Experience: I was tested on basic understanding of Big Data and tested on enthusiasm
Tips: Puzzles (for most startups) and HR & resume based for others mostly.prepare things very much related to the company.

Skill Tips: Starting earlier helps . Aptitude requires some time and it is better to start atleast during summer vacation. Last two months before placements can be spent for other preparations.
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: I performed well in the written test, and there was a speaking and listening test too.  I felt quant was most important for the tests, fast mathematics, then technical questions. Technical questions generally asked by core companies. Some programming based companies also ask such technical questions.



Puzzles can help you in answering quant questions also. The tests were mostly MCQ. Some tests were there which had subjective question papers. None of the core companies had subjective type, but coding companies had such questions. 





They were write a program to do *task* type questions. The programming language to write the code in, was our choice. The language options were C, C++, Python, Java. Python was rarely asked, though.
Duration: 3 hours minutes

Round: Group Discussion
Experience: Don't quite actually remember those topics. But, skills they wanted to test was to see how well they were able to express their ideas, but without outwardly disrupting others while talking.

Round: HR Interview
Experience: The interview was at least 40 minutes, with 5 minutes of HR interview for my current work profile. 

The HR usually starts with “Tell me about yourself”. Then they go through the resume, and ask about the project (DDP, in my case) and internship. This was done by the HR team, just to see how the candidate is putting forth his ideas and contributions clearly.
Tips: Since I cleared the tests, I was allowed to appear for the interviews, but after that, the CGPA played a major role in the final selection. Hence people with low CGPA had to perform exceptionally well to compensate for the low CGPA. However, I don’t know of the internal mechanism of shortlisting, so I was of the opinion that CGPA did not result in elimination of candidates, (except for the candidates who were eliminated due to the cutoff CGPA). But it played a role in the final selection.

For managerial positions, PoRs like coordships, coreships etc can be used to pitch your leadership qualities. They can start a chain of conversation that involves the work you did, on how you managed to execute the task efficiently, which ends up working in your favour.

Round: Puzzle Interview
Experience: Two puzzles were given in the interview. I did well in both, hence got selected. Another puzzle was to measure 45 minutes of time elapsed by using two candles, both of which take 1 hour to burn out completely.

General Tips: I was weak in thermodynamics&#44; so he covered that course revision, for core placements. I prepared from the material sent by Shruti. That was all I prepared. The Coursera for R language was not that useful for me as I was looking for a managerial position.In case of resume shortlists, students who had done management, operations research or economics courses were preferred.
Otherwise, one has to justify your selection through good pitching. Finance companies are sort of open minded; they are looking for people who would do the job. Anyways, they will be providing training, so the knowledge in finance gained through independent means is not quite significant. It will, however, give an edge in the tests, as finance and quant based questions will be asked. They won’t go deep info finance.
I also suggest to freshies and second years to complete the core credited intern in the second year itself so that they can take up an intern of their choice, be it either research intern or core intern in their 3rd year summer. It offers much greater flexibility to the students. It will be useful, especially for non-core placements. I started preparing for the interviews late. I did not put pen to paper, to write down his answer for the ice-breaking questions like “Introduce yourself”. It would be better to write those answers down and get them polished, rather than trying to remember it and/or make it up spontaneously.
Skill Tips: For handling pressure, I suggest that after the interviews are over, just eat and get a good night’s sleep. Preparing/analyzing about the performance in the interview would only make you more anxious, affects sleep, and this would affect your performance in the interviews the next day. The additional one hour of preparation is not going to make a big difference.
Skills: Speaking Ability, Ability to express your ideas, Capable of managing things efficiently
College Name: IIT MADRAS

Interview Preparation Tips

Round: Resume Shortlist
Experience: A balanced resume is preferred. It helped me in the further stages of the selection process, as everything was quite based on how was my resume.

Round: Test
Experience: It was actually and English skill based test, more like a basic clearance test. Two different rounds were there:(i)Listen/read and then fill up questions (approx. 45min) (ii) Telephonic test (computer generated test, approx. 15min).

I also appeared for other companies like Auctus and Reliance. Auctus had direct interview SL and Reliance had Aptitude and Technical (Mech) approx. 30 minutes each.
Tips: Aptitude is a must, so practice.
Duration: 1 hour minute

Round: Group Discussion
Experience: They actually tested the skills of the way you interact in a group and essence of your points. Felt that they didn’t concentrate much on speaking skills as such.
Tips: Practice to talk in groups, current affairs  and even random topics.
Duration: 10-15 minutes minutes

Round: Technical Interview
Experience: Basic understanding of Big Data and tested on enthusiasm. 
For others: 

Reliance – Corrosion & welding based questions; it was mainly a technical round
Auctus – Only HR was taken
Housing – Puzzles and HR (same round)
Deloitte – Basic consult based questions on whatever was given in JD.


For core:Reliance – Corrosion engineering, welding courses and a bit of 1st year metallurgy. BTP was related to Corrosion and discussion about BTP happened.
Tips: Puzzles (for most startups) and HR & resume based for others mostly.

General Tips: Aptitude and puzzle preparation is a must. For interviews prepare things very much related to the company. (For startups knowledge related to their field might be a plus point)If people are looking for Non-Core: better that they do some good and useful non-core intern atleast once&#44; taking part in competitions will also help.



2ndyears can learn ‘R’ or any other technical stuffs which can be useful for non-core (mainly, Fin or analytics)Case studies are good to prepare for one month atleast.
Skill Tips: Starting earlier helps and I started around October. Aptitude requires some time and it is better to start atleast during summer vacation. Last two months before placements can be spent for other preparations.
Skills: English based skills, How to interact with people, Aptitude
College Name: IIT MADRAS
Motivation: Mostly based on the enthusiasm towards the field of work and the basic understanding of it.

Interview Preparation Tips

Round: Test
Experience: Simple Aptitude - just brush up basics - be quick in your solving.
Duration: 120min minutes
Total Questions: 50+10

Round: HR Interview
Experience: Pretty simple interview round - was asked few HR questions. Majorly it was a informative session where i was told about the job profile and tested whether I was willing to take up the responsibility & commitment.

College Name: IIT MADRAS
Motivation: Just applied gen. Got through.
Contribute & help others!
anonymous
You can choose to be anonymous

Eviden Interview FAQs

How many rounds are there in Eviden Associate Technical Consultant interview?
Eviden interview process usually has 4 rounds. The most common rounds in the Eviden interview process are Resume Shortlist, Aptitude Test and One-on-one Round.
What are the top questions asked in Eviden Associate Technical Consultant interview?

Some of the top questions asked at the Eviden Associate Technical Consultant interview -

  1. 1.Tell me about your self. 2.Basic C and C++ questions 3.Basic SQL questions 4....read more
  2. They will tell Terms and condit...read more
  3. Asking about terms and condit...read more

Recently Viewed

INTERVIEWS

Union Bank of India

No Interviews

CAMPUS PLACEMENT

Shivaji University, Maharashtra

SALARIES

AU Small Finance Bank

COMPANY BENEFITS

State Bank of India

No Benefits

INTERVIEWS

Aditya Birla Finance

10 top interview questions

SALARIES

Union Bank of India

INTERVIEWS

Aditya Birla Finance

No Interviews

SALARIES

Karur Vysya Bank

INTERVIEWS

Eviden

No Interviews

SALARIES

IDFC FIRST Bank

Tell us how to improve this page.

Eviden Associate Technical Consultant Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Eviden Associate Technical Consultant Salary
based on 155 salaries
₹2 L/yr - ₹10 L/yr
43% less than the average Associate Technical Consultant Salary in India
View more details

Eviden Associate Technical Consultant Reviews and Ratings

based on 20 reviews

3.7/5

Rating in categories

2.7

Skill development

3.6

Work-life balance

3.0

Salary

2.8

Job security

2.8

Company culture

2.3

Promotions

3.1

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Consultant
3.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
1.1k salaries
unlock blur

₹0 L/yr - ₹0 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