Upload Button Icon Add office photos

Eviden

Compare button icon Compare button icon Compare

Filter interviews by

Eviden Technical Architect Interview Questions and Answers

Updated 16 May 2024

Eviden Technical Architect Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. During the interview, I was questioned about microservice design patterns and was prompted to explain the system design of a project. Additionally, I was asked about the process of migrating an on-premises...

Interview Preparation Tips

Interview preparation tips for other job seekers - Certainly! It sounds like you're interested in deepening your understanding of software development practices. Exploring the 12 Factor principles can provide insights into building robust and scalable applications. Additionally, delving into microservices design patterns can help you understand how to architect distributed systems effectively. Practicing system design exercises is a great way to apply theoretical knowledge to real-world scenarios, honing your ability to create efficient and scalable software solutions.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Design a system with one liner like I want to transfer money from bank A to bank B
  • Ans. 

    Design a system to transfer money from bank A to bank B

    • Implement a secure authentication system for both banks

    • Set up a secure connection between the two banks for data transfer

    • Create a transaction processing system to handle the transfer of funds

    • Implement error handling and logging mechanisms for tracking transactions

    • Ensure compliance with financial regulations and data protection laws

  • Answered by AI

Skills evaluated in this interview

Technical Architect Interview Questions Asked at Other Companies

asked in IBM
Q1. How to manage clients, how to handle critical issues with example
asked in IBM
Q2. Given a scenario to design the architecture for IoT-based problem ... read more
asked in IBM
Q3. how you handle non functional requirements ? how you do capacity ... read more
asked in IBM
Q4. What modernizations have you implemented on Mainframes?
asked in IBM
Q5. What architectural principles or methodologies do you know?

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Eviden?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. DevOps, CI/CD, Cloud, Security on very specific points in your day-to-day activities

Interview Preparation Tips

Interview preparation tips for other job seekers - The requirements are generic around all technologies both in and out of JD. At higher levels as well they have an logical reasoning, aptitude test, which is tough to comprehend.

Interview Questionnaire 

1 Question

  • Q1. Factory pattern
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 2 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. Interview was with the Sr. Manager. Questions were mostly basic of Azure. There main focus was on Cosmos Db. They want to start a new project on Cosmos so were looking for that knowledge.
  • Q2. What role and responsibilities you hadlre. Have you worked on Microservices?

Interview Preparation Tips

Interview preparation tips for other job seekers - Cosmos db is necessity now a days as most of the companies are lookgin for it.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Describe 5 non functional requirements
  • Ans. 

    Non functional requirements are criteria that specify how a system should behave, rather than what it should do.

    • Performance - system should respond within 2 seconds for all user interactions

    • Scalability - system should be able to handle 1000 concurrent users

    • Reliability - system should have a 99.99% uptime

    • Security - system should encrypt all sensitive data

    • Usability - system should have a user-friendly interface

  • Answered by AI
  • Q2. How will you improve performance of legacy app which has to work with your latest microservice.
  • Ans. 

    Improve legacy app performance by optimizing code, implementing caching, and scaling resources.

    • Optimize code by identifying and removing bottlenecks

    • Implement caching to reduce database calls and improve response time

    • Scale resources by using containers or serverless architecture

    • Use asynchronous processing for long-running tasks

    • Upgrade hardware or infrastructure if necessary

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain security in microservices
  • Ans. 

    Security in microservices involves implementing authentication, authorization, encryption, and monitoring to protect data and services.

    • Implement authentication and authorization mechanisms to control access to microservices.

    • Use encryption to secure communication between microservices and external clients.

    • Implement monitoring and logging to detect and respond to security incidents.

    • Consider using API gateways for central...

  • Answered by AI
  • Q2. Describe microservices architecture for a wealth management app
  • Ans. 

    Microservices architecture for a wealth management app involves breaking down the application into smaller, independent services.

    • Each microservice focuses on a specific business function, such as client onboarding, portfolio management, or reporting.

    • Services communicate through APIs, allowing for flexibility and scalability.

    • Each microservice can be developed, deployed, and scaled independently, leading to faster develo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Technical Architect interview:
  • Java
  • Microservices

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Theoretical questions on dot net and database
Round 2 - One-on-one 

(2 Questions)

  • Q1. Design an elaborate user access control system, with granular control from pages, controls, data, and response masking.
  • Ans. 

    Design a user access control system with granular control for pages, controls, data, and response masking.

    • Implement role-based access control (RBAC) to assign permissions to users based on their roles.

    • Utilize attribute-based access control (ABAC) for more fine-grained control over access to specific pages, controls, and data.

    • Implement data masking techniques to ensure sensitive information is not exposed in responses.

    • U...

  • Answered by AI
  • Q2. How would you optimize the sparse array access.
  • Ans. 

    Optimizing sparse array access involves using data structures like hash maps or trees to efficiently store and retrieve values.

    • Use a hash map to store only non-null values and their corresponding indices.

    • Implement a tree-based data structure like a binary search tree or a trie for faster access to sparse array elements.

    • Consider using a compressed sparse row (CSR) format for large sparse arrays to reduce memory usage an...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Expectations and offer

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Spring boot, microservice
  • Q2. Xml , json different

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not be over confidence, communication should be clear to understand

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Knowledge of C language and JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your answers.

Eviden Interview FAQs

How many rounds are there in Eviden Technical Architect 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 Architect 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 Python, Computer Science, Data Modeling, Information Technology and SQL.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Eviden Technical Architect Salary
based on 48 salaries
₹15 L/yr - ₹34.6 L/yr
26% less than the average Technical Architect Salary in India
View more details

Eviden Technical Architect Reviews and Ratings

based on 3 reviews

2.9/5

Rating in categories

2.0

Skill development

2.9

Work-life balance

2.9

Salary

2.0

Job security

3.0

Company culture

2.9

Promotions

2.0

Work satisfaction

Explore 3 Reviews and Ratings
Technical Architect - Snowflake

Pune

10-15 Yrs

₹ 16-23 LPA

Technical Architect - GCP AI (Gemini)

Bangalore / Bengaluru

10-12 Yrs

Not Disclosed

Technical Architect - Azure AI (OpenAI)

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Explore more jobs
Associate Consultant
8.2k salaries
unlock blur

₹3.6 L/yr - ₹9.5 L/yr

Consultant
3.8k salaries
unlock blur

₹8.2 L/yr - ₹24 L/yr

Associate
1.7k salaries
unlock blur

₹1.6 L/yr - ₹4.5 L/yr

Senior Consultant
1.2k salaries
unlock blur

₹18.5 L/yr - ₹33 L/yr

Senior Associate
1.1k salaries
unlock blur

₹2.2 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Eviden with

Genpact

3.7
Compare

DXC Technology

3.6
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview