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

Clear (1)

HashedIn by Deloitte Software Engineer II Interview Questions and Answers

Updated 7 Dec 2024

HashedIn by Deloitte Software Engineer II Interview Experiences

4 interviews found

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Count occurence of element in an array
  • Ans. 

    Count occurrence of element in an array of strings

    • Use a loop to iterate through the array

    • Use a dictionary to store the count of each element

    • Increment the count for each element encountered

  • Answered by AI
  • Q2. Right rotational array
  • Q3. System design of snake and ladder
  • Ans. 

    System design for the game of Snake and Ladder

    • Create a board with 100 cells and mark the positions of snakes and ladders

    • Implement a player class with a current position on the board

    • Roll a dice to move the player and check for snakes and ladders

    • Keep track of player scores and winner at the end of the game

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice easy leet code questions to crack first round

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. System design, SQL
Round 2 - Technical 

(2 Questions)

  • Q1. Java spring boot micorservices
  • Q2. Coding questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Project, CV, CI/CD

Software Engineer II Interview Questions Asked at Other Companies

Q1. There are fifteen horses and a racing track that can run five hor ... read more
Q2. Title: Minimum steps required to make the product of array equal ... read more
asked in NCR Voyix
Q3. What are interfaces and what is difference between an interface a ... read more
Q4. Title: Next Greater Element for every element in the array Descri ... read more
Q5. What is the difference between C++ and Objective C and where will ... read more

I applied via LinkedIn and was interviewed in Sep 2021. 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 - Technical 

(1 Question)

  • Q1. In depth discussion over dsa, Java and Spring boot, Mysql and OS
Round 3 - Technical 

(1 Question)

  • Q1. It was a dedicated round for system design and Java j2ee development along with rest api concepts
Round 4 - HR 

(6 Questions)

  • Q1. What is your family background?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.
  • Q6. In depth discussion about extra curriculum activities

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare hard for Java Spring boot development along with any RDS with in depth system design concepts. All the best!!

I was interviewed before Sep 2021.

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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Coding round to test DSA skills: questions- easy to medium
Round 3 - Technical 

(1 Question)

  • Q1. Second round would be the design round and focus is on LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1: Leetcode easy to medium
Round 2: Design patterns, SOLID principles and practice LLD questions

HashedIn by Deloitte interview questions for designations

 Software Development Engineer II

 (1)

 Software Engineer

 (17)

 Software Development Engineer

 (5)

 Software Engineer III

 (3)

 Associate Software Engineer

 (1)

 Software Engineer Trainee

 (1)

 Senior Software Engineer

 (1)

 Software Engineer Level 1

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. About technology and tech latest
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions about tech stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn new tech and hands on with the code you are wringing learn cloud

I applied via Approached by Company and was interviewed before Oct 2021. There were 5 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 Resume tips
Round 2 - Coding Test 

Leetcode Easy Medium level including DSA based question with some mcq

Round 3 - Technical 

(1 Question)

  • Q1. Collection in depth, threading, problem solving, DataBase query writing
Round 4 - Technical 

(1 Question)

  • Q1. This was can be teschnical + managerial or LLD/HLD + managerial
Round 5 - HR 

(1 Question)

  • Q1. Start with basic hr type questions then the salary nagotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on problem solving and how collections works internally as well as java basics

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Mcq + Data structures questions

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
  • Ans. Brute Force Approach
    1. Create a nested loop. The outer loop will go from i = 0 to i = n - k. This will cover the starting indices of all k-subarrays
    2. The inner loop will go from j = i to j = i + k - 1. This will cover all the elements of the k-subarray starting from index i
    3. Keep track of the maximum element in the inner loop and print it.
    Space Complexity: O(1)Explanation:

    O(1) because the extra space being used (looping vari...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 70 minutes
Round difficulty - Medium

Standard System Design round

  • Q1. Design a Doctor Appointment System and provide some test cases.
  • Ans. 

    Tip 1 : Implement using OOPs 
    Tip 2 : Try to tell your approach to the interviewer as much as you can side by side

  • Answered Anonymously
Round 3 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Interview of DSA + OOPS + Databse(SQL query) + Operating System

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. Recursive Approach

    This problem can be solved through recursion.We will maintain max_level variable which will keep track of maxLevel and will pass current level in recursion as argument. Whenever we see a node whose current level is more than maxLevel then we will print that node as that will be first node for that current level. Also update maxLevel with current level.

    Space Complexity: O(n)Explanation:

    O(N), where ‘N’...

  • Answered Anonymously
  • Q2. What is the difference between CHAR and VARCHAR2 data types in SQL?
  • Q3. What are the various types of constructors in C++?
  • Q4. What is the difference between overloading and overriding?
Round 4 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Hr round - normal hr questions + situational 

Thoughtworks community discussion

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : Read all Thoughtworks community page and be honest


    Tip 2 : Be open-minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.


    Tip 3 : The cross-questioning can go intense sometimes, think before you speak.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Tip 3 : Do at-least 2 good projects and you must know every bit of them.


 

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.

Tip 2 : Every skill must be mentioned.

Tip 3 : Focus on skills, projects and experiences more.


 

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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 Resume tips
Round 2 - Technical 

(7 Questions)

  • Q1. What is the difference between List and Tuple?
  • Ans. 

    List is mutable and Tuple is immutable in Python.

    • List can be modified after creation while Tuple cannot be modified.

    • List uses square brackets [] while Tuple uses parentheses ().

    • List is used for homogenous data while Tuple is used for heterogenous data.

    • List is slower than Tuple in terms of performance.

    • Example of List: [1, 2, 3] and Example of Tuple: (1, 'hello', 3.14)

  • Answered by AI
  • Q2. What is __init__ ? Follow up question why is __ (double underscore) used?
  • Q3. A SQL query based on group by and order by DESC LIMIT 1 in order to fetch highest row of a group in a dataset given by panelist.
  • Q4. A simple query on SQL using group by and aggregate function.
  • Q5. Panelist asked about my previous work experience and projects I worked upon earlier and the technologies used.
  • Q6. Question on how do we create table using SQL Alchemy in Flask (since I had used Python Flask in one of my previous projects and had highlighted it pretty well on my resume).
  • Q7. How is memory managed in Python?
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of memory usage.

    • When an object's reference count drops to zero, it is deleted.

    • Python also uses a garbage collector to handle circular references.

    • Memory allocation is handled by the Python memory manager.

    • Python provides tools like the 'gc' module for managing memory usage.

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Question on List operation.
  • Q2. Do you know numpy pandas?
  • Ans. 

    Yes, numpy and pandas are Python libraries used for data analysis and manipulation.

    • NumPy is used for numerical operations on arrays and matrices.

    • Pandas is used for data manipulation and analysis, providing data structures like DataFrame.

    • Both libraries are commonly used in data science and machine learning.

    • Example: import numpy as np; import pandas as pd;

  • Answered by AI
  • Q3. A question to count number of times a letter occurs in a sentence and then also find the maximum occurring letter.
  • Q4. Difference between generator and iterator?
  • Ans. 

    Generator generates values on the fly while iterator iterates over a collection of values.

    • Generator is a function that returns an iterator.

    • Generators use 'yield' keyword to return values one at a time.

    • Iterators are objects that implement the 'next' method to return the next value in a collection.

    • Iterators can be created from arrays, strings, maps, sets, etc.

    • Generators are useful for generating large sequences of values...

  • Answered by AI
  • Q5. What is the selling point about you why should we consider you over other candidate?
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your salary expectations?

Interview Preparation Tips

Topics to prepare for Tiger Analytics Senior Software Engineer interview:
  • Python
  • SQL
  • Logic Building
  • Numpy
  • Pandas
Interview preparation tips for other job seekers - Be honest about what you know and what you don't. Prepare your resume very well highlighting your best projects and keep good knowledge about them. Search for common interview questions asked for the role you are applying. Practice coding questions over coding platforms whichever you like , if required (depends on the role you are applying for)

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Question on java and microservies
Round 2 - HR 

(1 Question)

  • Q1. Current and expected CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were mostly based on resume and we're answerable

Interview Questionnaire 

2 Questions

  • Q1. Managerial round angular and some tech questions should know angular life cycle and important questions
  • Q2. Should know about your project, solid principles and implementation, should provide implementation in one to one round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well, gep provide good exposure to technologies, once selected be ready with technical armour of yours
Contribute & help others!
anonymous
You can choose to be anonymous

HashedIn by Deloitte Interview FAQs

How many rounds are there in HashedIn by Deloitte Software Engineer II interview?
HashedIn by Deloitte interview process usually has 3-4 rounds. The most common rounds in the HashedIn by Deloitte interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in HashedIn by Deloitte Software Engineer II interview?

Some of the top questions asked at the HashedIn by Deloitte Software Engineer II interview -

  1. Count occurence of element in an ar...read more
  2. System design of snake and lad...read more
  3. In depth discussion over dsa, Java and Spring boot, Mysql and...read more

Recently Viewed

SALARIES

Tiger Steel Engineering

No Salaries

REVIEWS

Lulu International Shopping Mall

No Reviews

SALARIES

Microsoft Corporation

SALARIES

Roche Diagnostics

DESIGNATION

SALARIES

Movate

REVIEWS

Salesforce

No Reviews

REVIEWS

VLCC

No Reviews

SALARIES

HCL Group

SALARIES

Keihin Fie

Tell us how to improve this page.

HashedIn by Deloitte Software Engineer II Interview Process

based on 2 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 803 Interviews
Cyient Interview Questions
3.7
 • 283 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all
HashedIn by Deloitte Software Engineer II Salary
based on 162 salaries
₹10.5 L/yr - ₹20 L/yr
5% less than the average Software Engineer II Salary in India
View more details

HashedIn by Deloitte Software Engineer II Reviews and Ratings

based on 33 reviews

4.3/5

Rating in categories

4.5

Skill development

3.7

Work-life balance

4.0

Salary

4.4

Job security

4.2

Company culture

4.2

Promotions

4.1

Work satisfaction

Explore 33 Reviews and Ratings
Software Engineer
402 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Software Engineer2
370 salaries
unlock blur

₹9.5 L/yr - ₹23.3 L/yr

Senior Software Engineer
205 salaries
unlock blur

₹8 L/yr - ₹26.5 L/yr

Senior Product Specialist
163 salaries
unlock blur

₹12.4 L/yr - ₹27 L/yr

Software Engineer II
162 salaries
unlock blur

₹10.5 L/yr - ₹20 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