Upload Button Icon Add office photos
Engaged Employer

i

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

Head Digital Works Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Head Digital Works Module Lead Interview Questions and Answers

Updated 4 Feb 2024

Head Digital Works Module Lead Interview Experiences

1 interview found

Module Lead Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2023

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

I applied via Recruitment Consulltant and was interviewed before Dec 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 - Coding Test 

Competitive programming

Round 3 - Coding Test 

System design with low level design

Round 4 - HR 

(1 Question)

  • Q1. Call with VP engineering

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Data Structures
  • Q2. Algorithms knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DSA and be thorough with projects.

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Your Personal Details, Your Qualifications?
  • Ans. This answer must be basied on you resume.
  • Answered Anonymously
  • Q2. Why IndiaMart?
  • Ans. This type of question are based on you knowledge and your experiences
  • Answered Anonymously
  • Q3. What are you skills and how you would implement them while working with us?
  • Ans. For this you need to know you Positive Point and Negative Point which are totally based on your behavior and Personality
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Natural and Original while interviewing

I applied via Referral and was interviewed in May 2021. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The interview consisted a appitude test and second round was english speaking assessment test online , if you clear both the test, they will share the documentation link

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was easy.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Data Structures like Array, Stack, Queue.. etc., Questions related to Algorithms Like Dynamic Programming and Questions from DBMS.

I applied via Campus Placement and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Graph Question:- There is a chessboard. It is different from the normal chessboard. White and black blocks can be anywhere. Source and destination block are given. I was asked to find the path with a mini...
  • Q2. Find the sum of k smallest number in a BST.
  • Ans. 

    Find sum of k smallest numbers in a BST.

    • Traverse the BST in-order and add the k smallest numbers to a sum variable.

    • Use a priority queue to keep track of the k smallest numbers.

    • If k is greater than the number of nodes in the BST, return the sum of all nodes.

    • If k is 0, return 0.

  • Answered by AI
  • Q3. System design of BookMyShow. Design the algorithm and database for the seat booking system. How this the system will handle the case when the payment gets failed. Again he asked me to write the query for...
  • Ans. 

    Design algorithm and database for seat booking system of BookMyShow and handle failed payments.

    • Create a database with tables for movies, theaters, seats, bookings, and payments

    • Use a locking mechanism to prevent double booking of seats

    • If payment fails, release the locked seats and notify the user

    • Write a query to get the timestamp in SQL: SELECT CURRENT_TIMESTAMP;

  • Answered by AI
  • Q4. Write the code for the time stamp in C.
  • Ans. 

    Code for time stamp in C

    • Use the time.h header file

    • Call the time() function to get the current time in seconds

    • Convert the time to a string using strftime() function

    • Use the format string to specify the desired format of the time stamp

  • Answered by AI
  • Q5. Write the code for rearranging the array in consecutive pair multiplication. For example consider an array with 10 element A0, A1, A2......A9. The resultant array will be A0*A1, A1*A2, A2*A3, and so on. Th...
  • Ans. 

    Rearrange array in consecutive pair multiplication in descending order.

    • Create a new array to store the multiplied values

    • Use a loop to iterate through the original array and multiply consecutive pairs

    • Write a compare function to sort the new array in descending order

  • Answered by AI
  • Q6. Write the code to rearrange the array in maximum-minimum form.
  • Ans. 

    Code to rearrange an array in maximum-minimum form.

    • Sort the array in descending order.

    • Create a new array and alternate between adding the maximum and minimum values from the sorted array.

    • Return the new array.

    • Time complexity: O(nlogn)

    • Space complexity: O(n)

  • Answered by AI
  • Q7. What is stoi function (stoi() function)? Its uses and code to Implement stoi function.
  • Ans. 

    stoi() function converts a string to an integer.

    • stoi() is a C++ function that takes a string as input and returns an integer.

    • It is used to convert a string of digits into an integer.

    • It can also handle negative numbers and ignore leading whitespace.

    • Example: int num = stoi("123"); // num is now 123

  • Answered by AI
  • Q8. Write code for Longest Common Substring. (time limit for writing this code was 5-6 minutes)
  • Ans. 

    Code for finding the longest common substring in an array of strings.

    • Iterate through the first string and check for all possible substrings

    • Check if the substring is present in all other strings

    • Keep track of the longest common substring found so far

    • Return the longest common substring

  • Answered by AI
  • Q9. Q: What is a Transaction in DBMS and ACID properties? Q: What is Thread and how it is different from the Process? Q: What are some Linux commands. Write any 5 commands? Q: Why sudo is used for commands?...
  • Ans. 

    Answers to common technical questions in a software engineering interview

    • A transaction in DBMS is a sequence of operations that must be treated as a single unit of work. ACID properties ensure reliability and consistency of transactions.

    • A thread is a lightweight process that shares memory and resources with other threads in the same process. A process is a separate instance of a program.

    • Common Linux commands include ls...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you speak.

Take your step forward. Try to be firstly interviewed if choice arrives ( They get screwed up at the end and ask questions that the previous candidates failed ).

Before approaching the solution to be clear with edge test-cases. Once you are completely sure then come up with an approach.

Skills evaluated in this interview

I applied via Policy bazaar site and was interviewed before Sep 2019. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Sell me this thing.
  • Ans. 

    Introducing the new and improved smartwatch with advanced health tracking features.

    • Track your heart rate, sleep patterns, and daily activity levels

    • Receive notifications and make calls without taking out your phone

    • Choose from a variety of stylish designs to match your personal style

  • Answered by AI
  • Q2. Why you want to come in sales
  • Q3. Qualities of good sales person
  • Q4. Why you want to join policy bazaar
  • Q5. What is policy bazaar
  • Ans. 

    Policy Bazaar is an online insurance marketplace in India.

    • Policy Bazaar is a platform that allows users to compare and buy insurance policies from various providers.

    • It offers a wide range of insurance products including health, life, motor, travel, and home insurance.

    • Users can get quotes, compare features and prices, and make informed decisions about their insurance needs.

    • Policy Bazaar has partnerships with leading ins...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to tell them that you want to be a sales person. You can sell in any situation. Whatever come in mind just keep speaking because they check your communication skills. But joing policy bazaar is not a good idea.

I was interviewed in Jun 2018.

Interview Questionnaire 

1 Question

  • Q1. How are you , then i give answer i am fine , please tell me about your self. ma name is ......... I am from............ i Stay at sector at ......in ............. i have done ............. i have ...........

Interview Preparation Tips

General Tips: I give advice job seekers . any person take interview you give feedback why are you rejected any person tell me .then improve self any person you give feedback very important any person however we are all person sould succeed may people .please i requsted any job Seekers you give me feedback then many people improve self .
please you send feedback email by whats app or way 2 sms throw . feedback is very important in my life .feedback give us improve life communication ,interview skills. time is very important . emplyeer should job but you give feedback many people respected . you send feedback temporary letter.
Skills: Presence Of Mind, Body Language In Interview, Communication
Duration: <1 week

I applied via Campus Placement and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about ur hobby in brief ?

Interview Preparation Tips

Interview preparation tips for other job seekers - I share this question because intervier ask again and agin this question so keep in mind don't change your hobby in any rounds make sure this question is mandatory

I applied via Campus Placement and was interviewed before Dec 2015. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iteratively swap the next and previous pointers of each node

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the head pointer to the last node after reversing

  • Answered by AI
  • Q2. Object Oriented Programming
  • Q3. Database questions
  • Q4. What do you like about this company
  • Ans. 

    I appreciate the company's commitment to innovation and employee development.

    • Strong focus on innovation in software development

    • Opportunities for professional growth and development

    • Positive company culture and work environment

  • Answered by AI
  • Q5. Why do you want to work here
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work environment.

    • Impressed by innovative projects

    • Desire to work in a collaborative environment

    • Excited about potential for growth and learning opportunities

  • Answered by AI
  • Q6. Long term goals

Interview Preparation Tips

Round: Test
Experience: Simple aptitude test where they filtered out 2/3 of the applicants (12-15 selected out of 30)
Duration: 1 hour
Total Questions: 40

Round: Technical Interview
Experience: General questions about you, your projects etc.
The linked list question, you can write in any language you like.
OOP concepts like how it is implemented in your favourite language.

Round: Technical Interview
Experience: Your thoughts on designing a database for a company that aggregates jobs from any available source.
The schema for the database and your reason for it.

Round: HR Interview
Experience: Standard HR questions

College Name: Shiv Nadar University, Dadri

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Head Digital Works Interview FAQs

How many rounds are there in Head Digital Works Module Lead interview?
Head Digital Works interview process usually has 4 rounds. The most common rounds in the Head Digital Works interview process are Coding Test, HR and Resume Shortlist.
How to prepare for Head Digital Works Module Lead 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 Head Digital Works. The most common topics and skills that interviewers at Head Digital Works expect are Gaming, Private Equity, Venture Capital, Agile Coaching and Animation.

Recently Viewed

LIST OF COMPANIES

Vortex Engineering

Locations

SALARIES

Nagarro

SALARIES

Mahindra & Mahindra

INTERVIEWS

Nagarro

No Interviews

SALARIES

Mahindra & Mahindra

SALARIES

Mahindra & Mahindra

INTERVIEWS

Head Digital Works

No Interviews

INTERVIEWS

ARSS Infrastructure Projects

No Interviews

DESIGNATION

DESIGNATION

Tell us how to improve this page.

Head Digital Works Module Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

PolicyBazaar Interview Questions
3.6
 • 346 Interviews
JustDial Interview Questions
3.5
 • 325 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
IIFL Finance Interview Questions
4.0
 • 245 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
Pole To Win Interview Questions
3.4
 • 54 Interviews
Aristocrat Interview Questions
3.8
 • 45 Interviews
Light & Wonder Interview Questions
3.9
 • 29 Interviews
View all
Head Digital Works Module Lead Salary
based on 19 salaries
₹7.2 L/yr - ₹26 L/yr
5% less than the average Module Lead Salary in India
View more details

Head Digital Works Module Lead Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.5

Job security

5.0

Company culture

4.5

Promotions

4.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Module Lead
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Product Manager
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Head Digital Works with

Info Edge

3.9
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

MakeMyTrip

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