Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by HashedIn by Deloitte Team. If you also belong to the team, you can get access from here

HashedIn by Deloitte Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

HashedIn by Deloitte Technology Architect Interview Questions and Answers

Updated 11 Jul 2024

HashedIn by Deloitte Technology Architect Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Design the architecture of your current project?
  • Q2. HLD of lift design
  • Ans. 

    High Level Design (HLD) of a lift includes system architecture, components, interfaces, and interactions.

    • Identify key components like motor, control panel, doors, and sensors

    • Define system architecture including how components interact

    • Specify interfaces for user input, floor selection, and emergency stop

    • Consider safety features like overload protection and emergency brakes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study a lot of system design for this role.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Number of interview rounds
  • Q2. Three rounds of interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and to the point
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(6 Questions)

  • Q1. Landscape and Architect solution
  • Ans. 

    Landscape and Architect solution involves analyzing the current technology landscape and designing a solution that aligns with business goals.

    • Understand current technology infrastructure and systems

    • Identify business goals and requirements

    • Design a solution that integrates with existing systems and meets business needs

    • Consider scalability, security, and performance

    • Create a roadmap for implementation and migration

  • Answered by AI
  • Q2. Real time scenario on data processing and business reporting challenges
  • Q3. Business reporting data issues/reporting
  • Q4. Nrt/back log processing,business scenario
  • Q5. Data modelling, infrastructure set up for data scenarios
  • Q6. Data bricks processing on reporting layer on data latency
  • Ans. 

    Data bricks processing on reporting layer impacts data latency.

    • Data bricks processing can improve reporting performance by processing data in parallel.

    • However, it can also introduce latency if not optimized properly.

    • Optimizing data bricks processing involves tuning cluster configurations and optimizing queries.

    • Using caching mechanisms can also help reduce data latency in reporting.

    • Monitoring and analyzing data latency ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LTIMindtree Technology Architect interview:
  • Database
  • Data Warehousing

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Code review , micro services, cloud,
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

How to eradicate poverty? This was the topic of discussion

Round 2 - One-on-one 

(1 Question)

  • Q1. Explain binary search.
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • It works by repeatedly dividing the search space in half.

    • Compare the target value with the middle element of the array.

    • If the target value is smaller, search the left half of the array.

    • If the target value is larger, search the right half of the array.

    • Repeat until the target value is found or the search space is empty.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Coding we had related to Peoplecode and unix scripting

Round 3 - One-on-one 

(1 Question)

  • Q1. We had a basic technological round where they post common questions to the related area you worked.

Interview Preparation Tips

Interview preparation tips for other job seekers - We have IJP for internal promotions

I applied via Referral and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java related questions spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes it’s very good experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Data architecture questions
  • Q2. Data security implemntations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with db concepts.
Data Modelling, Data Governance

Technology Architect Interview Questions & Answers

Infosys user image Dhanamurthy Ramalingam

posted on 25 Apr 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and work location
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Encapsulation: Objects can encapsulate data and behavior within a single unit.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Objects can take on different forms or have multiple behaviors.

    • Abstraction: Objects can represent real-world ent...

  • Answered by AI
  • Q2. What is dependency injection, and how does it work?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing a way to mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of a class creating an ins...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are design patterns, including the Singleton pattern?
  • Ans. 

    Design patterns are reusable solutions to common problems in software design. Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Design patterns are best practices for solving common design problems in software development.

    • Singleton pattern restricts the instantiation of a class to one object, ensuring there is only one instance of the class.

    • Singleton pattern provides a ...

  • Answered by AI
  • Q2. What are the advantages of using .NET Core?
  • Ans. 

    Advantages of using .NET Core include cross-platform compatibility, high performance, and open-source nature.

    • Cross-platform compatibility allows for development on Windows, macOS, and Linux.

    • High performance due to its modular architecture and optimized runtime.

    • Open-source nature encourages community contributions and rapid updates.

    • Support for modern development practices like microservices and containerization.

    • Integrat...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. How do you manage a team of developers?
  • Ans. 

    I manage a team of developers by setting clear goals, providing support and resources, fostering collaboration, and promoting a positive work culture.

    • Set clear goals and expectations for the team

    • Provide necessary support, resources, and training for team members

    • Foster collaboration and communication among team members

    • Promote a positive work culture and provide feedback and recognition for achievements

  • Answered by AI

HashedIn by Deloitte Interview FAQs

How many rounds are there in HashedIn by Deloitte Technology Architect interview?
HashedIn by Deloitte interview process usually has 1 rounds. The most common rounds in the HashedIn by Deloitte interview process are One-on-one Round.
How to prepare for HashedIn by Deloitte Technology 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 HashedIn by Deloitte. The most common topics and skills that interviewers at HashedIn by Deloitte expect are AWS, Architecture, IT Services, Java and Agile.

Tell us how to improve this page.

HashedIn by Deloitte Technology Architect Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

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
ITC Infotech Interview Questions
3.6
 • 335 Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
View all
HashedIn by Deloitte Technology Architect Salary
based on 5 salaries
₹35.3 L/yr - ₹45 L/yr
56% more than the average Technology Architect Salary in India
View more details

HashedIn by Deloitte Technology Architect Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

4.0

Salary

1.0

Job security

1.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
412 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
376 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
206 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer II
173 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Specialist
165 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare HashedIn by Deloitte 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