HashedIn interview experience Real time questions & tips from candidates to crack your interview

SDET- Trainee

HashedIn
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 7 Months
Topics: Java, Data structure, RDBMS, SQL, OOPs, HTML
Tip
Tip

Tip 1 : thorough understanding about basics
Tip 2 : write points

Application process
Where: Campus
Eligibility: 70% in all semester, no backlog
Resume Tip
Resume tip

Tip 1 : simple and neet
Tip 2 : mentioned skills which I know

Interview rounds

01
Round
Medium
Online Coding Interview
Duration45 Minutes
Interview date26 Jun 2021
Coding problem2

1. Swap Two Numbers

Easy
10m average time
0/40
Asked in companies
CIS - Cyber InfrastructureErnst & Young (EY)Cybage Software

You are given two numbers 'a' and 'b' as input.


You must swap the values of 'a' and 'b'.


For Example:
Input: 
'a' = 8, 'b' = 5

Output:
5 8

Explanation:
Initially, the value of 'a' and 'b' is 8 and 5, respectively.

After swapping, the value of 'a' is 5, and the value of 'b' is 8.
Problem approach

ENTER x, y
PRINT x, y
x = x + y
y= x - y
x =x - y
PRINT x, y

Try solving now

2. Bubble Sort

Easy
10m average time
90% success
0/40
Asked in companies
Lenskart.comOptumWells Fargo

Bubble Sort is one of the sorting algorithms that works by repeatedly swapping the adjacent elements of the array if they are not in sorted order.

You are given an unsorted array consisting of N non-negative integers. Your task is to sort the array in non-decreasing order using the Bubble Sort algorithm.

For Example:
Bubble Sort implementation for the given array:  {6,2,8,4,10} is shown below :-

Alt test

Problem approach

for i <- 1 to indexOfLastUnsortedElement-1

if leftElement > rightElement

swap leftElement and rightElement

Try solving now
02
Round
Hard
Online Coding Interview
Duration60 Minutes
Interview date10 Jul 2021
Coding problem2

1. Reverse the String

Easy
15m average time
85% success
0/40
Asked in companies
SAP LabsWalmartFacebook

You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

For example:

 If the given string is: STR = "abcde". You have to print the string "edcba".
follow up:
Try to solve the problem in O(1) space complexity. 
Problem approach

DEFINE String string = "Dream big"
DEFINE reversedStr = " "
SET i =string.length()-1. REPEAT STEP 5 to UNTIL i>=0
reversedStr = reversedStr + string.charAt(i)
i = i - 1
PRINT string.
PRINT reversedStr.

Try solving now
Easy
0/40
Asked in companies
Samsung R&D InstituteTCSCapegemini Consulting India Private Limited

Given an array of length N, you need to find and print the sum of all elements of the array.

Problem approach

[Initialize counter variable. ] Set i = LB.
Repeat for i = LB to UB.
Apply process to arr[i]

Try solving now
03
Round
Medium
HR Round
Duration15 Minutes
Interview date24 Jul 2021
Coding problem1

HR asked about my self, my strength, weakness, aim, dream, why this company, salary.

1. Basic HR Questions

Self introduction, Dream, Why HashedIn by Deloitte

Problem approach

Tip 1 : Be confident
Tip 2 : Don't argue with package if am fresher. 

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by HashedIn
1158 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by HashedIn
1267 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by HashedIn
1026 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by HashedIn
924 views
0 comments
0 upvotes