Upload Button Icon Add office photos

Filter interviews by

The Digital Group Technical Lead Interview Questions and Answers

Updated 3 Jul 2017

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Fake Interview, Didn't expect this from virtusa
  • Q2. FakeInterviews conducted, Didn;t expect this from virtusa
  • Q3. Virtusa Scammers

Interview Preparation Tips

Interview preparation tips for other job seekers - No real interview, fake interview only to understand the Gen AI topics & Projects.
He conducted interview, If you don't know go and learn from Coursera, DeepLearning.ai

Why wasting the time of peoples, Interviewer name : Sudhakar Chigurupati
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about Interfaces,, Abstract Classes, Multi-Threading, Parallel Programming concepts, SQL Server
Round 2 - Technical 

(1 Question)

  • Q1. Questions about Design Patterns, SOLID Principles, Extension Methods, LINQ, Entity Framework
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about current project and my roles and responsibilities, my salary structure, my aspirations whether I want to be Architect or just Team Lead.
Round 4 - HR 

(1 Question)

  • Q1. My CTC and ECTC, and asked for negotiation, to which I said yes and accepted the compensation they can offer to me. But still offer letter not released without giving any reason.

Interview Preparation Tips

Interview preparation tips for other job seekers - After clearing all rounds, even then offer letter was not released. No proper reason shared for it. Very unprofessional.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java Collections
  • Q2. Java8 Stream program
  • Ans. 

    Java8 Stream program to filter even numbers and double them

    • Use Stream to filter even numbers

    • Use map to double the filtered numbers

    • Use collect to collect the results into a list

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Completable future
  • Q2. Microservice architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary discussion and project informations

Skills evaluated in this interview

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

Simple array questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Difference between spring jpa and hibernate
  • Ans. 

    Spring JPA is a part of the Spring framework that provides an abstraction layer on top of JPA, while Hibernate is a standalone ORM framework.

    • Spring JPA is a part of the Spring framework and provides additional features like transaction management, dependency injection, and aspect-oriented programming.

    • Hibernate is a standalone ORM framework that provides mapping between Java objects and database tables, along with featu...

  • Answered by AI
  • Q2. What is cyclic barrier
  • Ans. 

    Cyclic barrier is a synchronization aid that allows a set of threads to wait for each other to reach a common barrier point.

    • Cyclic barrier is similar to CountDownLatch but can be reused after the barrier point is reached.

    • It is initialized with a count of the number of threads that must invoke await() before the barrier is tripped.

    • Threads wait at the barrier until all threads have invoked await(), then the barrier is re...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of coding.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sql queries join and left join
Round 2 - HR 

(1 Question)

  • Q1. Introduce yourself
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. SOA vs Micro Service
  • Ans. 

    SOA focuses on large, monolithic services while Microservices are small, independent services.

    • SOA is a centralized architecture with shared services, while Microservices are decentralized with each service having its own database.

    • SOA is typically implemented using ESB (Enterprise Service Bus), while Microservices communicate via lightweight protocols like HTTP or messaging queues.

    • SOA is more suitable for large enterpri...

  • Answered by AI

Skills evaluated in this interview

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Spring batch questions Questions related to asynch process
  • Q2. Java 8 stream api questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java 8-related questions and project-related topics.
Round 1 - Technical 

(2 Questions)

  • Q1. Types of call in cobol. What is file status 39. What is AICA in CICS. Why do we use cursor in Cobol+db2 program. What are some compiler options. What is the utility for bind. How would you dynamically read...
  • Ans. 

    Technical Lead interview questions on COBOL, DB2, and CICS

    • Types of call in COBOL

    • File status 39 indicates end-of-file reached

    • AICA is Abend-AID CICS Abend RSN (Reason) Code

    • Cursor is used to fetch rows from DB2 tables sequentially

    • Compiler options include OPTIMIZE, DEBUG, and LIST

    • BIND utility is used to bind DB2 programs to database

    • Dynamic VSAM file reading can be done using READNEXT function

    • -911 SQLCODE indicates deadlock...

  • Answered by AI
  • Q2. What is most satisfactory work that you did.
Round 2 - HR 

(1 Question)

  • Q1. Why you left previous organization. What is current CTC. What is expected CTC. Where would you be interested to work for career progression(what you want to pursue)? Are you willing to relocate? Explain th...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get nervous. Keep calm. Be evenly poised.

Tell us how to improve this page.

The Digital Group Technical Lead Salary
based on 10 salaries
₹10.5 L/yr - ₹38 L/yr
22% more than the average Technical Lead Salary in India
View more details

The Digital Group Technical Lead Reviews and Ratings

based on 2 reviews

2.0/5

Rating in categories

2.7

Skill development

2.0

Work-life balance

2.7

Salary

2.3

Job security

2.0

Company culture

2.0

Promotions

2.4

Work satisfaction

Explore 2 Reviews and Ratings
Technical Lead
10 salaries
unlock blur

₹10.5 L/yr - ₹38 L/yr

QA Engineer
7 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹8 L/yr - ₹21.1 L/yr

Software Engineer
6 salaries
unlock blur

₹15.2 L/yr - ₹20 L/yr

Senior QA Engineer
6 salaries
unlock blur

₹11 L/yr - ₹14 L/yr

Explore more salaries
Compare The Digital Group with

Cognizant

3.8
Compare

Sutherland Global Services

3.6
Compare

Hexaware Technologies

3.5
Compare

Virtusa Consulting Services

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview