Upload Button Icon Add office photos

Filter interviews by

Eviden Technical Consultant Interview Questions and Answers

Updated 9 May 2024

Eviden Technical Consultant Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is the error you faced in current project

Interview questions from similar companies

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

I applied via Approached by Company

Round 1 - Technical 

(4 Questions)

  • Q1. Tell me about your framework
  • Ans. 

    My framework is a comprehensive set of tools, libraries, and best practices that I use to streamline the development process and ensure high-quality deliverables.

    • Utilizes design patterns such as MVC for structuring code

    • Includes libraries for common tasks like data manipulation and networking

    • Emphasizes unit testing and continuous integration for code quality

    • Integrates with popular tools like Git for version control

    • Suppo...

  • Answered by AI
  • Q2. Type of selenium waits
  • Ans. 

    Types of Selenium waits include implicit, explicit, and fluent waits.

    • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit wait: Waits for a certain condition to occur before proceeding further.

    • Fluent wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q3. Xpath and CSS difference
  • Ans. 

    XPath is used to navigate through XML documents, while CSS is used to style HTML elements.

    • XPath is more powerful and flexible for navigating XML documents

    • CSS is more commonly used for styling HTML elements

    • XPath uses path expressions to select nodes in an XML document

    • CSS uses selectors to target specific HTML elements

  • Answered by AI
  • Q4. Coding to check list

Interview Preparation Tips

Interview preparation tips for other job seekers - Share whatever you know. dont create fake answers

Skills evaluated in this interview

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

Basic English and General aptitude questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Group Discussion 

Mainly Related with English Proficiency You'll be given a topic and asked to elaborate

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Windows RT
  • Ans. 

    Windows RT is a discontinued operating system for ARM-based devices.

    • Developed by Microsoft for tablets and PCs

    • Limited to apps from Windows Store

    • Does not support traditional desktop applications

    • Discontinued in 2015

  • Answered by AI
  • Q2. Explain about Windows 8.1 (Was Newly Released at that time)
  • Ans. 

    Windows 8.1 is the updated version of Windows 8, with improvements in user interface, features, and performance.

    • Introduced Start button for easier navigation

    • Improved multitasking capabilities with split-screen view

    • Enhanced search functionality with Bing integration

    • Updated apps and better customization options

    • Increased security features like built-in antivirus software

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be based on your computer knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Delete vs Drop in sql?
  • Ans. 

    DELETE is used to remove rows from a table while keeping the table structure intact. DROP is used to remove an entire table from the database.

    • DELETE is a DML (Data Manipulation Language) command, while DROP is a DDL (Data Definition Language) command.

    • DELETE can be rolled back, while DROP cannot be rolled back.

    • Example: DELETE FROM table_name WHERE condition; DROP TABLE table_name;

  • Answered by AI
  • Q2. Autocalender, duicate vs refrence in power bi
  • Ans. 

    Autocalender creates a date table automatically, while duplicate creates a copy of a table and reference creates a linked table in Power BI.

    • Autocalender automatically generates a date table based on the data in your model.

    • Duplicate creates a copy of a table with the same data and structure.

    • Reference creates a linked table that shares the same data as the original table.

    • Autocalender is useful for quickly creating date t...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. CQRS architecture
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Is live data is life cycle aware. If it's aware what does ViewModel do?
  • Ans. 

    Yes

    • LiveData is lifecycle aware and can be used to observe changes in data.

    • ViewModel provides a way to store and manage UI-related data across configuration changes.

    • ViewModel can hold LiveData objects to provide data to the UI.

    • LiveData and ViewModel work together to ensure data consistency and prevent memory leaks.

  • Answered by AI
  • Q2. How does viewmodel survive when activity is destroyed on configuration?
  • Ans. 

    The ViewModel survives configuration changes by being retained by the system.

    • ViewModels are designed to survive configuration changes like screen rotations or language changes.

    • When an activity is destroyed and recreated, the ViewModel is not destroyed and retains its data.

    • The ViewModel is associated with the activity's lifecycle and is retained until the activity is finished.

    • The retained ViewModel instance can be acces...

  • Answered by AI
  • Q3. Advantage of mvp over mvc.
  • Ans. 

    MVP offers better separation of concerns and easier unit testing compared to MVC.

    • MVP separates the presentation layer from the business logic, making it easier to maintain and modify the codebase.

    • MVP allows for easier unit testing as the presenter can be tested independently from the view.

    • MVP provides better decoupling between components, enabling easier code reuse and scalability.

    • MVP promotes a clear separation of con...

  • Answered by AI
  • Q4. How does SSL pinning works?
  • Ans. 

    SSL pinning is a security technique that ensures a client only communicates with a server using a pre-defined public key.

    • SSL pinning involves hardcoding the server's public key in the client's code or configuration.

    • During the SSL handshake, the client checks if the server's public key matches the pinned key.

    • If the keys match, the connection is established; otherwise, it is rejected.

    • Pinning prevents man-in-the-middle at

  • Answered by AI
  • Q5. How do you achieve data security when saving data persistanly.
  • Ans. 

    Data security can be achieved through encryption, access controls, backups, and regular security audits.

    • Encrypt sensitive data using strong encryption algorithms.

    • Implement access controls to restrict unauthorized access to the data.

    • Regularly backup the data to prevent data loss.

    • Conduct regular security audits to identify and fix vulnerabilities.

    • Use secure protocols and communication channels for data transfer.

    • Implement...

  • Answered by AI
  • Q6. Where to save encription key?
  • Ans. 

    Encryption keys should be securely stored in a separate key management system.

    • Encryption keys should not be stored alongside the encrypted data.

    • Use a dedicated key management system (KMS) to store and manage encryption keys.

    • Implement strong access controls and authentication mechanisms for the KMS.

    • Consider using hardware security modules (HSMs) for added security.

    • Regularly rotate encryption keys to minimize the impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current implementation projected thoroughly.

Skills evaluated in this interview

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

(1 Question)

  • Q1. About Project and and Some Basic CAN Questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2023. 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Related to profiles
  • Q2. Related to job profile
Round 3 - HR 

(1 Question)

  • Q1. Salary and type of job
Round 4 - HR 

(1 Question)

  • Q1. Related your past experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

There will be ask 30 MCQ's in 30 minutes when I was attend for Aptitude test
It was conducted virtual

Round 3 - Coding Test 

There will be 2 coding questions asked we have to complete one of it .If we practice well very easy to clear .

Round 4 - Technical 

(7 Questions)

  • Q1. In my case Technical & HR both conducted in same time it starts with introduction and later some behavioural questions and after that some basic Technical questions.
  • Q2. 1.Tell me about yourself ?
  • Ans. 

    I am a highly motivated individual with a passion for technology and problem-solving.

    • I have a degree in Computer Science and have completed several internships in the tech industry.

    • I am proficient in programming languages such as Java and Python.

    • I enjoy working in a team environment and collaborating to find innovative solutions.

    • In my free time, I enjoy tinkering with new technologies and building personal projects.

    • I a...

  • Answered by AI
  • Q3. 2.What are your strengths & weakness?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weakness is public speaking.

    • Strengths: problem-solving (e.g. finding solutions to complex technical issues), adaptability (e.g. quickly adjusting to new technologies or work environments), teamwork (e.g. collaborating effectively with colleagues)

    • Weakness: public speaking (e.g. nervousness when presenting to large groups)

  • Answered by AI
  • Q4. 3.What are Constructors?
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • They can be used to set default values for object properties.

    • Constructors can be overloaded to accept different parameters.

    • Example: public class Car { public Car() { //default constructor } public Car(String make) { //overloaded constr

  • Answered by AI
  • Q5. 4 .Write a program on floating numbers in java?
  • Ans. 

    A program on floating numbers in Java.

    • Declare a variable with float or double data type.

    • Perform arithmetic operations on floating point numbers.

    • Use formatting options to display floating point numbers.

    • Be aware of precision and rounding errors.

  • Answered by AI
  • Q6. 5.What are your hobbies?
  • Ans. 

    I enjoy reading, hiking, and playing board games.

    • Reading: I love getting lost in a good book, especially science fiction and fantasy.

    • Hiking: I enjoy exploring new trails and challenging myself physically.

    • Board games: I like playing strategy games with friends and family, such as Settlers of Catan and Ticket to Ride.

  • Answered by AI
  • Q7. 6.Anything else you want to ask ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all basic concepts and practice some simple codes they will select you .
All the best .

Skills evaluated in this interview

Eviden Interview FAQs

How many rounds are there in Eviden Technical Consultant interview?
Eviden interview process usually has 1 rounds. The most common rounds in the Eviden interview process are Technical.
How to prepare for Eviden Technical Consultant 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 Eviden. The most common topics and skills that interviewers at Eviden expect are ABAP, Ale, Business process, Data Modeling and Data migration.

Tell us how to improve this page.

Eviden Technical Consultant Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Eviden Technical Consultant Salary
based on 25 salaries
₹9.5 L/yr - ₹30.3 L/yr
78% more than the average Technical Consultant Salary in India
View more details

Eviden Technical Consultant Reviews and Ratings

based on 3 reviews

4.2/5

Rating in categories

3.9

Skill development

4.6

Work-life balance

3.8

Salary

3.9

Job security

3.8

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 3 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